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
Currently we don't accept rtol or atol keyword arguments. For compatibility with the API one expects from the standard implementations of Base.isapprox, we should do so.
The text was updated successfully, but these errors were encountered:
This actually causes problems due to the fact that the GA types currently are subtypes of Number... it means that when rtol is specified, we actually end up trying to call the version of isapprox in Base that is implemented for (::Number, ::Number), but also supports kwargs.
This seems counterintuitive, but it's a consequence of how Julia implements kwargs dispatch right now. See here: JuliaLang/julia#9498
Currently we don't accept
rtol
oratol
keyword arguments. For compatibility with the API one expects from the standard implementations ofBase.isapprox
, we should do so.The text was updated successfully, but these errors were encountered: