You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have been playing around with PyEDA and found out that in some cases further minimization could be done when converting to CNF. For Example: (~A|B)&A could also be stated as B&A. Because A has to be true, ~A has to be false and therefore can just be omitted from the clause.
For other cases like (A|B)&A PyEDA already does this kind of simplification.
Would be interested in your thoughts and thanks for this awesome Software!
The text was updated successfully, but these errors were encountered:
Hello,
I have been playing around with PyEDA and found out that in some cases further minimization could be done when converting to CNF. For Example:
(~A|B)&A
could also be stated asB&A
. Because A has to be true, ~A has to be false and therefore can just be omitted from the clause.For other cases like
(A|B)&A
PyEDA already does this kind of simplification.Would be interested in your thoughts and thanks for this awesome Software!
The text was updated successfully, but these errors were encountered: