Richardson.jl
Richardson.jl copied to clipboard
Richardson extrapolation in Julia
Bumps [julia-actions/setup-julia](https://github.com/julia-actions/setup-julia) from 1 to 2. Release notes Sourced from julia-actions/setup-julia's releases. v2.0.0 - Update to Node20 What's Changed update to node20 by @ranocha in julia-actions/setup-julia#209 Note the rationale for...
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3 to 4. Release notes Sourced from codecov/codecov-action's releases. v4.0.0 v4 of the Codecov Action uses the CLI as the underlying upload. The CLI has helped to...
I have some code that makes constant use of `extrapolate`, and while probably not a bottleneck in my use case, I was wondering if it would be possible/desirable to modify...
On commit 41dc041b1f5be5a70efd75d9cd588d2d64b6ce85, the following code errors on my machine: ```julia @inferred extrapolate(x -> sin(x)/x, 1.0) ``` while this one works ```julia @inferred extrapolate(x -> sin(x)/x, 1) ``` I poked...