pub trait PartialBooleanFunction: PartialBooleanSystem + StaticNumOutputs<1> {
// Required method
fn partial_eval(&self, input_values: &[bool]) -> Option<bool>;
}Expand description
Special case of a boolean system with exactly one output.
Required Methods§
Sourcefn partial_eval(&self, input_values: &[bool]) -> Option<bool>
fn partial_eval(&self, input_values: &[bool]) -> Option<bool>
Evaluate the boolean function with the given input values.