bug correction in BidirGraphWrapper<Graph> default constructor
authormarci
Fri, 21 May 2004 10:57:30 +0000
changeset 655a9878222d5c8
parent 654 8fd893331298
child 656 9971eb8bfbe8
bug correction in BidirGraphWrapper<Graph> default constructor
src/hugo/graph_wrapper.h
     1.1 --- a/src/hugo/graph_wrapper.h	Fri May 21 10:18:30 2004 +0000
     1.2 +++ b/src/hugo/graph_wrapper.h	Fri May 21 10:57:30 2004 +0000
     1.3 @@ -992,7 +992,10 @@
     1.4      //const CapacityMap* capacity;
     1.5      //FlowMap* flow;
     1.6  
     1.7 -    BidirGraphWrapper() : Parent(), cm(true) { }
     1.8 +    BidirGraphWrapper() : Parent(), cm(true) { 
     1.9 +      Parent::setForwardFilterMap(cm);
    1.10 +      Parent::setBackwardFilterMap(cm);
    1.11 +    }
    1.12  //     void setCapacityMap(const CapacityMap& _capacity) {
    1.13  //       capacity=&_capacity;
    1.14  //     }