Coverage for maze_dataset/generation/__init__.py: 0%
2 statements
« prev ^ index » next coverage.py v7.6.12, created at 2025-03-24 00:33 -0600
« prev ^ index » next coverage.py v7.6.12, created at 2025-03-24 00:33 -0600
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 "seed",
19 # imports
20 "LatticeMazeGenerators",
21 "GENERATORS_MAP",
22 "get_maze_with_solution",
23 "numpy_rng",
24]