diff --git a/a_maze_ing.py b/a_maze_ing.py index 0f7c8b8..443aaa9 100644 --- a/a_maze_ing.py +++ b/a_maze_ing.py @@ -483,7 +483,7 @@ def main() -> None: """Run the maze application.""" mlx = None try: - mlx = MazeMLX(1000, 1000) + mlx = MazeMLX(1600, 2000) config = Parsing.get_data_maze("config.txt") amazing = AMazeIng(**config) mlx.start(amazing) diff --git a/config.txt b/config.txt index ba166ff..ce8fe2e 100644 --- a/config.txt +++ b/config.txt @@ -1,5 +1,5 @@ -WIDTH=15 -HEIGHT=15 +WIDTH=100 +HEIGHT=100 ENTRY=1,1 EXIT=5,7 OUTPUT_FILE=con diff --git a/mazegen-1.0.0-py3-none-any.whl b/mazegen-1.0.0-py3-none-any.whl deleted file mode 100644 index ed5646d..0000000 Binary files a/mazegen-1.0.0-py3-none-any.whl and /dev/null differ diff --git a/src/AMazeIng.py b/src/AMazeIng.py index 97dabc0..0a1206c 100644 --- a/src/AMazeIng.py +++ b/src/AMazeIng.py @@ -12,8 +12,8 @@ class AMazeIng(BaseModel): model_config = ConfigDict(arbitrary_types_allowed=True) - width: int = Field(ge=4) - height: int = Field(ge=4) + width: int = Field(ge=4, le=100) + height: int = Field(ge=4, le=100) entry: tuple[int, int] exit: tuple[int, int] output_file: str = Field(min_length=3)