//! A crate for working with boolean expressions.
extern crate log;
extern crate bincode;
extern crate serde_derive;
extern crate serde;
extern crate fnv;
extern crate hashbrown;
extern crate simplelog;
/// The core library, and support for boolean expressions as abstract syntax trees.
pub use *;
/// Misc helper routines inspired by the APL family of programming languages.
/// Binary decision diagrams.
/// Working with arrays of bit structures as if they were integers.
/// Input/output support for the other modules.
/// solve AST-based expressions by converting them to BDDs.