pub trait LocalOperator {
    fn explore(
        &self,
        refinement_ctx: &RefinementContext,
        insertion_ctx: &InsertionContext
    ) -> Option<InsertionContext>; }
Expand description

Specifies behavior of a local search operator.

Required Methods

Applies local search operator to passed solution in order to explore possible small move in solution space which leads to a different solution.

Implementors