Trait OracleOptimQ

Source
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

Required Associated Types§

Required Methods§

Source

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

Implementors§