Michael Ingold
Michael Ingold
Looks like both of those errors stem from `isapprox` implementation of `rtol` and `atol` settings [here](https://github.com/JuliaLang/julia/blob/32534ddeda5d364fa6af00b11460624e81ae4580/base/floatfuncs.jl#L221), I.e. ```julia atol::Real=0, rtol::Real=rtoldefault(x,y,atol) ``` where `rtoldefault` [here](https://github.com/JuliaLang/julia/blob/32534ddeda5d364fa6af00b11460624e81ae4580/base/floatfuncs.jl#L263) calls `real(T)`. Edit: I went back...
I wouldn’t mind taking a crack at a PR for this if you’re on board with changing this implementation, but I’d need to spend a little time making sure I...
I don't have a particularly strong opinion here. The docstring for `Base.one` took me a while to fully parse, but I think I'm generally in favor of the interpretation where...
Meshes.jl is going through an overhaul to their Coordinate Reference Systems, which has included a number of breaking changes. I've done some advocating for DynamicQuantities.jl compatibility, but it sounds like...
Update: looks like this Issue is still valid but now errors differently. Integration of functions that output DynamicQuantities dimensionful types works on a primitive/float-valued domain but not on a dimensionful...