COIN-OR::LEMON - Graph Library

source: lemon-0.x/demo/Makefile.am @ 2384:805c5a2a36dd

Last change on this file since 2384:805c5a2a36dd was 2375:e30a0fdad0d7, checked in by Alpar Juttner, 17 years ago

A preflow based general network circulation algorithm and a simple demo

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