Changes in / [104:cdbba181b786:106:9ba2d265e191] in lemon-main
- Files:
-
- 4 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/Makefile.am
r101 r106 24 24 lemon/dim2.h \ 25 25 lemon/error.h \ 26 lemon/graph_utils.h \ 26 lemon/graph_utils.h \ 27 lemon/kruskal.h \ 27 28 lemon/list_graph.h \ 28 29 lemon/maps.h \ … … 30 31 lemon/path.h \ 31 32 lemon/random.h \ 32 lemon/tolerance.h 33 lemon/tolerance.h \ 34 lemon/unionfind.h 33 35 34 36 bits_HEADERS += \ -
test/Makefile.am
r100 r106 14 14 test/dim_test \ 15 15 test/graph_test \ 16 test/kruskal_test \ 16 17 test/maps_test \ 17 18 test/random_test \ 18 19 test/path_test \ 19 20 test/test_tools_fail \ 20 test/test_tools_pass 21 test/test_tools_pass \ 22 test/unionfind_test 21 23 22 24 TESTS += $(check_PROGRAMS) … … 30 32 test_graph_test_SOURCES = test/graph_test.cc 31 33 # test_heap_test_SOURCES = test/heap_test.cc 34 test_kruskal_test_SOURCES = test/kruskal_test.cc 32 35 test_maps_test_SOURCES = test/maps_test.cc 33 36 test_path_test_SOURCES = test/path_test.cc … … 35 38 test_test_tools_fail_SOURCES = test/test_tools_fail.cc 36 39 test_test_tools_pass_SOURCES = test/test_tools_pass.cc 40 test_unionfind_test_SOURCES = test/unionfind_test.cc
Note: See TracChangeset
for help on using the changeset viewer.