Changeset 845:e4692f92a79b in lemon-0.x for src
- Timestamp:
- 09/14/04 10:16:14 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1144
- Location:
- src/test
- Files:
-
- 1 added
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/test/Makefile.am
r843 r845 1 1 AM_CPPFLAGS = -I$(top_srcdir)/src 2 2 3 dist_noinst_DATA = preflow_graph 3 #dist_noinst_DATA = preflow_graph 4 EXTRA_DIST = preflow_graph.inp 5 CLEANFILES = preflow_graph.out 4 6 5 7 noinst_HEADERS = test_tools.h graph_test.h … … 22 24 xy_test 23 25 26 SUFFIXES = .inp .out 27 .inp.out: 28 -cp $< $@ 24 29 25 30 TESTS = $(check_PROGRAMS) … … 36 41 path_test_SOURCES = path_test.cc 37 42 preflow_test_SOURCES = preflow_test.cc 43 preflow_test_DEPENDENCIES = preflow_graph.out 38 44 time_measure_test_SOURCES = time_measure_test.cc 39 45 test_tools_fail_SOURCES = test_tools_fail.cc -
src/test/preflow_test.cc
r842 r845 67 67 typedef Preflow<Graph, int> PType; 68 68 69 std::ifstream file("preflow_graph ");69 std::ifstream file("preflow_graph.out"); 70 70 71 71 Graph G;
Note: See TracChangeset
for help on using the changeset viewer.