doing again the wheel

This commit is contained in:
maoake
2026-04-01 22:41:11 +02:00
parent 2edf61affa
commit 3e85cbe919
6 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
from amaz_lib.Cell import Cell
from mazegen import Cell
def test_cell_setter_getter() -> None:
+2 -2
View File
@@ -1,5 +1,5 @@
from amaz_lib.MazeGenerator import DepthFirstSearch
from amaz_lib.Cell import Cell
from mazegen import DepthFirstSearch
from mazegen import Cell
import numpy as np
+2 -2
View File
@@ -1,6 +1,6 @@
import numpy
from amaz_lib.Cell import Cell
from amaz_lib.Maze import Maze
from mazegen import Cell
from mazegen import Maze
def test_maze_setter_getter() -> None:
+1 -1
View File
@@ -1,5 +1,5 @@
import numpy
from amaz_lib.MazeGenerator import DepthFirstSearch
from mazegen import DepthFirstSearch
class TestMazeGenerator:
+2 -2
View File
@@ -1,6 +1,6 @@
from amaz_lib.Cell import Cell
from mazegen import Cell
import numpy as np
from amaz_lib import AStar, Maze
from mazegen import AStar, Maze
def test_solver() -> None: