pub trait FeatureObjective: Objective {
    // Required method
    fn estimate(&self, move_ctx: &MoveContext<'_>) -> Cost;
}
Expand description

Defines feature objective behavior.

Required Methods§

source

fn estimate(&self, move_ctx: &MoveContext<'_>) -> Cost

Estimates a cost of insertion.

Implementors§