Maze Builder Docs 6.0.1
Loading...
Searching...
No Matches
mazes::algo_interface Class Referenceabstract

Interface for the maze generation algorithms. More...

#include <algo_interface.h>

Inheritance diagram for mazes::algo_interface:
[legend]

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.
 

Detailed Description

Interface for the maze generation algorithms.

This interface provides a method for generating a maze

Member Function Documentation

◆ run()

virtual bool mazes::algo_interface::run ( const std::unique_ptr< grid_interface > & g,
const std::function< int(int, int)> & get_int,
const std::mt19937 & rng ) const
pure virtualnoexcept

Interface method that algorithms implement to generate a maze.

Parameters
g
get_int
rng
Returns

Implemented in mazes::binary_tree, mazes::dfs, and mazes::sidewinder.


The documentation for this class was generated from the following file: