[Lemon-commits] [lemon_svn] marci: r620 - hugo/trunk/src/work/jacint

Lemon SVN svn at lemon.cs.elte.hu
Mon Nov 6 20:40:37 CET 2006


Author: marci
Date: Thu Apr 29 12:51:58 2004
New Revision: 620

Modified:
   hugo/trunk/src/work/jacint/preflow.h

Log:
const-ok


Modified: hugo/trunk/src/work/jacint/preflow.h
==============================================================================
--- hugo/trunk/src/work/jacint/preflow.h	(original)
+++ hugo/trunk/src/work/jacint/preflow.h	Thu Apr 29 12:51:58 2004
@@ -379,7 +379,7 @@
 
   private:
 
-    int push(const Node w, VecStack& active) {
+    int push(Node w, VecStack& active) {
       
       int lev=level[w];
       Num exc=excess[w];
@@ -580,9 +580,9 @@
 
 
 
-    void relabel( const Node w, int newlevel, VecStack& active,  
-		  VecNode& level_list, NNMap& left, 
-		  NNMap& right, int& b, int& k, const bool what_heur ) {
+    void relabel(Node w, int newlevel, VecStack& active,  
+		 VecNode& level_list, NNMap& left, 
+		 NNMap& right, int& b, int& k, const bool what_heur ) {
 
       Num lev=level[w];	
       



More information about the Lemon-commits mailing list