COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • test/Makefile.am

    r440 r513  
    77
    88check_PROGRAMS += \
     9        test/adaptors_test \
    910        test/bfs_test \
    1011        test/circulation_test \
     
    1415        test/dijkstra_test \
    1516        test/dim_test \
     17        test/edge_set_test \
    1618        test/error_test \
    17         test/graph_adaptor_test \
     19        test/euler_test \
    1820        test/graph_copy_test \
    1921        test/graph_test \
     
    2426        test/maps_test \
    2527        test/max_matching_test \
     28        test/min_cost_arborescence_test \
    2629        test/path_test \
    2730        test/preflow_test \
     31        test/radix_sort_test \
    2832        test/random_test \
    2933        test/suurballe_test \
     
    3337        test/unionfind_test
    3438
     39if HAVE_LP
     40check_PROGRAMS += test/lp_test
     41endif HAVE_LP
     42if HAVE_MIP
     43check_PROGRAMS += test/mip_test
     44endif HAVE_MIP
     45
    3546TESTS += $(check_PROGRAMS)
    3647XFAIL_TESTS += test/test_tools_fail$(EXEEXT)
    3748
     49test_adaptors_test_SOURCES = test/adaptors_test.cc
    3850test_bfs_test_SOURCES = test/bfs_test.cc
    3951test_circulation_test_SOURCES = test/circulation_test.cc
     
    4355test_dijkstra_test_SOURCES = test/dijkstra_test.cc
    4456test_dim_test_SOURCES = test/dim_test.cc
     57test_edge_set_test_SOURCES = test/edge_set_test.cc
    4558test_error_test_SOURCES = test/error_test.cc
    46 test_graph_adaptor_test_SOURCES = test/graph_adaptor_test.cc
     59test_euler_test_SOURCES = test/euler_test.cc
    4760test_graph_copy_test_SOURCES = test/graph_copy_test.cc
    4861test_graph_test_SOURCES = test/graph_test.cc
     
    5164test_kruskal_test_SOURCES = test/kruskal_test.cc
    5265test_hao_orlin_test_SOURCES = test/hao_orlin_test.cc
     66test_lp_test_SOURCES = test/lp_test.cc
    5367test_maps_test_SOURCES = test/maps_test.cc
     68test_mip_test_SOURCES = test/mip_test.cc
    5469test_max_matching_test_SOURCES = test/max_matching_test.cc
     70test_min_cost_arborescence_test_SOURCES = test/min_cost_arborescence_test.cc
    5571test_path_test_SOURCES = test/path_test.cc
    5672test_preflow_test_SOURCES = test/preflow_test.cc
     73test_radix_sort_test_SOURCES = test/radix_sort_test.cc
    5774test_suurballe_test_SOURCES = test/suurballe_test.cc
    5875test_random_test_SOURCES = test/random_test.cc
Note: See TracChangeset for help on using the changeset viewer.