need to fix my infinite while so i make a checkpoint if i need to restore it

This commit is contained in:
Maoake Teriierooiterai
2026-03-24 09:34:53 +01:00
parent f8f0e31598
commit 030c6142ba
3 changed files with 42 additions and 25 deletions
+6 -2
View File
@@ -1,6 +1,6 @@
import os
from numpy import ma
from src.amaz_lib import MazeGenerator
from src.amaz_lib import DepthFirstSearch
from src.amaz_lib import Maze
@@ -14,9 +14,13 @@ def main() -> None:
maze.export_maze("test.txt")
def main2() -> None:
DepthFirstSearch.generator(5, 5)
# except Exception as err:
# print(err)
if __name__ == "__main__":
main()
main2()