From: Jean Privat Date: Sat, 4 Apr 2015 21:43:32 +0000 (+0700) Subject: lib/ai: remove randomness in puzzle so benches can compare sanely X-Git-Tag: v0.7.4~39^2 X-Git-Url: http://nitlanguage.org lib/ai: remove randomness in puzzle so benches can compare sanely Signed-off-by: Jean Privat --- diff --git a/lib/ai/examples/puzzle.nit b/lib/ai/examples/puzzle.nit index 83c4b4c..0583035 100644 --- a/lib/ai/examples/puzzle.nit +++ b/lib/ai/examples/puzzle.nit @@ -103,7 +103,7 @@ class PuzzleProblem if x < width-1 then res.add(1) if y >= 1 then res.add(-width) if y < width-1 then res.add(width) - return res.as_random.take_all + return res end # Return the state where the tile at hole+action has moved