[Lemon-commits] [lemon_svn] marci: r733 - in hugo/trunk/src: hugo work/marci

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


Author: marci
Date: Thu May  6 20:07:45 2004
New Revision: 733

Modified:
   hugo/trunk/src/hugo/graph_wrapper.h
   hugo/trunk/src/work/marci/bfs_iterator.h

Log:


Modified: hugo/trunk/src/hugo/graph_wrapper.h
==============================================================================
--- hugo/trunk/src/hugo/graph_wrapper.h	(original)
+++ hugo/trunk/src/hugo/graph_wrapper.h	Thu May  6 20:07:45 2004
@@ -569,8 +569,8 @@
 
     ResGraphWrapper() : GraphWrapper<Graph>(0), 
 			capacity(0), flow(0) { }
-    void setCapacityMap(const CapacityMap& _capacity_map) {
-      capacity_map=&_capacity_map;
+    void setCapacityMap(const CapacityMap& _capacity) {
+      capacity=&_capacity;
     }
     void setFlowMap(FlowMap& _flow) {
       flow=&_flow;

Modified: hugo/trunk/src/work/marci/bfs_iterator.h
==============================================================================
--- hugo/trunk/src/work/marci/bfs_iterator.h	(original)
+++ hugo/trunk/src/work/marci/bfs_iterator.h	Thu May  6 20:07:45 2004
@@ -6,6 +6,8 @@
 #include <stack>
 #include <utility>
 
+#include <hugo/invalid.h>
+
 namespace hugo {
 
   template <typename Graph, /*typename OutEdgeIt,*/ 



More information about the Lemon-commits mailing list