src/test/graph_wrapper_test.cc
author klao
Fri, 05 Nov 2004 00:31:49 +0000
changeset 962 1a770e9f80b2
parent 946 c94ef40a22ce
child 970 09f9abe22df2
permissions -rw-r--r--
Undirect graph implementation.
Not yet done, untested.
alpar@906
     1
/* -*- C++ -*-
alpar@921
     2
 * src/test/graph_wrapper_test.cc - Part of LEMON, a generic C++ optimization library
alpar@906
     3
 *
alpar@906
     4
 * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
alpar@906
     5
 * (Egervary Combinatorial Optimization Research Group, EGRES).
alpar@906
     6
 *
alpar@906
     7
 * Permission to use, modify and distribute this software is granted
alpar@906
     8
 * provided that this copyright notice appears in all copies. For
alpar@906
     9
 * precise terms see the accompanying LICENSE file.
alpar@906
    10
 *
alpar@906
    11
 * This software is provided "AS IS" with no warranty of any kind,
alpar@906
    12
 * express or implied, and with no claim as to its suitability for any
alpar@906
    13
 * purpose.
alpar@906
    14
 *
alpar@906
    15
 */
alpar@906
    16
marci@849
    17
#include<iostream>
klao@946
    18
#include<lemon/concept_check.h>
klao@946
    19
alpar@921
    20
#include<lemon/smart_graph.h>
klao@959
    21
#include<lemon/concept/graph.h>
klao@946
    22
alpar@921
    23
#include<lemon/list_graph.h>
alpar@921
    24
#include<lemon/full_graph.h>
alpar@921
    25
#include<lemon/graph_wrapper.h>
marci@849
    26
marci@870
    27
#include"test/test_tools.h"
marci@870
    28
#include"test/graph_test.h"
marci@849
    29
marci@849
    30
/**
marci@849
    31
\file
alpar@878
    32
This test makes consistency checks of graph wrappers.
marci@849
    33
alpar@878
    34
\todo More extensive tests are needed 
marci@849
    35
*/
marci@849
    36
alpar@921
    37
using namespace lemon;
klao@959
    38
using namespace lemon::concept;
marci@849
    39
marci@849
    40
marci@849
    41
typedef SmartGraph Graph;
deba@891
    42
marci@849
    43
marci@849
    44
int main() 
marci@849
    45
{
klao@946
    46
  {
klao@946
    47
    function_requires<StaticGraphConcept<GraphWrapper<Graph> > >();
klao@946
    48
klao@946
    49
    function_requires<StaticGraphConcept<RevGraphWrapper<Graph> > >();
klao@946
    50
klao@946
    51
    function_requires<StaticGraphConcept<SubGraphWrapper<Graph, Graph::NodeMap<bool> , Graph::EdgeMap<bool> > > >();
klao@946
    52
    function_requires<StaticGraphConcept<NodeSubGraphWrapper<Graph, Graph::NodeMap<bool> > > >();
klao@946
    53
    function_requires<StaticGraphConcept<EdgeSubGraphWrapper<Graph, Graph::EdgeMap<bool> > > >();
klao@946
    54
klao@946
    55
    function_requires<StaticGraphConcept<SubBidirGraphWrapper<Graph, Graph::EdgeMap<bool>, Graph::EdgeMap<bool> > > > ();
klao@946
    56
klao@946
    57
    function_requires<StaticGraphConcept<BidirGraph<Graph> > >();
klao@946
    58
klao@946
    59
    function_requires<StaticGraphConcept<ResGraphWrapper<Graph, int, Graph::EdgeMap<int>, Graph::EdgeMap<int> > > >();
klao@946
    60
klao@946
    61
    function_requires<StaticGraphConcept<ErasingFirstGraphWrapper<Graph, Graph::NodeMap<Graph::Edge> > > >();
klao@946
    62
  }
marci@849
    63
  std::cout << __FILE__ ": All tests passed.\n";
marci@849
    64
marci@849
    65
  return 0;
marci@849
    66
}