Maze Builder Docs 6.0.1
|
Depth-first search algorithm for generating mazes. More...
#include <dfs.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 override |
Run the depth-first search algorithm. | |
![]() |
Depth-first search algorithm for generating mazes.
Also-known-as the recursive backtracker algorithm
This algorithm is used to generate mazes by visiting each cell in the grid and carving a path to the next cell
|
overridevirtualnoexcept |
Run the depth-first search algorithm.
g | |
get_int | |
rng |
Implements mazes::algo_interface.