src/hugo/list_graph.h
changeset 897 ef09eee53b09
parent 891 74589d20dbc3
child 904 b40afcf42a4d
     1.1 --- a/src/hugo/list_graph.h	Wed Sep 22 07:32:57 2004 +0000
     1.2 +++ b/src/hugo/list_graph.h	Wed Sep 22 08:04:31 2004 +0000
     1.3 @@ -13,7 +13,7 @@
     1.4  #include <hugo/invalid.h>
     1.5  
     1.6  #include <hugo/map_registry.h>
     1.7 -#include <hugo/default_map.h>
     1.8 +#include <hugo/array_map.h>
     1.9  
    1.10  #include <hugo/sym_map.h>
    1.11  
    1.12 @@ -80,7 +80,7 @@
    1.13  
    1.14      /// \todo
    1.15      /// It apears in the documentation as if it were a function definition.
    1.16 -    CREATE_MAPS(DefaultMap);
    1.17 +    CREATE_MAPS(ArrayMap);
    1.18  
    1.19    public:
    1.20  
    1.21 @@ -445,7 +445,7 @@
    1.22      /// Creating symmetric map registry.
    1.23      CREATE_SYM_EDGE_MAP_REGISTRY;
    1.24      /// Creating symmetric edge map.
    1.25 -    CREATE_SYM_EDGE_MAP(DefaultMap);
    1.26 +    CREATE_SYM_EDGE_MAP(ArrayMap);
    1.27  
    1.28      SymListGraph() : ListGraph() { }
    1.29      SymListGraph(const ListGraph &_g) : ListGraph(_g) { }
    1.30 @@ -530,13 +530,12 @@
    1.31      /// Creating node map registry.
    1.32      CREATE_NODE_MAP_REGISTRY;
    1.33      /// Creating node maps.
    1.34 -    CREATE_NODE_MAP(DefaultMap);
    1.35 +    CREATE_NODE_MAP(ArrayMap);
    1.36  
    1.37      /// Creating empty map structure for edges.
    1.38      template <typename Value>
    1.39      class EdgeMap {
    1.40      public:
    1.41 -      EdgeMap() {}
    1.42        EdgeMap(const Graph&) {}
    1.43        EdgeMap(const Graph&, const Value&) {}
    1.44  
    1.45 @@ -882,7 +881,7 @@
    1.46      /// Creates edge map registry.
    1.47      CREATE_EDGE_MAP_REGISTRY;
    1.48      /// Creates edge maps.
    1.49 -    CREATE_EDGE_MAP(DefaultMap);
    1.50 +    CREATE_EDGE_MAP(ArrayMap);
    1.51  
    1.52      /// Imports node maps from the NodeGraphType.
    1.53      IMPORT_NODE_MAP(NodeGraphType, graph.G, EdgeSet, graph);