diff -r 18c08f9129e4 -r 7bf1f64962c2 lemon/preflow.h --- a/lemon/preflow.h Mon Apr 03 16:03:37 2006 +0000 +++ b/lemon/preflow.h Mon Apr 03 16:05:26 2006 +0000 @@ -159,16 +159,16 @@ ///Except the graph, all of these parameters can be reset by ///calling \ref source, \ref target, \ref capacityMap and \ref ///flowMap, resp. - Preflow(const Graph& _gr, Node _s, Node _t, - const CapacityMap& _cap, FlowMap& _f, - const Tolerance &_sr=Tolerance()) : + Preflow(const Graph& _gr, Node _s, Node _t, + const CapacityMap& _cap, FlowMap& _f, + const Tolerance &_sr=Tolerance()) : _g(&_gr), _source(_s), _target(_t), _capacity(&_cap), _flow(&_f), _surely(_sr), _node_num(countNodes(_gr)), level(_gr), excess(_gr,0), flow_prop(NO_FLOW), status(AFTER_NOTHING) { if ( _source==_target ) throw InvalidArgument(); - } + } ///Give a reference to the tolerance handler class