COIN-OR::LEMON - Graph Library

source: lemon-0.x/demo/Makefile.am @ 2216:1e45cdeea3cc

Last change on this file since 2216:1e45cdeea3cc was 2216:1e45cdeea3cc, checked in by Alpar Juttner, 18 years ago

The recent progresses on the tutorial due to Mark.

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