COIN-OR::LEMON - Graph Library

source: lemon-0.x/demo/Makefile.am @ 2399:ccf2a1fa1821

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