lemon/edmonds_karp.h
changeset 1227 08f2dc76e82e
parent 1226 2f00ef323c2e
child 1228 45befc97b1bc
     1.1 --- a/lemon/edmonds_karp.h	Thu Feb 28 18:05:56 2013 +0100
     1.2 +++ b/lemon/edmonds_karp.h	Thu Feb 28 18:13:48 2013 +0100
     1.3 @@ -311,7 +311,7 @@
     1.4      /// and the target, the incoming flow should be equal to the
     1.5      /// outgoing flow.
     1.6      template <typename FlowMap>
     1.7 -    void flowInit(const FlowMap& flowMap) {
     1.8 +    void init(const FlowMap& flowMap) {
     1.9        createStructures();
    1.10        for (ArcIt e(_graph); e != INVALID; ++e) {
    1.11  	_flow->set(e, flowMap[e]);
    1.12 @@ -335,7 +335,7 @@
    1.13      /// \return \c false when the given \c flowMap does not contain a
    1.14      /// feasible flow.
    1.15      template <typename FlowMap>
    1.16 -    bool checkedFlowInit(const FlowMap& flowMap) {
    1.17 +    bool checkedInit(const FlowMap& flowMap) {
    1.18        createStructures();
    1.19        for (ArcIt e(_graph); e != INVALID; ++e) {
    1.20  	_flow->set(e, flowMap[e]);