Boolean circuits package for my students
Project description
Boolean circuits package
This Python 3 package implements Boolean circuits for my complexity theory class.
Example:
from bcirc import variables, AndGate, MultiOrGate, BooleanCircuit
a, b, c = variables(3)
d, e, f = AndGate(a, b), AndGate(a, c), AndGate(b, c)
g = MultiOrGate(d, e, f)
bc = BooleanCircuit((a, b, c), g)
print(bc(True, True, False))
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
bcirc-0.0.1.tar.gz
(2.2 kB
view hashes)
Built Distribution
bcirc-0.0.1-py3-none-any.whl
(3.5 kB
view hashes)