pub trait HeuristicSolutionProcessing {
    type Solution: HeuristicSolution;

    // Required method
    fn post_process(&self, solution: Self::Solution) -> Self::Solution;
}
Expand description

Provides the way to modify solution before returning it.

Required Associated Types§

source

type Solution: HeuristicSolution

A solution type.

Required Methods§

source

fn post_process(&self, solution: Self::Solution) -> Self::Solution

Post processes solution.

Implementors§