src/hugo/Makefile.am
author marci
Tue, 17 Aug 2004 13:20:46 +0000
changeset 764 615aca7091d2
parent 596 c43e7d0f075b
child 774 4297098d9677
permissions -rw-r--r--
An experimental LPSolverWrapper class which uses glpk. For a short
demo, max flow problems are solved with it. This demo does not
demonstrates, but the main aims of this class are row and column
generation capabilities, i.e. to be a core for easily
implementable branch-and-cut a column generetion algorithms.
     1 pkginclude_HEADERS =							\
     2 	bin_heap.h							\
     3 	dijkstra.h							\
     4 	dimacs.h							\
     5 	error.h								\
     6 	fib_heap.h							\
     7 	full_graph.h							\
     8 	graph_wrapper.h							\
     9 	invalid.h							\
    10 	list_graph.h							\
    11 	maps.h								\
    12 	max_flow.h                                                      \
    13 	smart_graph.h							\
    14 	time_measure.h							\
    15 	unionfind.h							\
    16 	xy.h
    17 
    18 noinst_HEADERS =							\
    19 	skeletons/graph.h						\
    20 	skeletons/maps.h