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