BooleanFunction

Trait BooleanFunction 

Source
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.

Required Methods§

Source

fn eval(&self, input_values: &[bool]) -> bool

Evaluate the boolean function with the given input values.

Implementors§