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
Predicates written in @term RULES using the where clause could benefit from some syntactic sugar. Rather than having to explicitly index into the given match, the scope could automatically be aware of the variables.
(abs(x) => x) where {σ ->isvalid(Image(σ[x], Nonnegative))} # current
(abs(x) => x) where {isvalid(Image(x, Nonnegative))} # proposed
The text was updated successfully, but these errors were encountered:
Predicates written in
@term RULES
using thewhere
clause could benefit from some syntactic sugar. Rather than having to explicitly index into the given match, the scope could automatically be aware of the variables.The text was updated successfully, but these errors were encountered: