Trait OracleOptim

Source
pub trait OracleOptim<ArrayType> {
    type CutChoice;

    // Required method
    fn assess_optim(
        &mut self,
        xc: &ArrayType,
        gamma: &mut f64,
    ) -> ((ArrayType, Self::CutChoice), bool);
}
Expand description

Oracle for optimization problems

Required Associated Types§

Required Methods§

Source

fn assess_optim( &mut self, xc: &ArrayType, gamma: &mut f64, ) -> ((ArrayType, Self::CutChoice), bool)

Implementors§