3 #include <lemon/undir_graph_extender.h>
4 #include <lemon/concept/undir_graph.h>
5 #include <lemon/list_graph.h>
6 #include <lemon/smart_graph.h>
7 #include <lemon/full_graph.h>
9 #include "test_tools.h"
12 using namespace lemon;
13 using namespace lemon::concept;
17 typedef UndirGraphExtender<ListGraphBase> UndirListGraphBase;
19 function_requires< BaseIterableUndirGraphConcept<UndirListGraphBase> >();
21 typedef IterableUndirGraphExtender<
22 AlterableUndirGraphExtender<UndirListGraphBase> > IterableUndirListGraph;
24 function_requires< IterableUndirGraphConcept<IterableUndirListGraph> >();