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 InputGates, AndGate, MultiOrGate, BooleanCircuit
a, b, c = InputGates(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))
h = a & ~(b | c)
a.set(True)
b.set(False)
c.set(False)
print(h.value())
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.2.tar.gz
(2.9 kB
view hashes)
Built Distribution
bcirc-0.0.2-py3-none-any.whl
(4.2 kB
view hashes)