use crate::{Builder, Float, Vector};
use rand::Rng;
use std::fmt::Debug;
pub use self::bridson::Bridson;
pub use self::ebeida::Ebeida;
mod bridson;
mod ebeida;
pub trait Creator<F, V>: Copy + Debug
where
F: Float,
V: Vector<F>,
{
type Algo: Algorithm<F, V>;
fn create(_: &Builder<F, V>) -> Self::Algo;
}
pub trait Algorithm<F, V>
where
F: Float,
V: Vector<F>,
{
fn next<R>(&mut self, _: &mut Builder<F, V>, _: &mut R) -> Option<V>
where
R: Rng;
fn size_hint(&self, _: &Builder<F, V>) -> (usize, Option<usize>);
fn restrict(&mut self, _: V);
fn stays_legal(&self, _: &Builder<F, V>, _: V) -> bool;
}