th-rust 0.1.0

ThRust is a software framework for thermodynamic and probabilistic computing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod gate;
mod copy;
mod not;
mod and;
mod or;

pub use gate::Gate;
pub use copy::Copy;
pub use not::Not;
pub use and::And;
pub use or::Or;