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
conv2cnf :: Form -> Form
conv2cnf f = simplify (cnjOfDsj (nnf (arrowfree f)))
Mistake
toCNF :: Form -> Form
toCNF f = (nnf . arrowfree) f
must be
toCNF :: Form -> Form
toCNF f = conv2cnf f
Original nice solution. However I think there is a bug in conv2cnf , for that reason the test doesn't
terminate. But there is already a remark about it at exercise 3.
Good (=8)
The text was updated successfully, but these errors were encountered:
Mistake
must be
Original nice solution. However I think there is a bug in
conv2cnf
, for that reason the test doesn'tterminate. But there is already a remark about it at exercise 3.
Good (=8)
The text was updated successfully, but these errors were encountered: