[Lemon-commits] [lemon_svn] athos: r687 - hugo/trunk/src/work/marci

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


Author: athos
Date: Tue May  4 13:20:16 2004
New Revision: 687

Modified:
   hugo/trunk/src/work/marci/preflow_demo_athos.cc

Log:
Nothing special.

Modified: hugo/trunk/src/work/marci/preflow_demo_athos.cc
==============================================================================
--- hugo/trunk/src/work/marci/preflow_demo_athos.cc	(original)
+++ hugo/trunk/src/work/marci/preflow_demo_athos.cc	Tue May  4 13:20:16 2004
@@ -1,8 +1,8 @@
 #include <iostream>
 #include <fstream>
 
-#include <list_graph.hh>
-#include <dimacs.hh>
+#include <list_graph.h>
+#include <dimacs.h>
 #include <preflow_push.hh>
 #include <time_measure.h>
 
@@ -11,11 +11,11 @@
 // Use a DIMACS max flow file as stdin.
 // read_dimacs_demo < dimacs_max_flow_file
 int main(int, char **) {
-  typedef ListGraph::NodeIt NodeIt;
-  typedef ListGraph::EachEdgeIt EachEdgeIt;
+  typedef ListGraph::Node Node;
+  //typedef ListGraph::EachEdgeIt EachEdgeIt;
 
   ListGraph G;
-  NodeIt s, t;
+  Node s, t;
   ListGraph::EdgeMap<int> cap(G);
   readDimacsMaxFlow(std::cin, G, s, t, cap);
 



More information about the Lemon-commits mailing list