Changeset 119:82a2639a05bb in lemon-main
- Timestamp:
- 03/30/08 23:16:35 (17 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 4 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/Makefile.am
r109 r119 21 21 lemon/bfs.h \ 22 22 lemon/bin_heap.h \ 23 lemon/counter.h \ 23 24 lemon/dfs.h \ 24 25 lemon/dijkstra.h \ … … 33 34 lemon/random.h \ 34 35 lemon/smart_graph.h \ 36 lemon/time_measure.h \ 35 37 lemon/tolerance.h \ 36 38 lemon/unionfind.h -
test/Makefile.am
r108 r119 10 10 check_PROGRAMS += \ 11 11 test/bfs_test \ 12 test/counter_test \ 12 13 test/dfs_test \ 13 14 test/digraph_test \ … … 21 22 test/test_tools_fail \ 22 23 test/test_tools_pass \ 24 test/time_measure_test \ 23 25 test/unionfind_test 24 26 … … 27 29 28 30 test_bfs_test_SOURCES = test/bfs_test.cc 31 test_counter_test_SOURCES = test/counter_test.cc 29 32 test_dfs_test_SOURCES = test/dfs_test.cc 30 33 test_digraph_test_SOURCES = test/digraph_test.cc … … 39 42 test_test_tools_fail_SOURCES = test/test_tools_fail.cc 40 43 test_test_tools_pass_SOURCES = test/test_tools_pass.cc 44 test_time_measure_test_SOURCES = test/time_measure_test.cc 41 45 test_unionfind_test_SOURCES = test/unionfind_test.cc
Note: See TracChangeset
for help on using the changeset viewer.