boolean_expression icon indicating copy to clipboard operation
boolean_expression copied to clipboard

A Rust library for manipulating and evaluating Boolean expressions and BDDs

Results 2 boolean_expression issues
Sort by recently updated
recently updated
newest added

Hi and thanks for this helpful library. I figured out how to do partial evaluation by substituting Terminals, but I don't know how to simplify an expression assuming some other...

Here's my example program: ```rust use boolean_expression::{BDD, Expr}; fn main() { let node = |name: &str| Expr::Terminal(name.to_string()); let a_select = (node("as0") & node("ai0")) | (node("as1") & node("ai1")) | (node("as2") &...