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
pub trait OracleFeas<ArrayType> {
type CutChoice;
// Required method
fn assess_feas(
&mut self,
xc: &ArrayType,
) -> Option<(ArrayType, Self::CutChoice)>;
}
Oracle for feasibility problems