test/suurballe_test.cc
changeset 857 abb95d48e89e
parent 854 9a7e4e606f83
child 858 9f6ed854d409
     1.1 --- a/test/suurballe_test.cc	Wed Mar 03 17:14:17 2010 +0000
     1.2 +++ b/test/suurballe_test.cc	Fri Oct 16 09:35:46 2009 +0200
     1.3 @@ -23,6 +23,7 @@
     1.4  #include <lemon/path.h>
     1.5  #include <lemon/suurballe.h>
     1.6  #include <lemon/concepts/digraph.h>
     1.7 +#include <lemon/concepts/heap.h>
     1.8  
     1.9  #include "test_tools.h"
    1.10  
    1.11 @@ -81,7 +82,13 @@
    1.12    typedef Digraph::Arc Arc;
    1.13    typedef concepts::ReadMap<Arc, VType> LengthMap;
    1.14    
    1.15 -  typedef Suurballe<Digraph, LengthMap> SuurballeType;
    1.16 +  typedef Suurballe<Digraph, LengthMap> ST;
    1.17 +  typedef Suurballe<Digraph, LengthMap>
    1.18 +    ::SetFlowMap<ST::FlowMap>
    1.19 +    ::SetPotentialMap<ST::PotentialMap>
    1.20 +    ::SetPath<SimplePath<Digraph> >
    1.21 +    ::SetHeap<concepts::Heap<VType, Digraph::NodeMap<int> > >
    1.22 +    ::Create SuurballeType;
    1.23  
    1.24    Digraph g;
    1.25    Node n;