diff -r f22bc76370b2 -r f1398882a928 test/preflow_test.cc --- a/test/preflow_test.cc Fri Aug 05 09:33:42 2011 +0200 +++ b/test/preflow_test.cc Mon Aug 08 12:36:16 2011 +0200 @@ -2,7 +2,7 @@ * * This file is a part of LEMON, a generic C++ optimization library. * - * Copyright (C) 2003-2009 + * Copyright (C) 2003-2011 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport * (Egervary Research Group on Combinatorial Optimization, EGRES). * @@ -113,7 +113,7 @@ const FlowMap& fm = const_preflow_test.flowMap(); b = const_preflow_test.minCut(n); const_preflow_test.minCutMap(cut); - + ignore_unused_variable_warning(fm); } @@ -154,7 +154,7 @@ void initFlowTest() { DIGRAPH_TYPEDEFS(SmartDigraph); - + SmartDigraph g; SmartDigraph::ArcMap cap(g),iflow(g); Node s=g.addNode(); Node t=g.addNode(); @@ -266,6 +266,6 @@ "The max flow value or the three min cut values are incorrect."); initFlowTest(); - + return 0; }