COIN-OR::LEMON - Graph Library

source: lemon-0.x/demo/Makefile.am @ 2360:72c7075ad5ba

Last change on this file since 2360:72c7075ad5ba was 2360:72c7075ad5ba, checked in by Alpar Juttner, 18 years ago

Lagrange relaxation based algorithm for the delay constrained least cost
path problem.

File size: 2.3 KB
RevLine 
[2119]1EXTRA_DIST += \
2        demo/Makefile \
3        demo/sub_graph_adaptor_demo.dim
[1349]4
[2108]5if WANT_DEMO
[934]6
[2108]7noinst_PROGRAMS += \
[2360]8        demo/csp_demo \
[2108]9        demo/dim_to_dot \
10        demo/dijkstra_demo \
11        demo/reader_writer_demo \
12        demo/dim_to_lgf \
13        demo/eps_demo \
14        demo/graph_to_eps_demo \
15        demo/graph_orientation \
16        demo/min_route \
17        demo/hello_lemon \
[2195]18        demo/hello_world \
19        demo/maps_summary \
[2108]20        demo/sub_graph_adaptor_demo \
21        demo/descriptor_map_demo \
22        demo/coloring \
23        demo/grid_ugraph_demo \
24        demo/topology_demo \
[2216]25        demo/topological_ordering \
[2108]26        demo/simann_maxcut_demo \
27        demo/disjoint_paths_demo \
28        demo/strongly_connected_orientation
[1349]29
30if HAVE_GLPK
[2147]31noinst_PROGRAMS += demo/lp_demo demo/lp_maxflow_demo demo/mip_demo
[1381]32else !HAVE_GLPK
33if HAVE_CPLEX
[2108]34noinst_PROGRAMS += demo/lp_demo demo/lp_maxflow_demo
[1381]35endif HAVE_CPLEX
36endif !HAVE_GLPK
37
[2108]38endif WANT_DEMO
[934]39
[2360]40demo_csp_demo_SOURCES = demo/csp_demo.cc
41
[2108]42demo_dim_to_dot_SOURCES = demo/dim_to_dot.cc
[934]43
[2108]44demo_dijkstra_demo_SOURCES = demo/dijkstra_demo.cc
[1526]45
[2108]46demo_eps_demo_SOURCES = demo/eps_demo.cc
[1971]47
[2108]48demo_reader_writer_demo_SOURCES = demo/reader_writer_demo.cc
[1528]49
[2108]50demo_dim_to_lgf_SOURCES = demo/dim_to_lgf.cc
[1073]51
[2108]52demo_coloring_SOURCES = demo/coloring.cc
[1422]53
[2195]54demo_maps_summary_SOURCES = demo/maps_summary.cc
55
[2108]56demo_graph_to_eps_demo_SOURCES = demo/graph_to_eps_demo.cc
[1296]57
[2108]58demo_grid_ugraph_demo_SOURCES = demo/grid_ugraph_demo.cc
[1680]59
[2108]60demo_graph_orientation_SOURCES = demo/graph_orientation.cc
[1678]61
[2108]62demo_min_route_SOURCES = demo/min_route.cc
[1349]63
[2108]64demo_hello_lemon_SOURCES = demo/hello_lemon.cc
[1520]65
[2195]66demo_hello_world_SOURCES = demo/hello_world.cc
67
[2108]68demo_sub_graph_adaptor_demo_SOURCES = \
69        demo/sub_graph_adaptor_demo.cc \
70        demo/tight_edge_filter_map.h
[1349]71
[2108]72demo_lp_demo_SOURCES = demo/lp_demo.cc
73demo_lp_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
[1361]74
[2147]75demo_mip_demo_SOURCES = demo/mip_demo.cc
76demo_mip_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
77
[2108]78demo_lp_maxflow_demo_SOURCES = demo/lp_maxflow_demo.cc
79demo_lp_maxflow_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
[1554]80
[2108]81demo_descriptor_map_demo_SOURCES = demo/descriptor_map_demo.cc
[1802]82
[2108]83demo_topology_demo_SOURCES = demo/topology_demo.cc
[1920]84
[2216]85demo_topological_ordering_SOURCES = demo/topological_ordering.cc
86
[2108]87demo_simann_maxcut_demo_SOURCES = demo/simann_maxcut_demo.cc
[2081]88
[2108]89demo_disjoint_paths_demo_SOURCES = demo/disjoint_paths_demo.cc
[2084]90
[2108]91demo_strongly_connected_orientation_SOURCES = demo/strongly_connected_orientation.cc
Note: See TracBrowser for help on using the repository browser.