A C++ Boolean Expressions parser and evaluator, with variable count upto 15 (unless specified seperately).
Currently in Beta
| Command/Function | Example Input | Example Output |
|---|---|---|
| Truth Table Generator | print_table (~(a+b)) |
a b Q 0 0 1 0 1 0 1 0 0 1 1 0 |
| Minterms | min_term (~(a+b)) |
Min Terms : 0 0 |
| Binary | Unary |
|---|---|
& , . equivalent to Boolean AND | , + equivalent to Boolean OR ^ equivalent to Boolean XOR |
~ , ! equivalent to Boolean NOT |
From Source :
git clone https://github.com/SpoonBuoy/boolean.git
cd boolean
make
./boolean
[Command Input]
- K-Map Generator
- Boolean Expression Simplifier