COIN-OR::LEMON - Graph Library

Changeset 817:432c54cec63c in lemon for test


Ignore:
Timestamp:
11/05/09 08:39:49 (14 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
default
Parents:
816:e746fb14e680 (diff), 804:9fbbd802020f (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
Message:

Merge #179 (Port the min mean cycle algorithms)

Location:
test
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • test/CMakeLists.txt

    r745 r817  
    3333  min_cost_arborescence_test
    3434  min_cost_flow_test
     35  min_mean_cycle_test
    3536  path_test
    3637  preflow_test
  • test/CMakeLists.txt

    r810 r817  
    1010SET(TESTS
    1111  adaptors_test
     12  bellman_ford_test
    1213  bfs_test
    1314  circulation_test
  • test/Makefile.am

    r745 r817  
    3131        test/min_cost_arborescence_test \
    3232        test/min_cost_flow_test \
     33        test/min_mean_cycle_test \
    3334        test/path_test \
    3435        test/preflow_test \
     
    7980test_min_cost_arborescence_test_SOURCES = test/min_cost_arborescence_test.cc
    8081test_min_cost_flow_test_SOURCES = test/min_cost_flow_test.cc
     82test_min_mean_cycle_test_SOURCES = test/min_mean_cycle_test.cc
    8183test_path_test_SOURCES = test/path_test.cc
    8284test_preflow_test_SOURCES = test/preflow_test.cc
  • test/Makefile.am

    r810 r817  
    88check_PROGRAMS += \
    99        test/adaptors_test \
     10        test/bellman_ford_test \
    1011        test/bfs_test \
    1112        test/circulation_test \
     
    5455
    5556test_adaptors_test_SOURCES = test/adaptors_test.cc
     57test_bellman_ford_test_SOURCES = test/bellman_ford_test.cc
    5658test_bfs_test_SOURCES = test/bfs_test.cc
    5759test_circulation_test_SOURCES = test/circulation_test.cc
Note: See TracChangeset for help on using the changeset viewer.