Struct vrp_core::solver::search::RandomJobRemoval
source · pub struct RandomJobRemoval { /* private fields */ }Expand description
A ruin strategy which removes random jobs from solution.
Implementations§
source§impl RandomJobRemoval
impl RandomJobRemoval
sourcepub fn new(limits: RemovalLimits) -> Self
pub fn new(limits: RemovalLimits) -> Self
Creates a new instance of RandomJobRemoval.
Trait Implementations§
source§impl Ruin for RandomJobRemoval
impl Ruin for RandomJobRemoval
source§fn run(
&self,
_: &RefinementContext,
insertion_ctx: InsertionContext
) -> InsertionContext
fn run( &self, _: &RefinementContext, insertion_ctx: InsertionContext ) -> InsertionContext
Ruins given solution and returns a new one with less jobs assigned.