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, 17 years ago

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

File size: 2.3 KB
Line 
1EXTRA_DIST += \
2        demo/Makefile \
3        demo/sub_graph_adaptor_demo.dim
4
5if WANT_DEMO
6
7noinst_PROGRAMS += \
8        demo/csp_demo \
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 \
18        demo/hello_world \
19        demo/maps_summary \
20        demo/sub_graph_adaptor_demo \
21        demo/descriptor_map_demo \
22        demo/coloring \
23        demo/grid_ugraph_demo \
24        demo/topology_demo \
25        demo/topological_ordering \
26        demo/simann_maxcut_demo \
27        demo/disjoint_paths_demo \
28        demo/strongly_connected_orientation
29
30if HAVE_GLPK
31noinst_PROGRAMS += demo/lp_demo demo/lp_maxflow_demo demo/mip_demo
32else !HAVE_GLPK
33if HAVE_CPLEX
34noinst_PROGRAMS += demo/lp_demo demo/lp_maxflow_demo
35endif HAVE_CPLEX
36endif !HAVE_GLPK
37
38endif WANT_DEMO
39
40demo_csp_demo_SOURCES = demo/csp_demo.cc
41
42demo_dim_to_dot_SOURCES = demo/dim_to_dot.cc
43
44demo_dijkstra_demo_SOURCES = demo/dijkstra_demo.cc
45
46demo_eps_demo_SOURCES = demo/eps_demo.cc
47
48demo_reader_writer_demo_SOURCES = demo/reader_writer_demo.cc
49
50demo_dim_to_lgf_SOURCES = demo/dim_to_lgf.cc
51
52demo_coloring_SOURCES = demo/coloring.cc
53
54demo_maps_summary_SOURCES = demo/maps_summary.cc
55
56demo_graph_to_eps_demo_SOURCES = demo/graph_to_eps_demo.cc
57
58demo_grid_ugraph_demo_SOURCES = demo/grid_ugraph_demo.cc
59
60demo_graph_orientation_SOURCES = demo/graph_orientation.cc
61
62demo_min_route_SOURCES = demo/min_route.cc
63
64demo_hello_lemon_SOURCES = demo/hello_lemon.cc
65
66demo_hello_world_SOURCES = demo/hello_world.cc
67
68demo_sub_graph_adaptor_demo_SOURCES = \
69        demo/sub_graph_adaptor_demo.cc \
70        demo/tight_edge_filter_map.h
71
72demo_lp_demo_SOURCES = demo/lp_demo.cc
73demo_lp_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
74
75demo_mip_demo_SOURCES = demo/mip_demo.cc
76demo_mip_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
77
78demo_lp_maxflow_demo_SOURCES = demo/lp_maxflow_demo.cc
79demo_lp_maxflow_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
80
81demo_descriptor_map_demo_SOURCES = demo/descriptor_map_demo.cc
82
83demo_topology_demo_SOURCES = demo/topology_demo.cc
84
85demo_topological_ordering_SOURCES = demo/topological_ordering.cc
86
87demo_simann_maxcut_demo_SOURCES = demo/simann_maxcut_demo.cc
88
89demo_disjoint_paths_demo_SOURCES = demo/disjoint_paths_demo.cc
90
91demo_strongly_connected_orientation_SOURCES = demo/strongly_connected_orientation.cc
Note: See TracBrowser for help on using the repository browser.