pub trait BooleanFunction: PartialBooleanFunction {
// Required method
fn eval(&self, input_values: &[bool]) -> bool;
}Expand description
Special case of a boolean system with exactly one output.
pub trait BooleanFunction: PartialBooleanFunction {
// Required method
fn eval(&self, input_values: &[bool]) -> bool;
}Special case of a boolean system with exactly one output.