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
@@ -2,7 +2,7 @@ from abc import ABC, abstractmethod
from typing import Generator, Any from typing import Generator, Any
import numpy as np import numpy as np
from numpy.typing import NDArray from numpy.typing import NDArray
from .Cell import Cell from mazegen import Cell
import math import math
import random import random
+1 -1
View File
@@ -1,4 +1,4 @@
from amaz_lib.Cell import Cell from mazegen import Cell
def test_cell_setter_getter() -> None: def test_cell_setter_getter() -> None:
+2 -2
View File
@@ -1,5 +1,5 @@
from amaz_lib.MazeGenerator import DepthFirstSearch from mazegen import DepthFirstSearch
from amaz_lib.Cell import Cell from mazegen import Cell
import numpy as np import numpy as np
+2 -2
View File
@@ -1,6 +1,6 @@
import numpy import numpy
from amaz_lib.Cell import Cell from mazegen import Cell
from amaz_lib.Maze import Maze from mazegen import Maze
def test_maze_setter_getter() -> None: def test_maze_setter_getter() -> None:
+1 -1
View File
@@ -1,5 +1,5 @@
import numpy import numpy
from amaz_lib.MazeGenerator import DepthFirstSearch from mazegen import DepthFirstSearch
class TestMazeGenerator: class TestMazeGenerator:
+2 -2
View File
@@ -1,6 +1,6 @@
from amaz_lib.Cell import Cell from mazegen import Cell
import numpy as np import numpy as np
from amaz_lib import AStar, Maze from mazegen import AStar, Maze
def test_solver() -> None: def test_solver() -> None: