boolean.py icon indicating copy to clipboard operation
boolean.py copied to clipboard

DeMorgan not applied in a specific case

Open tomas789 opened this issue 1 year ago • 0 comments

In some situations DeMorgan rule is not being applied.

Here is a sample

import boolean
algebra = boolean.BooleanAlgebra()
TRUE, FALSE, NOT, AND, OR, symbol = algebra.definition()

x = NOT(AND(NOT(symbol("x0")), NOT(symbol("x4"))))
print(x.simplify())

The actual output is

~(~x0&~x4)

But one would expect

x0|x4

tomas789 avatar Nov 14 '22 11:11 tomas789