pub trait OracleOptimQ<ArrayType> {
type CutChoice;
// Required method
fn assess_optim_q(
&mut self,
xc: &ArrayType,
gamma: &mut f64,
retry: bool,
) -> ((ArrayType, Self::CutChoice), bool, ArrayType, bool);
}
Expand description
Oracle for quantized optimization problems