COIN-OR::LEMON - Graph Library

source: lemon-0.x/demo/Makefile.am @ 2389:df6a32249b46

Last change on this file since 2389:df6a32249b46 was 2389:df6a32249b46, checked in by Alpar Juttner, 17 years ago

arg_parser.h: A command line argument parser.
dist_log.h: A tool for measuring one and two dimensional distributions.

File size: 2.7 KB
Line 
1EXTRA_DIST += \
2        demo/Makefile \
3        demo/sub_graph_adaptor_demo.dim \
4        demo/circulation-input.lgf \
5        demo/coloring.lgf \
6        demo/dir_components.lgf \
7        demo/disjoint_paths_demo.lgf \
8        demo/graph_orientation.lgf \
9        demo/partitions.lgf \
10        demo/route.lgf \
11        demo/sample.lgf \
12        demo/simann_maxcut_demo.lgf \
13        demo/strongly_connected_orientation.lgf \
14        demo/sub_gad_input.lgf \
15        demo/u_components.lgf
16       
17if WANT_DEMO
18
19noinst_PROGRAMS += \
20        demo/arg_parser_demo \
21        demo/circulation_demo \
22        demo/csp_demo \
23        demo/dim_to_dot \
24        demo/dijkstra_demo \
25        demo/reader_writer_demo \
26        demo/dim_to_lgf \
27        demo/eps_demo \
28        demo/graph_to_eps_demo \
29        demo/graph_orientation \
30        demo/min_route \
31        demo/hello_lemon \
32        demo/hello_world \
33        demo/maps_summary \
34        demo/sub_graph_adaptor_demo \
35        demo/descriptor_map_demo \
36        demo/coloring \
37        demo/grid_ugraph_demo \
38        demo/topology_demo \
39        demo/topological_ordering \
40        demo/simann_maxcut_demo \
41        demo/disjoint_paths_demo \
42        demo/strongly_connected_orientation
43
44if HAVE_GLPK
45noinst_PROGRAMS += demo/lp_demo demo/lp_maxflow_demo demo/mip_demo
46else !HAVE_GLPK
47if HAVE_CPLEX
48noinst_PROGRAMS += demo/lp_demo demo/lp_maxflow_demo
49endif HAVE_CPLEX
50endif !HAVE_GLPK
51
52endif WANT_DEMO
53
54demo_arg_parser_demo_SOURCES = demo/arg_parser_demo.cc
55
56demo_csp_demo_SOURCES = demo/csp_demo.cc
57
58demo_circulation_demo_SOURCES = demo/circulation_demo.cc
59
60demo_dim_to_dot_SOURCES = demo/dim_to_dot.cc
61
62demo_dijkstra_demo_SOURCES = demo/dijkstra_demo.cc
63
64demo_eps_demo_SOURCES = demo/eps_demo.cc
65
66demo_reader_writer_demo_SOURCES = demo/reader_writer_demo.cc
67
68demo_dim_to_lgf_SOURCES = demo/dim_to_lgf.cc
69
70demo_coloring_SOURCES = demo/coloring.cc
71
72demo_maps_summary_SOURCES = demo/maps_summary.cc
73
74demo_graph_to_eps_demo_SOURCES = demo/graph_to_eps_demo.cc
75
76demo_grid_ugraph_demo_SOURCES = demo/grid_ugraph_demo.cc
77
78demo_graph_orientation_SOURCES = demo/graph_orientation.cc
79
80demo_min_route_SOURCES = demo/min_route.cc
81
82demo_hello_lemon_SOURCES = demo/hello_lemon.cc
83
84demo_hello_world_SOURCES = demo/hello_world.cc
85
86demo_sub_graph_adaptor_demo_SOURCES = \
87        demo/sub_graph_adaptor_demo.cc \
88        demo/tight_edge_filter_map.h
89
90demo_lp_demo_SOURCES = demo/lp_demo.cc
91demo_lp_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
92
93demo_mip_demo_SOURCES = demo/mip_demo.cc
94demo_mip_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
95
96demo_lp_maxflow_demo_SOURCES = demo/lp_maxflow_demo.cc
97demo_lp_maxflow_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
98
99demo_descriptor_map_demo_SOURCES = demo/descriptor_map_demo.cc
100
101demo_topology_demo_SOURCES = demo/topology_demo.cc
102
103demo_topological_ordering_SOURCES = demo/topological_ordering.cc
104
105demo_simann_maxcut_demo_SOURCES = demo/simann_maxcut_demo.cc
106
107demo_disjoint_paths_demo_SOURCES = demo/disjoint_paths_demo.cc
108
109demo_strongly_connected_orientation_SOURCES = demo/strongly_connected_orientation.cc
Note: See TracBrowser for help on using the repository browser.