[Lemon-commits] [lemon_svn] marci: r392 - hugo/trunk/src/work/jacint
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:39:11 CET 2006
Author: marci
Date: Fri Apr 2 20:31:19 2004
New Revision: 392
Modified:
hugo/trunk/src/work/jacint/preflow.h
Log:
const Graph&, const CapMap& in preflow constructor
Modified: hugo/trunk/src/work/jacint/preflow.h
==============================================================================
--- hugo/trunk/src/work/jacint/preflow.h (original)
+++ hugo/trunk/src/work/jacint/preflow.h Fri Apr 2 20:31:19 2004
@@ -61,7 +61,8 @@
T value;
public:
- Preflow(Graph& _G, Node _s, Node _t, CapMap& _capacity, FlowMap& _flow ) :
+ Preflow(const Graph& _G, Node _s, Node _t, const CapMap& _capacity,
+ FlowMap& _flow ) :
G(_G), s(_s), t(_t), flow(_flow), capacity(_capacity) {}
More information about the Lemon-commits
mailing list