Changeset 103:b68a7e348e00 in lemon-main
- Timestamp:
- 02/29/08 12:01:39 (17 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 4 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/Makefile.am
r69 r103 19 19 lemon/dim2.h \ 20 20 lemon/error.h \ 21 lemon/kruskal.h \ 21 22 lemon/list_graph.h \ 22 23 lemon/maps.h \ 23 24 lemon/math.h \ 24 25 lemon/random.h \ 25 lemon/tolerance.h 26 lemon/tolerance.h \ 27 lemon/unionfind.h 26 28 27 29 bits_HEADERS += \ -
test/Makefile.am
r67 r103 11 11 test/dim_test \ 12 12 test/graph_test \ 13 test/kruskal_test \ 13 14 test/maps_test \ 14 15 test/random_test \ 15 16 test/test_tools_fail \ 16 test/test_tools_pass 17 test/test_tools_pass \ 18 test/unionfind_test 17 19 18 20 TESTS += $(check_PROGRAMS) … … 23 25 #test_error_test_SOURCES = test/error_test.cc 24 26 test_graph_test_SOURCES = test/graph_test.cc 27 test_kruskal_test_SOURCES = test/kruskal_test.cc 25 28 test_maps_test_SOURCES = test/maps_test.cc 26 29 test_random_test_SOURCES = test/random_test.cc 27 30 test_test_tools_fail_SOURCES = test/test_tools_fail.cc 28 31 test_test_tools_pass_SOURCES = test/test_tools_pass.cc 32 test_unionfind_test_SOURCES = test/unionfind_test.cc
Note: See TracChangeset
for help on using the changeset viewer.