COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/test/undir_graph_test.cc @ 970:09f9abe22df2

Last change on this file since 970:09f9abe22df2 was 962:1a770e9f80b2, checked in by Mihaly Barasz, 19 years ago

Undirect graph implementation.
Not yet done, untested.

File size: 633 bytes
RevLine 
[962]1// -*- C++ -*-
2
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>
8
9#include "test_tools.h"
10
11
12using namespace lemon;
13using namespace lemon::concept;
14
15
16int main() {
17  typedef UndirGraphExtender<ListGraphBase> UndirListGraphBase;
18
19  function_requires< BaseIterableUndirGraphConcept<UndirListGraphBase> >();
20
21  typedef IterableUndirGraphExtender<
22    AlterableUndirGraphExtender<UndirListGraphBase> > IterableUndirListGraph;
23
24  function_requires< IterableUndirGraphConcept<IterableUndirListGraph> >();
25
26  return 0;
27}
Note: See TracBrowser for help on using the repository browser.