Coverage for maze_dataset/generation/__init__.py: 0%

2 statements  

« prev     ^ index     » next       coverage.py v7.6.12, created at 2025-04-09 12:48 -0600

1"""generation functions have signature `(grid_shape: Coord, **kwargs) -> LatticeMaze` and are methods in `LatticeMazeGenerators` 

2 

3`DEFAULT_GENERATORS` is a list of generator name, generator kwargs pairs used in tests and demos 

4""" 

5 

6from maze_dataset.generation.generators import ( 

7 GENERATORS_MAP, 

8 LatticeMazeGenerators, 

9 get_maze_with_solution, 

10 numpy_rng, 

11) 

12 

13__all__ = [ 

14 # submodules 

15 "default_generators", 

16 "generators", 

17 "seed", 

18 # imports 

19 "LatticeMazeGenerators", 

20 "GENERATORS_MAP", 

21 "get_maze_with_solution", 

22 "numpy_rng", 

23]