Maze Builder Docs 6.0.1
|
Interface for the maze generation algorithms. More...
#include <algo_interface.h>
Public Member Functions | |
virtual bool | run (const std::unique_ptr< grid_interface > &g, const std::function< int(int, int)> &get_int, const std::mt19937 &rng) const noexcept=0 |
Interface method that algorithms implement to generate a maze. | |
Interface for the maze generation algorithms.
This interface provides a method for generating a maze
|
pure virtualnoexcept |
Interface method that algorithms implement to generate a maze.
g | |
get_int | |
rng |
Implemented in mazes::binary_tree, mazes::dfs, and mazes::sidewinder.