diff -r d74557d1f100 -r 0f1fe84ff36c src/lemon/full_graph.h --- a/src/lemon/full_graph.h Sat Oct 30 18:33:14 2004 +0000 +++ b/src/lemon/full_graph.h Sat Oct 30 18:51:00 2004 +0000 @@ -37,18 +37,6 @@ /// \addtogroup graphs /// @{ - ///A full graph class. - - ///This is a simple and fast directed full graph implementation. - ///It is completely static, so you can neither add nor delete either - ///edges or nodes. - ///Thus it conforms to - ///the \ref skeleton::StaticGraph "StaticGraph" concept - ///\sa skeleton::StaticGraph. - ///\todo What about loops? - ///\todo Don't we need SymEdgeMap? - /// - ///\author Alpar Juttner class FullGraphBase { int NodeNum; int EdgeNum; @@ -200,6 +188,18 @@ typedef IdMappableGraphExtender IdMappableFullGraphBase; typedef DefaultMappableGraphExtender MappableFullGraphBase; + ///A full graph class. + + ///This is a simple and fast directed full graph implementation. + ///It is completely static, so you can neither add nor delete either + ///edges or nodes. + ///Thus it conforms to + ///the \ref skeleton::StaticGraph "StaticGraph" concept + ///\sa skeleton::StaticGraph. + ///\todo What about loops? + ///\todo Don't we need SymEdgeMap? + /// + ///\author Alpar Juttner class FullGraph : public MappableFullGraphBase { public: