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
Hi @roberthoenig, do you have utilities or suggestions on how to use your library to convert a Formula to disjunctive normal form (DNF)? I see that you have implemented get_conjunctive_normal_form(formula)
The text was updated successfully, but these errors were encountered:
Hi @fsaad, sorry for the (very) late reply. I haven't actively maintained this repository since Julia 0.6. This means that in order to use any of the library functions, you'd have to first upgrade the code to work with Julia 1.x.
As for converting a formula to DNF:
This library doesn't have a built-in function for that. However, there is literature on algorithms for converting an arbitrary propositional logic formula to DNF. You could probably implement it similarly to get_conjunctive_normal_form.
Hi @roberthoenig, do you have utilities or suggestions on how to use your library to convert a
Formula
to disjunctive normal form (DNF)? I see that you have implemented get_conjunctive_normal_form(formula)The text was updated successfully, but these errors were encountered: