Index: lemon/edmonds_karp.h
===================================================================
--- lemon/edmonds_karp.h	(revision 1058)
+++ lemon/edmonds_karp.h	(revision 1059)
@@ -312,5 +312,5 @@
     /// outgoing flow.
     template <typename FlowMap>
-    void flowInit(const FlowMap& flowMap) {
+    void init(const FlowMap& flowMap) {
       createStructures();
       for (ArcIt e(_graph); e != INVALID; ++e) {
@@ -336,5 +336,5 @@
     /// feasible flow.
     template <typename FlowMap>
-    bool checkedFlowInit(const FlowMap& flowMap) {
+    bool checkedInit(const FlowMap& flowMap) {
       createStructures();
       for (ArcIt e(_graph); e != INVALID; ++e) {
Index: test/edmonds_karp_test.cc
===================================================================
--- test/edmonds_karp_test.cc	(revision 1058)
+++ test/edmonds_karp_test.cc	(revision 1059)
@@ -187,5 +187,5 @@
 
   for(ArcIt e(g); e!=INVALID; ++e) cap[e]=2*cap[e];
-  ek_test.flowInit(flow);
+  ek_test.init(flow);
   ek_test.start();
 
