I want to have logical connectives such as
not(X), conj(X, Y), some(Y, K). and I want to be able to iterate over them.
So for example I want to be able to convert not(some(Y, K)), into all(Y, not(K)).
I don't want them to have any particular meaning, I just want to work with the logical formulas in this way.
What's the best way to do this?
Here's an actual line in my code:
nnf(not(all(X, Y)) ,some(Z, W)) :- nnf(X, Z), nnf(not(Y), W).
So if I give it not(all(a,b)) I want to get back some(a, not(b)), but atm I don't know how to get Prolog to treat not/1 and all/2 in such a way.