Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00042 #ifndef OGDF_SIMDRAW_CREATOR_SIMPLE_H
00043 #define OGDF_SIMDRAW_CREATOR_SIMPLE_H
00044
00045 #include <ogdf/simultaneous/SimDrawCreator.h>
00046
00047 namespace ogdf
00048 {
00050
00057 class OGDF_EXPORT SimDrawCreatorSimple : public SimDrawCreator
00058 {
00059
00060 public:
00062 SimDrawCreatorSimple(SimDraw &SD) : SimDrawCreator(SD) {}
00063
00065 void createTrees_GKV05(int n);
00066
00068 void createPathPlanar_EK04();
00069
00071 void createK5_EK04();
00072
00074 void createK5_GJPSS06();
00075
00077 void createOuterplanar_BCDEEIKLM03();
00078
00080 void createKrat98(int N, int nodeNumber);
00081
00084 void createWheel(int numberOfParallels, int numberOfbasic);
00085
00087 void createExpo(int n);
00088 };
00089
00090 }
00091
00092 #endif