[Lemon-commits] deba: r3327 - lemon/trunk/lemon
Lemon SVN
svn at lemon.cs.elte.hu
Tue Oct 2 16:20:04 CEST 2007
Author: deba
Date: Tue Oct 2 16:20:04 2007
New Revision: 3327
Modified:
lemon/trunk/lemon/csp.h
Log:
Removing other occurences of cnt
Modified: lemon/trunk/lemon/csp.h
==============================================================================
--- lemon/trunk/lemon/csp.h (original)
+++ lemon/trunk/lemon/csp.h Tue Oct 2 16:20:04 2007
@@ -134,7 +134,6 @@
{
Dijkstra<Graph,CM> dij(_g,_cost);
dij.run(s,t);
- cnt++;
if(!dij.reached(t)) return Path();
p=dij.path(t);
cp=cost(p);
@@ -144,7 +143,6 @@
{
Dijkstra<Graph,DM> dij(_g,_delay);
dij.run(s,t);
- cnt++;
q=dij.path(t);
cq=cost(q);
dq=delay(q);
@@ -154,7 +152,6 @@
lambda=(cp-cq)/(dq-dp);
_co_map.lambda(lambda);
_dij.run(s,t);
- cnt++;
r=_dij.path(t);
cr=cost(r);
dr=delay(r);
More information about the Lemon-commits
mailing list