COIN-OR::LEMON - Graph Library

source: lemon-0.x/demo/Makefile.am @ 2195:f47faf6913ab

Last change on this file since 2195:f47faf6913ab was 2195:f47faf6913ab, checked in by Alpar Juttner, 18 years ago

Tutorial improvements by Mark (mqrelly)

File size: 2.1 KB
RevLine 
[2119]1EXTRA_DIST += \
2        demo/Makefile \
3        demo/sub_graph_adaptor_demo.dim
[1349]4
[2108]5if WANT_DEMO
[934]6
[2108]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 \
[2195]17        demo/hello_world \
18        demo/maps_summary \
[2108]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/simann_maxcut_demo \
25        demo/disjoint_paths_demo \
26        demo/strongly_connected_orientation
[1349]27
28if HAVE_GLPK
[2147]29noinst_PROGRAMS += demo/lp_demo demo/lp_maxflow_demo demo/mip_demo
[1381]30else !HAVE_GLPK
31if HAVE_CPLEX
[2108]32noinst_PROGRAMS += demo/lp_demo demo/lp_maxflow_demo
[1381]33endif HAVE_CPLEX
34endif !HAVE_GLPK
35
[2108]36endif WANT_DEMO
[934]37
[2108]38demo_dim_to_dot_SOURCES = demo/dim_to_dot.cc
[934]39
[2108]40demo_dijkstra_demo_SOURCES = demo/dijkstra_demo.cc
[1526]41
[2108]42demo_eps_demo_SOURCES = demo/eps_demo.cc
[1971]43
[2108]44demo_reader_writer_demo_SOURCES = demo/reader_writer_demo.cc
[1528]45
[2108]46demo_dim_to_lgf_SOURCES = demo/dim_to_lgf.cc
[1073]47
[2108]48demo_coloring_SOURCES = demo/coloring.cc
[1422]49
[2195]50demo_maps_summary_SOURCES = demo/maps_summary.cc
51
[2108]52demo_graph_to_eps_demo_SOURCES = demo/graph_to_eps_demo.cc
[1296]53
[2108]54demo_grid_ugraph_demo_SOURCES = demo/grid_ugraph_demo.cc
[1680]55
[2108]56demo_graph_orientation_SOURCES = demo/graph_orientation.cc
[1678]57
[2108]58demo_min_route_SOURCES = demo/min_route.cc
[1349]59
[2108]60demo_hello_lemon_SOURCES = demo/hello_lemon.cc
[1520]61
[2195]62demo_hello_world_SOURCES = demo/hello_world.cc
63
[2108]64demo_sub_graph_adaptor_demo_SOURCES = \
65        demo/sub_graph_adaptor_demo.cc \
66        demo/tight_edge_filter_map.h
[1349]67
[2108]68demo_lp_demo_SOURCES = demo/lp_demo.cc
69demo_lp_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
[1361]70
[2147]71demo_mip_demo_SOURCES = demo/mip_demo.cc
72demo_mip_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
73
[2108]74demo_lp_maxflow_demo_SOURCES = demo/lp_maxflow_demo.cc
75demo_lp_maxflow_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
[1554]76
[2108]77demo_descriptor_map_demo_SOURCES = demo/descriptor_map_demo.cc
[1802]78
[2108]79demo_topology_demo_SOURCES = demo/topology_demo.cc
[1920]80
[2108]81demo_simann_maxcut_demo_SOURCES = demo/simann_maxcut_demo.cc
[2081]82
[2108]83demo_disjoint_paths_demo_SOURCES = demo/disjoint_paths_demo.cc
[2084]84
[2108]85demo_strongly_connected_orientation_SOURCES = demo/strongly_connected_orientation.cc
Note: See TracBrowser for help on using the repository browser.