Changeset 2135:15355b98fb84 in lemon-0.x for test/bfs_test.cc
- Timestamp:
- 07/12/06 13:40:52 (18 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2849
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/bfs_test.cc
r2111 r2135 75 75 typedef concept::ReadMap<Edge,VType> LengthMap; 76 76 77 bfs(Graph(),Node()).run(); 78 bfs(Graph()).source(Node()).run(); 79 bfs(Graph()) 77 Graph g; 78 bfs(g,Node()).run(); 79 bfs(g).source(Node()).run(); 80 bfs(g) 80 81 .predMap(concept::WriteMap<Node,Edge>()) 81 82 .distMap(concept::WriteMap<Node,VType>())
Note: See TracChangeset
for help on using the changeset viewer.