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
iensen
changed the title
[Implementation] Unrestricted Variables in choice rules.
[Implementation] Unrestricted variables in choice rules.
Jun 16, 2014
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).
The text was updated successfully, but these errors were encountered: