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

Defines feature objective behavior.

Required Methods§

Estimates a cost of insertion.

Implementors§