demo/Makefile.am
author Peter Kovacs <kpeter@inf.elte.hu>
Mon, 12 Jan 2009 07:52:48 +0100
changeset 463 a2fd8b8d0b30
parent 399 5a7dbeaed70e
child 564 eda12d8ac953
permissions -rw-r--r--
Greatly extend and improve the test file for adaptors (#67)

- Add concept checks for the alterable, extendable, erasable
and clearable adaptors.
- Add test cases for modifying the underlying graphs through adaptors
whenever it is possible.
- Check the conversions between Node, Arc and Edge types.
- Add more test cases for the adaptor-specific functions and maps:
enable(), disable(), status(), forward(), backward(), CombinedArcMap,
CombinedNodeMap, ResidualCapacity etc.
- Use checkGraphIncEdgeArcLists() to simplify the test cases for
undirected graphs.
- Add test cases that use static graph structure (GridGraph) with
several adaptors combined.
- Add comments for the test cases.
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