The software is inspired by Forth (the programming language) because it makes use of an stack and the reverse Polish notation.
The quickly written readme is currently available in German only.
This is an example for an XNOR with three inputs:
Formula:
a !not b !not c !not And And a b c And And Or a b !not c !not Or Or AndOr the simplified (optimized) version:
a !not b !not c
!not And And
a b c And And Or
Calculated truth table:
a b c Z
-------
0 0 0 1
1 0 0 0
0 1 0 0
1 1 0 0
0 0 1 0
1 0 1 0
0 1 1 0
1 1 1 1
Download:
Bool_solver.zip