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
Fix a check broken by wrong operator precedence (#2249)
In Julia, `a && b || c` is the same as `(a && b) || c` but the
code clearly assumes that it is `a && (b || c)`.
But also this code can be simplified, so let's do that.
This also fixes a JET warning about `d2` possibly not being defined.
0 commit comments