sparc icon indicating copy to clipboard operation
sparc copied to clipboard

[Implementation] Unrestricted variables in choice rules.

Open iensen opened this issue 11 years ago • 0 comments

The following program:

sorts

s = {0,1}.

predicates p(#s). rules 1{p(X)}1 :- X<1.

Incorrectly classifies variable X as unrestricted. The translation should be 1{p(X):s(X)}1 :- X<1,s(X).

iensen avatar Jun 16 '14 21:06 iensen