PartialBooleanFunction

Trait PartialBooleanFunction 

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

Source

fn partial_eval(&self, input_values: &[bool]) -> Option<bool>

Evaluate the boolean function with the given input values.

Implementors§