boolean-circuit 2.2.0

A library to import, modify and export boolean circuits.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod builder;
pub mod circuit;
mod cnf;
pub mod deep_copy;
pub mod disjoint_union;
mod evaluator;
pub mod file_formats;
pub mod gate;
pub mod literal;

pub use circuit::Circuit;
pub use cnf::generate_cnf;
pub use evaluator::{evaluate, evaluate_gate};
pub use gate::{Gate, Operation};
pub use literal::Literal;