Coverage for maze_dataset\generation\__init__.py: 0%
2 statements
« prev ^ index » next coverage.py v7.6.12, created at 2025-02-23 12:49 -0700
« prev ^ index » next coverage.py v7.6.12, created at 2025-02-23 12:49 -0700
1"""generation functions have signature `(grid_shape: Coord, **kwargs) -> LatticeMaze` and are methods in `LatticeMazeGenerators`
3`DEFAULT_GENERATORS` is a list of generator name, generator kwargs pairs used in tests and demos
5"""
7from maze_dataset.generation.generators import (
8 GENERATORS_MAP,
9 LatticeMazeGenerators,
10 get_maze_with_solution,
11 numpy_rng,
12)
14__all__ = [
15 # submodules
16 "default_generators",
17 "generators",
18 # imports
19 "LatticeMazeGenerators",
20 "GENERATORS_MAP",
21 "get_maze_with_solution",
22 "numpy_rng",
23]