demo/Makefile.am
author Peter Kovacs <kpeter@inf.elte.hu>
Mon, 22 Sep 2008 15:33:23 +0200
changeset 278 931190050520
parent 146 4b42aa24ce12
permissions -rw-r--r--
Improve the function-type interface of bfs, dfs, and dijkstra (ticket #96)
- BfsWizard and DfsWizard have run(s), run(s,t), and run() functions,
DijkstraWizard has run(s) and run(s,t) functions.
- Set NodeMap<T> instead of NullMap as PredMap and DistMap in the default
traits classes for the function-type interface.
- Modify the related test files.
- Doc improvements.
- Bug fix in concepts/path.h.
ladanyi@1
     1
EXTRA_DIST += \
deba@164
     2
	demo/CMakeLists.txt \
deba@164
     3
	demo/digraph.lgf
ladanyi@1
     4
ladanyi@1
     5
if WANT_DEMO
ladanyi@1
     6
alpar@85
     7
noinst_PROGRAMS += \
alpar@135
     8
	demo/arg_parser_demo \
alpar@135
     9
	demo/graph_to_eps_demo \
deba@127
    10
	demo/lgf_demo
ladanyi@1
    11
ladanyi@1
    12
endif WANT_DEMO
alpar@85
    13
alpar@85
    14
demo_arg_parser_demo_SOURCES = demo/arg_parser_demo.cc
alpar@135
    15
demo_graph_to_eps_demo_SOURCES = demo/graph_to_eps_demo.cc
deba@127
    16
demo_lgf_demo_SOURCES = demo/lgf_demo.cc