demo/Makefile.am
author alpar
Tue, 20 Feb 2007 15:53:33 +0000
changeset 2375 e30a0fdad0d7
parent 2360 72c7075ad5ba
child 2389 df6a32249b46
permissions -rw-r--r--
A preflow based general network circulation algorithm and a simple demo
     1 EXTRA_DIST += \
     2 	demo/Makefile \
     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 	
    17 if WANT_DEMO
    18 
    19 noinst_PROGRAMS += \
    20 	demo/circulation_demo \
    21 	demo/csp_demo \
    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 \
    31 	demo/hello_world \
    32 	demo/maps_summary \
    33 	demo/sub_graph_adaptor_demo \
    34 	demo/descriptor_map_demo \
    35 	demo/coloring \
    36 	demo/grid_ugraph_demo \
    37 	demo/topology_demo \
    38 	demo/topological_ordering \
    39 	demo/simann_maxcut_demo \
    40 	demo/disjoint_paths_demo \
    41 	demo/strongly_connected_orientation
    42 
    43 if HAVE_GLPK
    44 noinst_PROGRAMS += demo/lp_demo demo/lp_maxflow_demo demo/mip_demo
    45 else !HAVE_GLPK
    46 if HAVE_CPLEX
    47 noinst_PROGRAMS += demo/lp_demo demo/lp_maxflow_demo
    48 endif HAVE_CPLEX
    49 endif !HAVE_GLPK
    50 
    51 endif WANT_DEMO
    52 
    53 demo_csp_demo_SOURCES = demo/csp_demo.cc
    54 
    55 demo_circulation_demo_SOURCES = demo/circulation_demo.cc
    56 
    57 demo_dim_to_dot_SOURCES = demo/dim_to_dot.cc
    58 
    59 demo_dijkstra_demo_SOURCES = demo/dijkstra_demo.cc
    60 
    61 demo_eps_demo_SOURCES = demo/eps_demo.cc
    62 
    63 demo_reader_writer_demo_SOURCES = demo/reader_writer_demo.cc
    64 
    65 demo_dim_to_lgf_SOURCES = demo/dim_to_lgf.cc
    66 
    67 demo_coloring_SOURCES = demo/coloring.cc
    68 
    69 demo_maps_summary_SOURCES = demo/maps_summary.cc
    70 
    71 demo_graph_to_eps_demo_SOURCES = demo/graph_to_eps_demo.cc
    72 
    73 demo_grid_ugraph_demo_SOURCES = demo/grid_ugraph_demo.cc
    74 
    75 demo_graph_orientation_SOURCES = demo/graph_orientation.cc
    76 
    77 demo_min_route_SOURCES = demo/min_route.cc
    78 
    79 demo_hello_lemon_SOURCES = demo/hello_lemon.cc
    80 
    81 demo_hello_world_SOURCES = demo/hello_world.cc
    82 
    83 demo_sub_graph_adaptor_demo_SOURCES = \
    84 	demo/sub_graph_adaptor_demo.cc \
    85 	demo/tight_edge_filter_map.h
    86 
    87 demo_lp_demo_SOURCES = demo/lp_demo.cc
    88 demo_lp_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
    89 
    90 demo_mip_demo_SOURCES = demo/mip_demo.cc
    91 demo_mip_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
    92 
    93 demo_lp_maxflow_demo_SOURCES = demo/lp_maxflow_demo.cc
    94 demo_lp_maxflow_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
    95 
    96 demo_descriptor_map_demo_SOURCES = demo/descriptor_map_demo.cc
    97 
    98 demo_topology_demo_SOURCES = demo/topology_demo.cc
    99 
   100 demo_topological_ordering_SOURCES = demo/topological_ordering.cc
   101 
   102 demo_simann_maxcut_demo_SOURCES = demo/simann_maxcut_demo.cc
   103 
   104 demo_disjoint_paths_demo_SOURCES = demo/disjoint_paths_demo.cc
   105 
   106 demo_strongly_connected_orientation_SOURCES = demo/strongly_connected_orientation.cc