Do not document registry and map defines.
authoralpar
Wed, 22 Sep 2004 12:42:19 +0000
changeset 904b40afcf42a4d
parent 903 2e664d4969d7
child 905 5be029d19c98
Do not document registry and map defines.
src/hugo/full_graph.h
src/hugo/list_graph.h
src/hugo/smart_graph.h
     1.1 --- a/src/hugo/full_graph.h	Wed Sep 22 12:33:30 2004 +0000
     1.2 +++ b/src/hugo/full_graph.h	Wed Sep 22 12:42:19 2004 +0000
     1.3 @@ -50,9 +50,9 @@
     1.4      class InEdgeIt;
     1.5      
     1.6  
     1.7 -    /// Creating map registries.
     1.8 +    // Create map registries.
     1.9      CREATE_MAP_REGISTRIES;
    1.10 -    /// Creating node and edge maps.
    1.11 +    // Create node and edge maps.
    1.12      CREATE_MAPS(ArrayMap);
    1.13      
    1.14    public:
     2.1 --- a/src/hugo/list_graph.h	Wed Sep 22 12:33:30 2004 +0000
     2.2 +++ b/src/hugo/list_graph.h	Wed Sep 22 12:42:19 2004 +0000
     2.3 @@ -74,12 +74,9 @@
     2.4      class OutEdgeIt;
     2.5      class InEdgeIt;
     2.6  
     2.7 -    /// Creating map registries.
     2.8 +    // Create map registries.
     2.9      CREATE_MAP_REGISTRIES;
    2.10 -    /// Creating node and edge maps.
    2.11 -
    2.12 -    /// \todo
    2.13 -    /// It apears in the documentation as if it were a function definition.
    2.14 +    /// Create node and edge maps.
    2.15      CREATE_MAPS(ArrayMap);
    2.16  
    2.17    public:
    2.18 @@ -442,9 +439,9 @@
    2.19  
    2.20      typedef SymListGraph Graph;
    2.21  
    2.22 -    /// Creating symmetric map registry.
    2.23 +    // Create symmetric map registry.
    2.24      CREATE_SYM_EDGE_MAP_REGISTRY;
    2.25 -    /// Creating symmetric edge map.
    2.26 +    // Create symmetric edge map.
    2.27      CREATE_SYM_EDGE_MAP(ArrayMap);
    2.28  
    2.29      SymListGraph() : ListGraph() { }
    2.30 @@ -527,9 +524,9 @@
    2.31      class OutEdgeIt;
    2.32      class InEdgeIt;
    2.33      
    2.34 -    /// Creating node map registry.
    2.35 +    // Create node map registry.
    2.36      CREATE_NODE_MAP_REGISTRY;
    2.37 -    /// Creating node maps.
    2.38 +    // Create node maps.
    2.39      CREATE_NODE_MAP(ArrayMap);
    2.40  
    2.41      /// Creating empty map structure for edges.
    2.42 @@ -878,12 +875,12 @@
    2.43      class InEdgeIt;
    2.44  
    2.45  
    2.46 -    /// Creates edge map registry.
    2.47 +    // Create edge map registry.
    2.48      CREATE_EDGE_MAP_REGISTRY;
    2.49 -    /// Creates edge maps.
    2.50 +    // Create edge maps.
    2.51      CREATE_EDGE_MAP(ArrayMap);
    2.52  
    2.53 -    /// Imports node maps from the NodeGraphType.
    2.54 +    // Import node maps from the NodeGraphType.
    2.55      IMPORT_NODE_MAP(NodeGraphType, graph.G, EdgeSet, graph);
    2.56      
    2.57      
     3.1 --- a/src/hugo/smart_graph.h	Wed Sep 22 12:33:30 2004 +0000
     3.2 +++ b/src/hugo/smart_graph.h	Wed Sep 22 12:42:19 2004 +0000
     3.3 @@ -73,9 +73,9 @@
     3.4      class OutEdgeIt;
     3.5      class InEdgeIt;
     3.6      
     3.7 -    /// Creating map registries.
     3.8 +    // Create map registries.
     3.9      CREATE_MAP_REGISTRIES;
    3.10 -    /// Creating node and edge maps.
    3.11 +    // Create node and edge maps.
    3.12      CREATE_MAPS(ArrayMap);
    3.13      
    3.14    public:
    3.15 @@ -317,9 +317,9 @@
    3.16    public:
    3.17      typedef SymSmartGraph Graph;
    3.18  
    3.19 -    /// Creating symmetric map registry.
    3.20 +    // Create symmetric map registry.
    3.21      CREATE_SYM_EDGE_MAP_REGISTRY;
    3.22 -    /// Creating symmetric edge map.
    3.23 +    // Create symmetric edge map.
    3.24      CREATE_SYM_EDGE_MAP(ArrayMap);
    3.25  
    3.26