Open
Graph Drawing
Framework

 v.2012.05
 

SolarPlacer.h
Go to the documentation of this file.
00001 /*
00002  * $Revision: 2299 $
00003  *
00004  * last checkin:
00005  *   $Author: gutwenger $
00006  *   $Date: 2012-05-07 15:57:08 +0200 (Mon, 07 May 2012) $
00007  ***************************************************************/
00008 
00042 #include <ogdf/energybased/multilevelmixer/InitialPlacer.h>
00043 
00044 #ifdef _MSC_VER
00045 #pragma once
00046 #endif
00047 
00048 #ifndef OGDF_SOLAR_PLACER_H
00049 #define OGDF_SOLAR_PLACER_H
00050 
00051 namespace ogdf {
00052 
00053 class OGDF_EXPORT SolarPlacer : public InitialPlacer
00054 {
00055 public:
00056     void placeOneLevel(MultilevelGraph &MLG);
00057 
00058 private:
00059     void placeOneNode(MultilevelGraph &MLG);
00060 };
00061 
00062 } // namespace ogdf
00063 
00064 #endif