Changeset 106:9ba2d265e191 in lemon
- Timestamp:
- 03/21/08 00:06:35 (17 years ago)
- Branch:
- default
- Parents:
- 104:cdbba181b786 (diff), 105:e4948ef6a4ca (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Phase:
- public
- Files:
-
- 4 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 += \ -
lemon/Makefile.am
r103 r106 8 8 9 9 lemon_libemon_la_SOURCES = \ 10 lemon/arg_parser.cc \ 10 11 lemon/base.cc \ 11 12 lemon/random.cc … … 16 17 17 18 lemon_HEADERS += \ 18 lemon/concept_check.h \ 19 lemon/arg_parser.h \ 20 lemon/bfs.h \ 21 lemon/bin_heap.h \ 22 lemon/dfs.h \ 23 lemon/dijkstra.h \ 19 24 lemon/dim2.h \ 20 25 lemon/error.h \ 26 lemon/graph_utils.h \ 21 27 lemon/kruskal.h \ 22 28 lemon/list_graph.h \ 23 29 lemon/maps.h \ 24 30 lemon/math.h \ 31 lemon/path.h \ 25 32 lemon/random.h \ 26 33 lemon/tolerance.h \ … … 35 42 lemon/bits/invalid.h \ 36 43 lemon/bits/map_extender.h \ 44 lemon/bits/path_dump.h \ 37 45 lemon/bits/traits.h \ 38 46 lemon/bits/utility.h \ … … 43 51 lemon/concepts/digraph.h \ 44 52 lemon/concepts/graph.h \ 53 lemon/concepts/heap.h \ 45 54 lemon/concepts/maps.h \ 55 lemon/concepts/path.h \ 46 56 lemon/concepts/graph_components.h -
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 -
test/Makefile.am
r103 r106 4 4 noinst_HEADERS += \ 5 5 test/digraph_test.h \ 6 test/heap_test.h \ 6 7 test/map_test.h \ 7 8 test/test_tools.h 8 9 9 10 check_PROGRAMS += \ 11 test/bfs_test \ 12 test/dfs_test \ 10 13 test/digraph_test \ 11 14 test/dim_test \ … … 14 17 test/maps_test \ 15 18 test/random_test \ 19 test/path_test \ 16 20 test/test_tools_fail \ 17 21 test/test_tools_pass \ … … 21 25 XFAIL_TESTS += test/test_tools_fail$(EXEEXT) 22 26 27 test_bfs_test_SOURCES = test/bfs_test.cc 28 test_dfs_test_SOURCES = test/dfs_test.cc 23 29 test_digraph_test_SOURCES = test/digraph_test.cc 24 30 test_dim_test_SOURCES = test/dim_test.cc 25 31 #test_error_test_SOURCES = test/error_test.cc 26 32 test_graph_test_SOURCES = test/graph_test.cc 33 # test_heap_test_SOURCES = test/heap_test.cc 27 34 test_kruskal_test_SOURCES = test/kruskal_test.cc 28 35 test_maps_test_SOURCES = test/maps_test.cc 36 test_path_test_SOURCES = test/path_test.cc 29 37 test_random_test_SOURCES = test/random_test.cc 30 38 test_test_tools_fail_SOURCES = test/test_tools_fail.cc
Note: See TracChangeset
for help on using the changeset viewer.