[Lemon-commits] [lemon_svn] alpar: r1085 - hugo/trunk/src/test
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:43:10 CET 2006
Author: alpar
Date: Thu Sep 2 19:30:06 2004
New Revision: 1085
Modified:
hugo/trunk/src/test/minlengthpaths_test.cc
Log:
Formatting: breaking long lines.
Modified: hugo/trunk/src/test/minlengthpaths_test.cc
==============================================================================
--- hugo/trunk/src/test/minlengthpaths_test.cc (original)
+++ hugo/trunk/src/test/minlengthpaths_test.cc Thu Sep 2 19:30:06 2004
@@ -58,9 +58,11 @@
MinLengthPaths< ListGraph, ListGraph::EdgeMap<int> >
surb_test(graph, length);
- check( surb_test.run(s,t,k) == 2 && surb_test.totalLength() == 46,"Two paths, total length should be 46");
+ check( surb_test.run(s,t,k) == 2 && surb_test.totalLength() == 46,
+ "Two paths, total length should be 46");
- check( surb_test.checkComplementarySlackness(), "Complementary slackness conditions are not met.");
+ check( surb_test.checkComplementarySlackness(),
+ "Complementary slackness conditions are not met.");
// typedef DirPath<ListGraph> DPath;
// DPath P(graph);
@@ -75,9 +77,11 @@
*/
k=1;
- check( surb_test.run(s,t,k) == 1 && surb_test.totalLength() == 19,"One path, total length should be 19");
+ check( surb_test.run(s,t,k) == 1 && surb_test.totalLength() == 19,
+ "One path, total length should be 19");
- check( surb_test.checkComplementarySlackness(), "Complementary slackness conditions are not met.");
+ check( surb_test.checkComplementarySlackness(),
+ "Complementary slackness conditions are not met.");
// surb_test.getPath(P,0);
// check(P.length() == 4, "First path should contain 4 edges.");
More information about the Lemon-commits
mailing list