diff -r 2f00ef323c2e -r 08f2dc76e82e lemon/edmonds_karp.h --- a/lemon/edmonds_karp.h Thu Feb 28 18:05:56 2013 +0100 +++ b/lemon/edmonds_karp.h Thu Feb 28 18:13:48 2013 +0100 @@ -311,7 +311,7 @@ /// and the target, the incoming flow should be equal to the /// outgoing flow. template - void flowInit(const FlowMap& flowMap) { + void init(const FlowMap& flowMap) { createStructures(); for (ArcIt e(_graph); e != INVALID; ++e) { _flow->set(e, flowMap[e]); @@ -335,7 +335,7 @@ /// \return \c false when the given \c flowMap does not contain a /// feasible flow. template - bool checkedFlowInit(const FlowMap& flowMap) { + bool checkedInit(const FlowMap& flowMap) { createStructures(); for (ArcIt e(_graph); e != INVALID; ++e) { _flow->set(e, flowMap[e]);