src/hugo/full_graph.h
changeset 881 a9f19f38970b
parent 822 88226d9fe821
child 897 ef09eee53b09
equal deleted inserted replaced
10:e2d30e28463a 11:7a9609c4c6f9
    25   ///A full graph class.
    25   ///A full graph class.
    26 
    26 
    27   ///This is a simple and fast directed full graph implementation.
    27   ///This is a simple and fast directed full graph implementation.
    28   ///It is completely static, so you can neither add nor delete either
    28   ///It is completely static, so you can neither add nor delete either
    29   ///edges or nodes.
    29   ///edges or nodes.
    30   ///Otherwise it conforms to the graph interface documented under
    30   ///Thus it conforms to
    31   ///the description of \ref GraphSkeleton.
    31   ///the \ref skeleton::StaticGraph "StaticGraph" concept
    32   ///\sa \ref GraphSkeleton.
    32   ///\sa skeleton::StaticGraph.
    33   ///\todo What about loops?
    33   ///\todo What about loops?
    34   ///\todo Don't we need SymEdgeMap?
    34   ///\todo Don't we need SymEdgeMap?
    35   ///
    35   ///
    36   ///\author Alpar Juttner
    36   ///\author Alpar Juttner
    37   class FullGraph {
    37   class FullGraph {