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
In Categorifier, we may try to interpret / @(Native Double) to a category that doesn't support the Native newtype. This will fail, but if we catch that, we can specalize and inline / so that it ends up using the underlying / @Double, which is supported.
However, if we blindly catch and inline any interpretation that fails, we can easily find ourselves in a loop rather than reporting a real error. This needs to be handled delicately to avoid loops.
In Categorifier, we may try to interpret
/ @(Native Double)
to a category that doesn't support theNative
newtype. This will fail, but if we catch that, we can specalize and inline/
so that it ends up using the underlying/ @Double
, which is supported.However, if we blindly catch and inline any interpretation that fails, we can easily find ourselves in a loop rather than reporting a real error. This needs to be handled delicately to avoid loops.
(Extricated from https://kitty-hawk.atlassian.net/browse/SW-3106)
The text was updated successfully, but these errors were encountered: