Update.
[picoclvr.git] / maze.py
diff --git a/maze.py b/maze.py
index fd0a1d2..c2774dd 100755 (executable)
--- a/maze.py
+++ b/maze.py
@@ -13,6 +13,8 @@ v_empty, v_wall, v_start, v_goal, v_path = 0, 1, 2, 3, 4
 
 
 def create_maze(h=11, w=17, nb_walls=8):
+    assert h % 2 == 1 and w % 2 == 1
+
     a, k = 0, 0
 
     while k < nb_walls:
@@ -285,7 +287,7 @@ def save_image(
         )
         imgs = torch.cat((imgs, c_score_paths.unsqueeze(1)), 1)
 
-    img = torch.tensor([224, 224, 224]).view(1, -1, 1, 1)
+    img = torch.tensor([255, 255, 0]).view(1, -1, 1, 1)
 
     # NxKxCxHxW
     if path_optimal is not None: