Changeset 987:87f7c54892df in lemon-0.x for src/work/marci/experiment
- Timestamp:
- 11/13/04 18:07:10 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1377
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/marci/experiment/list_graph.h
r986 r987 39 39 std::vector<T> container; 40 40 public: 41 typedef T Value Type;42 typedef Node Key Type;41 typedef T Value; 42 typedef Node Key; 43 43 NodeMap(const ListGraph& _G) : G(_G), container(G.node_id) { } 44 44 NodeMap(const ListGraph& _G, T a) : … … 60 60 std::vector<T> container; 61 61 public: 62 typedef T Value Type;63 typedef Edge Key Type;62 typedef T Value; 63 typedef Edge Key; 64 64 EdgeMap(const ListGraph& _G) : G(_G), container(G.edge_id) { } 65 65 EdgeMap(const ListGraph& _G, T a) :
Note: See TracChangeset
for help on using the changeset viewer.