1
 2
 3
 4
 5
 6
 7
 8
 9
10
//! The `reinsertion` module provides implementations of the
//! `operator::ReinsertionOp` for basic strategies of reinsertion.
//!
//! The provided implementations of the `operator:ReinsertionOp` are:
//! * `random::UniformReinserter`
//! * `elitist::ElitistReinserter`

pub mod random;

pub mod elitist;