pub trait DdminOracle<C> {
// Required method
fn evaluate(&mut self, remaining: &[C]) -> OracleOutcome;
}Expand description
Callback boundary between DDMin and the system being reduced.
Required Methods§
Sourcefn evaluate(&mut self, remaining: &[C]) -> OracleOutcome
fn evaluate(&mut self, remaining: &[C]) -> OracleOutcome
Evaluate a candidate list.
The slice contains the candidates that remain in this trial.