COIN-OR::LEMON - Graph Library

Changeset 2231:06faf3f06d67 in lemon-0.x for test/graph_adaptor_test.cc


Ignore:
Timestamp:
10/03/06 13:46:39 (18 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2973
Message:

Some rearrangement of concepts and extenders
BpUGraph concepts and concept check test

File:
1 edited

Legend:

Unmodified
Added
Removed
  • test/graph_adaptor_test.cc

    r2111 r2231  
    2323#include<lemon/concept/graph.h>
    2424#include<lemon/concept/ugraph.h>
     25#include<lemon/concept/bpugraph.h>
    2526
    2627#include<lemon/list_graph.h>
     
    2829#include<lemon/graph_adaptor.h>
    2930#include<lemon/ugraph_adaptor.h>
     31#include<lemon/bpugraph_adaptor.h>
    3032
    3133#include"test/test_tools.h"
     
    7678    checkConcept<Graph, DirUGraphAdaptor<UGraph,
    7779      UGraph::UEdgeMap<bool> > >();
     80
     81    checkConcept<BpUGraph, BpUGraphAdaptor<BpUGraph> >();
     82
     83    checkConcept<BpUGraph, SwapBpUGraphAdaptor<BpUGraph> >();
     84
    7885  }
    7986  std::cout << __FILE__ ": All tests passed.\n";
Note: See TracChangeset for help on using the changeset viewer.