From 635bc9c17b0d35e9cf8029cf24aee8d3594a143f Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Sun, 2 Jan 2011 17:40:25 +0000 Subject: Misc uninteresting tidbits to take some weight ... Misc uninteresting tidbits to take some weight off overly large patches in progress. No review. --- test/files/run/Course-2002-05.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/files/run/Course-2002-05.scala') diff --git a/test/files/run/Course-2002-05.scala b/test/files/run/Course-2002-05.scala index a1d71e2818..e6764b92c8 100644 --- a/test/files/run/Course-2002-05.scala +++ b/test/files/run/Course-2002-05.scala @@ -178,9 +178,9 @@ object M4 { isSafe(col, p.tail, delta + 1))); for ( - val placement <- placeQueens(row - 1); - val col <- columns; - isSafe(col, placement, 1) + placement <- placeQueens(row - 1); + col <- columns; + if isSafe(col, placement, 1) ) yield { col :: placement } -- cgit v1.2.3