Changeset 1712:4fb435ad31cf in lemon-0.x
- Timestamp:
- 10/06/05 11:58:21 (19 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2239
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/graph_utils.h
r1704 r1712 1401 1401 1402 1402 void add(const Node& node) { 1403 if (size(graph.id(node) + 1) > 1403 if (size(graph.id(node) + 1) >= (int)values.size()) { 1404 1404 values.resize(size(graph.id(node) + 1)); 1405 1405 } -
test/graph_test.cc
r1435 r1712 8 8 #include <lemon/smart_graph.h> 9 9 #include <lemon/full_graph.h> 10 #include <lemon/hypercube_graph.h> 10 11 11 12 #include "test_tools.h" … … 60 61 checkConcept<StaticGraph, FullGraph >(); 61 62 } 63 { // checking full graph 64 checkConcept<StaticGraph, HyperCubeGraph >(); 65 } 62 66 63 67 std::cout << __FILE__ ": All tests passed.\n";
Note: See TracChangeset
for help on using the changeset viewer.