Merge: new `with` statement
[nit.git] / lib / ai / examples / puzzle.nit
index 782fee6..0583035 100644 (file)
@@ -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
@@ -276,7 +276,6 @@ for arg in args do
                continue
        end
 
-       var c = new Clock
        var s = pb.astar
        s.memorize = true
        var r = s.run
@@ -285,6 +284,6 @@ for arg in args do
                break
        end
 
-       print "Solved, after looking at {r.steps} positions during {c.lapse}"
+       print "Solved, after looking at {r.steps} positions"
        pb.print_plan(r.plan)
 end