Modifications to the interface: colType() functions, though I left the old integer() functions, too.
3 * This file is a part of LEMON, a generic C++ optimization library
5 * Copyright (C) 2003-2006
6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
7 * (Egervary Research Group on Combinatorial Optimization, EGRES).
9 * Permission to use, modify and distribute this software is granted
10 * provided that this copyright notice appears in all copies. For
11 * precise terms see the accompanying LICENSE file.
13 * This software is provided "AS IS" with no warranty of any kind,
14 * express or implied, and with no claim as to its suitability for any
22 #include <lemon/concept/graph.h>
23 #include <lemon/list_graph.h>
24 #include <lemon/smart_graph.h>
25 #include <lemon/full_graph.h>
26 #include <lemon/hypercube_graph.h>
28 #include "test_tools.h"
29 #include "graph_test.h"
33 using namespace lemon;
34 using namespace lemon::concept;
38 { // checking graph components
39 checkConcept<BaseGraphComponent, BaseGraphComponent >();
41 checkConcept<BaseIterableGraphComponent<>,
42 BaseIterableGraphComponent<> >();
44 checkConcept<IDableGraphComponent<>,
45 IDableGraphComponent<> >();
47 checkConcept<IterableGraphComponent<>,
48 IterableGraphComponent<> >();
50 checkConcept<MappableGraphComponent<>,
51 MappableGraphComponent<> >();
54 { // checking skeleton graphs
55 checkConcept<Graph, Graph>();
57 { // checking list graph
58 checkConcept<Graph, ListGraph >();
59 checkConcept<AlterableGraphComponent<>, ListGraph>();
60 checkConcept<ExtendableGraphComponent<>, ListGraph>();
61 checkConcept<ClearableGraphComponent<>, ListGraph>();
62 checkConcept<ErasableGraphComponent<>, ListGraph>();
64 checkGraph<ListGraph>();
65 checkGraphNodeMap<ListGraph>();
66 checkGraphEdgeMap<ListGraph>();
68 { // checking smart graph
69 checkConcept<Graph, SmartGraph >();
71 checkGraph<SmartGraph>();
72 checkGraphNodeMap<SmartGraph>();
73 checkGraphEdgeMap<SmartGraph>();
75 { // checking full graph
76 checkConcept<Graph, FullGraph >();
78 { // checking full graph
79 checkConcept<Graph, HyperCubeGraph >();
82 std::cout << __FILE__ ": All tests passed.\n";