A rust library for working with boolean expressions (expression trees, decision diagrams, etc.)
This crate lets you build a complicated abstract syntax tree (or logic circuit schematic, if you prefer) by working with individual Bit structs, or vectors that act like integers. You can also solve these AST structures by converting them into reduced, ordered, binary decision diagrams (ROBDDs) - a normal form consisting of if-then-else triples that essentially act like compressed truth tables. You can also construct and manipulate BDDs directly.
bex::x32
to bex::int
, used macros to generalize number of bits, added times
, lt
, and eq
functionsbex::solve
for converting between ast and bdd representations.real
(input) and virtual
(intermediate) variables in bdd::NID
*.dot
) output for base::Base
and improved formatting for bdd::BDDBase
bex::bdd
. Most notably:
hashbrown
crate (for about a 40% speedup!)norm
, ite_norm
) to minimize workbdd::NID
is now a single u64 with redundant information packed into the NID itself. This way, decisions can be made looking at the NID directly, without fetching the actual node.bex::bdd
in preparation for multi-threading.
Worker
struct, eventually.Initial public version. Work-in-progress code imported from a private repo.