diff -r 6a8a688eacf6 -r 2f00ef323c2e lemon/edmonds_karp.h --- a/lemon/edmonds_karp.h Thu Feb 28 18:17:53 2013 +0100 +++ b/lemon/edmonds_karp.h Thu Feb 28 18:05:56 2013 +0100 @@ -172,7 +172,7 @@ ///@{ template - struct DefFlowMapTraits : public Traits { + struct SetFlowMapTraits : public Traits { typedef T FlowMap; static FlowMap *createFlowMap(const Digraph&) { LEMON_ASSERT(false, "FlowMap is not initialized"); @@ -186,10 +186,9 @@ /// \ref named-templ-param "Named parameter" for setting FlowMap /// type template - struct DefFlowMap - : public EdmondsKarp > { - typedef EdmondsKarp > - Create; + struct SetFlowMap + : public EdmondsKarp > { + typedef EdmondsKarp > Create; }; /// @}