//! This module contains types, traits and algorithms that are used by multiple solvers.
//! In particular, it contains the [`Neighborhood`] trait, which is used to define the neighborhood
//! of a solution, and the [`FunctionBetweenSteps`] type, which is used to define the function
//! that is executed between steps of the solver.
pub use default_function_between_steps;
pub use FunctionBetweenSteps;
pub use Neighborhood;
pub use ParallelNeighborhood;