Changeset 293:47fbc814aa31 in lemon-main for test
- Timestamp:
- 10/01/08 12:44:16 (16 years ago)
- Branch:
- default
- Phase:
- public
- Location:
- test
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
test/bfs_test.cc
r286 r293 145 145 146 146 std::istringstream input(test_lgf); 147 digraphReader( input, G).147 digraphReader(G, input). 148 148 node("source", s). 149 149 node("target", t). -
test/dfs_test.cc
r286 r293 147 147 148 148 std::istringstream input(test_lgf); 149 digraphReader( input, G).149 digraphReader(G, input). 150 150 node("source", s). 151 151 node("target", t). -
test/dijkstra_test.cc
r286 r293 143 143 144 144 std::istringstream input(test_lgf); 145 digraphReader( input, G).145 digraphReader(G, input). 146 146 arcMap("length", length). 147 147 node("source", s). -
test/heap_test.cc
r257 r293 168 168 169 169 std::istringstream input(test_lgf); 170 digraphReader( input, digraph).170 digraphReader(digraph, input). 171 171 arcMap("capacity", length). 172 172 node("source", source).
Note: See TracChangeset
for help on using the changeset viewer.