demo/Makefile.am
author deba
Mon, 07 May 2007 08:47:38 +0000
changeset 2437 02c7076bf894
parent 2404 ec474604075e
child 2494 839c74eeba84
permissions -rw-r--r--
Small improvements in MinMeanCycle class.

Patch from Peter Kovacs
     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 	demo/steiner.lgf \
    17 	demo/sat-2.in
    18 
    19 if WANT_DEMO
    20 
    21 noinst_PROGRAMS += \
    22 	demo/arg_parser_demo \
    23 	demo/circulation_demo \
    24 	demo/csp_demo \
    25 	demo/dim_to_dot \
    26 	demo/dijkstra_demo \
    27 	demo/reader_writer_demo \
    28 	demo/eps_demo \
    29 	demo/graph_to_eps_demo \
    30 	demo/graph_orientation \
    31 	demo/min_route \
    32 	demo/hello_lemon \
    33 	demo/hello_world \
    34 	demo/maps_summary \
    35 	demo/sub_graph_adaptor_demo \
    36 	demo/descriptor_map_demo \
    37 	demo/coloring \
    38 	demo/grid_ugraph_demo \
    39 	demo/topology_demo \
    40 	demo/topological_ordering \
    41 	demo/simann_maxcut_demo \
    42 	demo/disjoint_paths_demo \
    43 	demo/strongly_connected_orientation \
    44 	demo/steiner_demo \
    45 	demo/sat-2 \
    46 	demo/sat
    47 
    48 if HAVE_GLPK
    49 noinst_PROGRAMS += demo/lp_demo demo/lp_maxflow_demo demo/mip_demo
    50 else !HAVE_GLPK
    51 if HAVE_CPLEX
    52 noinst_PROGRAMS += demo/lp_demo demo/lp_maxflow_demo
    53 endif HAVE_CPLEX
    54 endif !HAVE_GLPK
    55 
    56 endif WANT_DEMO
    57 
    58 demo_arg_parser_demo_SOURCES = demo/arg_parser_demo.cc
    59 
    60 demo_csp_demo_SOURCES = demo/csp_demo.cc
    61 
    62 demo_circulation_demo_SOURCES = demo/circulation_demo.cc
    63 
    64 demo_dim_to_dot_SOURCES = demo/dim_to_dot.cc
    65 
    66 demo_dijkstra_demo_SOURCES = demo/dijkstra_demo.cc
    67 
    68 demo_eps_demo_SOURCES = demo/eps_demo.cc
    69 
    70 demo_reader_writer_demo_SOURCES = demo/reader_writer_demo.cc
    71 
    72 demo_coloring_SOURCES = demo/coloring.cc
    73 
    74 demo_maps_summary_SOURCES = demo/maps_summary.cc
    75 
    76 demo_graph_to_eps_demo_SOURCES = demo/graph_to_eps_demo.cc
    77 
    78 demo_grid_ugraph_demo_SOURCES = demo/grid_ugraph_demo.cc
    79 
    80 demo_graph_orientation_SOURCES = demo/graph_orientation.cc
    81 
    82 demo_min_route_SOURCES = demo/min_route.cc
    83 
    84 demo_hello_lemon_SOURCES = demo/hello_lemon.cc
    85 
    86 demo_hello_world_SOURCES = demo/hello_world.cc
    87 
    88 demo_sub_graph_adaptor_demo_SOURCES = \
    89 	demo/sub_graph_adaptor_demo.cc \
    90 	demo/tight_edge_filter_map.h
    91 
    92 demo_lp_demo_SOURCES = demo/lp_demo.cc
    93 demo_lp_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
    94 
    95 demo_mip_demo_SOURCES = demo/mip_demo.cc
    96 demo_mip_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
    97 
    98 demo_lp_maxflow_demo_SOURCES = demo/lp_maxflow_demo.cc
    99 demo_lp_maxflow_demo_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
   100 
   101 demo_descriptor_map_demo_SOURCES = demo/descriptor_map_demo.cc
   102 
   103 demo_topology_demo_SOURCES = demo/topology_demo.cc
   104 
   105 demo_topological_ordering_SOURCES = demo/topological_ordering.cc
   106 
   107 demo_simann_maxcut_demo_SOURCES = demo/simann_maxcut_demo.cc
   108 
   109 demo_disjoint_paths_demo_SOURCES = demo/disjoint_paths_demo.cc
   110 
   111 demo_strongly_connected_orientation_SOURCES = demo/strongly_connected_orientation.cc
   112 
   113 demo_steiner_demo_SOURCES=demo/steiner_demo.cc
   114 
   115 demo_sat_2_SOURCES=demo/sat-2.cc
   116 
   117 demo_sat_SOURCES=demo/sat.cc