src/test/graph_wrapper_test.cc
author klao
Wed, 10 Nov 2004 20:14:32 +0000
changeset 977 48962802d168
parent 959 c80ef5912903
child 989 ca95f8b5c931
permissions -rw-r--r--
* enable_if imported from BOOST
* count{Nodes,Edges} implemented via graph tags
* some #include bugs fixed
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
marci@970
    49
//     function_requires<StaticGraphConcept<RevGraphWrapper<Graph> > >();
klao@946
    50
marci@970
    51
//     function_requires<StaticGraphConcept<SubGraphWrapper<Graph, Graph::NodeMap<bool> , Graph::EdgeMap<bool> > > >();
marci@970
    52
//     function_requires<StaticGraphConcept<NodeSubGraphWrapper<Graph, Graph::NodeMap<bool> > > >();
marci@970
    53
//     function_requires<StaticGraphConcept<EdgeSubGraphWrapper<Graph, Graph::EdgeMap<bool> > > >();
klao@946
    54
marci@970
    55
//     function_requires<StaticGraphConcept<SubBidirGraphWrapper<Graph, Graph::EdgeMap<bool>, Graph::EdgeMap<bool> > > > ();
klao@946
    56
marci@970
    57
//     function_requires<StaticGraphConcept<BidirGraph<Graph> > >();
klao@946
    58
marci@970
    59
//     function_requires<StaticGraphConcept<ResGraphWrapper<Graph, int, Graph::EdgeMap<int>, Graph::EdgeMap<int> > > >();
klao@946
    60
marci@970
    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
}