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
This isn't a problem in the neq constraint, but it's a confusing ambiguity/gotcha that arises from cons's "null" value for lists being both [] and None (i.e. cons(1, []) == [1]andcons(1, None) == [1]).
This simple examples shows how the ambiguity can arise.
This isn't a problem in the
neq
constraint, but it's a confusing ambiguity/gotcha that arises fromcons
's "null" value for lists being both[]
andNone
(i.e.cons(1, []) == [1]
andcons(1, None) == [1]
).This simple examples shows how the ambiguity can arise.
The assertion fails, even though the
cons(1, a_lv)
term will reify to[1]
.The text was updated successfully, but these errors were encountered: