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 presents some challenges because if performs some kind of inference. For example, consider this:
(defcolumns X Y A)
(defconstraints c1 () (if (eq! X Y) A))
(defconstraints c () (if (eq X Y) A))
Both constraints compile down to the same underlying form. One solution to this issue would be to remove use of if altogether from the constraints. That way, we can reinterpret its meaning as we see fit.
The text was updated successfully, but these errors were encountered:
This presents some challenges because
if
performs some kind of inference. For example, consider this:Both constraints compile down to the same underlying form. One solution to this issue would be to remove use of
if
altogether from the constraints. That way, we can reinterpret its meaning as we see fit.The text was updated successfully, but these errors were encountered: