# HG changeset patch # User marci # Date 1085137050 0 # Node ID a9878222d5c8edc8d8e99ad8efb14b955e9cdcf1 # Parent 8fd8933312986945ebbe03b4085284b8cfeb3222 bug correction in BidirGraphWrapper default constructor diff -r 8fd893331298 -r a9878222d5c8 src/hugo/graph_wrapper.h --- a/src/hugo/graph_wrapper.h Fri May 21 10:18:30 2004 +0000 +++ b/src/hugo/graph_wrapper.h Fri May 21 10:57:30 2004 +0000 @@ -992,7 +992,10 @@ //const CapacityMap* capacity; //FlowMap* flow; - BidirGraphWrapper() : Parent(), cm(true) { } + BidirGraphWrapper() : Parent(), cm(true) { + Parent::setForwardFilterMap(cm); + Parent::setBackwardFilterMap(cm); + } // void setCapacityMap(const CapacityMap& _capacity) { // capacity=&_capacity; // }