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 should be simple to add. The syntax type_name(scalar_val) is only implemented for literals, but float(-1) is actually a unary op on a literal, which is why it doesn't work. With GTIR the always somewhat artificial looking restriction that the argument has to be a literal is not required anymore anyway so we can fix this in one go.
Using
-float(1)
anywhere within a field operator works, whereasfloat(-1)
does not.The text was updated successfully, but these errors were encountered: