diff -r dceba191c00d -r fb1c7da561ce tools/dimacs-solver.cc --- a/tools/dimacs-solver.cc Fri Aug 09 11:28:17 2013 +0200 +++ b/tools/dimacs-solver.cc Fri Aug 09 11:29:40 2013 +0200 @@ -127,7 +127,8 @@ typename MCF::ProblemType res = ns.run(); if (report) { std::cerr << "Run NetworkSimplex: " << ti << "\n\n"; - std::cerr << "Feasible flow: " << (res == MCF::OPTIMAL ? "found" : "not found") << '\n'; + std::cerr << "Feasible flow: " << (res == MCF::OPTIMAL ? "found" : + "not found") << '\n'; if (res) std::cerr << "Min flow cost: " << ns.template totalCost() << '\n'; }