Changeset 594:d657c71db7db in lemon-main for test
- Timestamp:
- 04/17/09 09:58:50 (16 years ago)
- Branch:
- default
- Phase:
- public
- Location:
- test
- Files:
-
- 2 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
test/CMakeLists.txt
r549 r594 30 30 kruskal_test 31 31 maps_test 32 ma x_matching_test32 matching_test 33 33 min_cost_arborescence_test 34 34 path_test -
test/Makefile.am
r564 r594 26 26 test/kruskal_test \ 27 27 test/maps_test \ 28 test/ma x_matching_test \28 test/matching_test \ 29 29 test/min_cost_arborescence_test \ 30 30 test/path_test \ … … 71 71 test_maps_test_SOURCES = test/maps_test.cc 72 72 test_mip_test_SOURCES = test/mip_test.cc 73 test_ma x_matching_test_SOURCES = test/max_matching_test.cc73 test_matching_test_SOURCES = test/matching_test.cc 74 74 test_min_cost_arborescence_test_SOURCES = test/min_cost_arborescence_test.cc 75 75 test_path_test_SOURCES = test/path_test.cc -
test/matching_test.cc
r593 r594 23 23 #include <cstdlib> 24 24 25 #include <lemon/ma x_matching.h>25 #include <lemon/matching.h> 26 26 #include <lemon/smart_graph.h> 27 27 #include <lemon/concepts/graph.h>
Note: See TracChangeset
for help on using the changeset viewer.