Trait OracleFeas

Source
pub trait OracleFeas<ArrayType> {
    type CutChoice;

    // Required method
    fn assess_feas(
        &mut self,
        xc: &ArrayType,
    ) -> Option<(ArrayType, Self::CutChoice)>;
}
Expand description

Oracle for feasibility problems

Required Associated Types§

Required Methods§

Source

fn assess_feas( &mut self, xc: &ArrayType, ) -> Option<(ArrayType, Self::CutChoice)>

Implementors§