[Lemon-commits] [lemon_svn] alpar: r2974 - in hugo/trunk: benchmark demo
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 21:51:34 CET 2006
Author: alpar
Date: Thu Oct 5 12:18:58 2006
New Revision: 2974
Modified:
hugo/trunk/benchmark/swap_bipartite_bench.cc
hugo/trunk/demo/topological_ordering.cc
Log:
Fix a bug and two warnings
Modified: hugo/trunk/benchmark/swap_bipartite_bench.cc
==============================================================================
--- hugo/trunk/benchmark/swap_bipartite_bench.cc (original)
+++ hugo/trunk/benchmark/swap_bipartite_bench.cc Thu Oct 5 12:18:58 2006
@@ -8,7 +8,6 @@
#include <lemon/bipartite_matching.h>
#include <lemon/graph_utils.h>
-#include <lemon/xy.h>
#include <lemon/graph_to_eps.h>
#include <lemon/time_measure.h>
Modified: hugo/trunk/demo/topological_ordering.cc
==============================================================================
--- hugo/trunk/demo/topological_ordering.cc (original)
+++ hugo/trunk/demo/topological_ordering.cc Thu Oct 5 12:18:58 2006
@@ -42,7 +42,7 @@
OrderedList order;
- SerializingWriteMap( const GR& gr ) {}
+ SerializingWriteMap( const GR& ) {}
void set( const Key& k, const Value& v ) {
if( v ) order.push_front(k);
@@ -54,7 +54,7 @@
};
-int main( int argc, char *argv[] )
+int main()
{
std::cout << "Topological Ordering demo" << std::endl;
More information about the Lemon-commits
mailing list