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
Thanks for the amazing library. However I had a query in regards to the simplification of the following expression:
(a and not (b and c)) or (a and (b and c))
The expected output would be:
a
Looking through the code during the simplification process the distributive function doesn't appear to be called.