[Lemon-commits] [lemon_svn] deba: r1878 - in hugo/trunk/src: demo lemon

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


Author: deba
Date: Wed May 11 15:48:39 2005
New Revision: 1878

Modified:
   hugo/trunk/src/demo/min_route.cc
   hugo/trunk/src/lemon/graph_writer.h

Log:
Bug fixes.



Modified: hugo/trunk/src/demo/min_route.cc
==============================================================================
--- hugo/trunk/src/demo/min_route.cc	(original)
+++ hugo/trunk/src/demo/min_route.cc	Wed May 11 15:48:39 2005
@@ -92,7 +92,6 @@
     std::cout << dijkstra.dist(target) << std::endl;
     std::cout << timer << std::endl;
   }
-
   {
     Timer timer;
     typedef PotentialMap<CoordMap> Potential;

Modified: hugo/trunk/src/lemon/graph_writer.h
==============================================================================
--- hugo/trunk/src/lemon/graph_writer.h	(original)
+++ hugo/trunk/src/lemon/graph_writer.h	Wed May 11 15:48:39 2005
@@ -124,8 +124,8 @@
     GraphWriter(const std::string& _filename, const Graph& _graph) 
       : writer(new LemonWriter(_filename)), own_writer(true), 
 	graph(_graph),
-	nodeset_writer(*writer, graph, std::string(), skipper),
-	edgeset_writer(*writer, graph, nodeset_writer, std::string(), skipper),
+	nodeset_writer(*writer, graph, std::string()),
+	edgeset_writer(*writer, graph, nodeset_writer, std::string()),
 	node_writer(*writer, nodeset_writer, std::string()),
 	edge_writer(*writer, edgeset_writer, std::string()),
 	attribute_writer(*writer, std::string()) {}



More information about the Lemon-commits mailing list