Maze Builder Docs 6.0.1
Loading...
Searching...
No Matches
dfs.h
Go to the documentation of this file.
1#ifndef DFS_H
2#define DFS_H
3
5
6#include <functional>
7#include <memory>
8#include <random>
9
10namespace mazes {
11
12class grid_interface;
13
19class dfs : public algo_interface {
20 public:
26 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;
27};
28}
29
30#endif // DFS_H
Interface for the maze generation algorithms.
Definition algo_interface.h:18
Depth-first search algorithm for generating mazes.
Definition dfs.h:19
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.
Namespace for the maze builder.
Definition algo_interface.h:9