1#ifndef ALGO_INTERFACE_H
2#define ALGO_INTERFACE_H
25 virtual bool run(std::unique_ptr<grid_interface>
const& g,
randomizer& rng)
const noexcept = 0;
Interface for runnable algorithms.
Definition algo_interface.h:18
virtual bool run(std::unique_ptr< grid_interface > const &g, randomizer &rng) const noexcept=0
Interface method that algorithms must implement.
Interface for the grid class.
Definition grid_interface.h:18
Provides random-number generating capabilities.
Definition randomizer.h:15
Namespace for the maze builder.
Definition algo_interface.h:9