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
We use this in Alg 19.2, which is pretty much the same as exact equality comparison with 0. Comparison to 0 is handled a bit differently. See, for example, this link and links from there to the Julia issue tracker and justification. The kind of behavior referenced is something like this:
It sounds like the takeaway is that isapprox defaults to rtol::Real=sqrt(eps), atol::Real=0, and for zero the relative tolerance is zero. Good to know!
(Thanks to Kathryn Lesh)
We use this in Alg 19.2, which is pretty much the same as exact equality comparison with 0. Comparison to 0 is handled a bit differently. See, for example, this link and links from there to the Julia issue tracker and justification. The kind of behavior referenced is something like this:
The text was updated successfully, but these errors were encountered: