COIN-OR::LEMON - Graph Library

source: lemon-0.x/demo/Makefile.am @ 2172:4b25e7003868

Last change on this file since 2172:4b25e7003868 was 2147:63d293ff1bef, checked in by athos, 18 years ago

mip_test file went to mip_demo.

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