COIN-OR::LEMON - Graph Library

source: lemon-0.x/demo/Makefile.am @ 2419:6a567c0f1214

Last change on this file since 2419:6a567c0f1214 was 2404:ec474604075e, checked in by Alpar Juttner, 18 years ago

dim_to_lgf has been moved to tools/ (from demo/)

File size: 2.8 KB
RevLine 
[2119]1EXTRA_DIST += \
2        demo/Makefile \
[2375]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 \
[2400]15        demo/u_components.lgf \
16        demo/steiner.lgf
17
[2108]18if WANT_DEMO
[934]19
[2108]20noinst_PROGRAMS += \
[2389]21        demo/arg_parser_demo \
[2375]22        demo/circulation_demo \
[2360]23        demo/csp_demo \
[2108]24        demo/dim_to_dot \
25        demo/dijkstra_demo \
26        demo/reader_writer_demo \
27        demo/eps_demo \
28        demo/graph_to_eps_demo \
29        demo/graph_orientation \
30        demo/min_route \
31        demo/hello_lemon \
[2195]32        demo/hello_world \
33        demo/maps_summary \
[2108]34        demo/sub_graph_adaptor_demo \
35        demo/descriptor_map_demo \
36        demo/coloring \
37        demo/grid_ugraph_demo \
38        demo/topology_demo \
[2216]39        demo/topological_ordering \
[2108]40        demo/simann_maxcut_demo \
41        demo/disjoint_paths_demo \
[2400]42        demo/strongly_connected_orientation \
43        demo/steiner_demo
[1349]44
45if HAVE_GLPK
[2147]46noinst_PROGRAMS += demo/lp_demo demo/lp_maxflow_demo demo/mip_demo
[1381]47else !HAVE_GLPK
48if HAVE_CPLEX
[2108]49noinst_PROGRAMS += demo/lp_demo demo/lp_maxflow_demo
[1381]50endif HAVE_CPLEX
51endif !HAVE_GLPK
52
[2108]53endif WANT_DEMO
[934]54
[2389]55demo_arg_parser_demo_SOURCES = demo/arg_parser_demo.cc
56
[2360]57demo_csp_demo_SOURCES = demo/csp_demo.cc
58
[2375]59demo_circulation_demo_SOURCES = demo/circulation_demo.cc
60
[2108]61demo_dim_to_dot_SOURCES = demo/dim_to_dot.cc
[934]62
[2108]63demo_dijkstra_demo_SOURCES = demo/dijkstra_demo.cc
[1526]64
[2108]65demo_eps_demo_SOURCES = demo/eps_demo.cc
[1971]66
[2108]67demo_reader_writer_demo_SOURCES = demo/reader_writer_demo.cc
[1528]68
[2108]69demo_coloring_SOURCES = demo/coloring.cc
[1422]70
[2195]71demo_maps_summary_SOURCES = demo/maps_summary.cc
72
[2108]73demo_graph_to_eps_demo_SOURCES = demo/graph_to_eps_demo.cc
[1296]74
[2108]75demo_grid_ugraph_demo_SOURCES = demo/grid_ugraph_demo.cc
[1680]76
[2108]77demo_graph_orientation_SOURCES = demo/graph_orientation.cc
[1678]78
[2108]79demo_min_route_SOURCES = demo/min_route.cc
[1349]80
[2108]81demo_hello_lemon_SOURCES = demo/hello_lemon.cc
[1520]82
[2195]83demo_hello_world_SOURCES = demo/hello_world.cc
84
[2108]85demo_sub_graph_adaptor_demo_SOURCES = \
86        demo/sub_graph_adaptor_demo.cc \
87        demo/tight_edge_filter_map.h
[1349]88
[2108]89demo_lp_demo_SOURCES = demo/lp_demo.cc
90demo_lp_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
[1361]91
[2147]92demo_mip_demo_SOURCES = demo/mip_demo.cc
93demo_mip_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
94
[2108]95demo_lp_maxflow_demo_SOURCES = demo/lp_maxflow_demo.cc
96demo_lp_maxflow_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
[1554]97
[2108]98demo_descriptor_map_demo_SOURCES = demo/descriptor_map_demo.cc
[1802]99
[2108]100demo_topology_demo_SOURCES = demo/topology_demo.cc
[1920]101
[2216]102demo_topological_ordering_SOURCES = demo/topological_ordering.cc
103
[2108]104demo_simann_maxcut_demo_SOURCES = demo/simann_maxcut_demo.cc
[2081]105
[2108]106demo_disjoint_paths_demo_SOURCES = demo/disjoint_paths_demo.cc
[2084]107
[2108]108demo_strongly_connected_orientation_SOURCES = demo/strongly_connected_orientation.cc
[2400]109
110demo_steiner_demo_SOURCES=demo/steiner_demo.cc
Note: See TracBrowser for help on using the repository browser.