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