We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 651a928 commit 93cd547Copy full SHA for 93cd547
Project.toml
@@ -1,6 +1,6 @@
1
name = "FiniteDifferences"
2
uuid = "26cc04aa-876d-5657-8c51-4c34ba976000"
3
-version = "0.12.24"
+version = "0.12.25"
4
5
[deps]
6
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
src/methods.jl
@@ -557,7 +557,7 @@ end
557
power::Int=1,
558
breaktol::Real=Inf,
559
kw_args...
560
- ) where T<:AbstractFloat
+ )
561
562
Use Richardson extrapolation to extrapolate a finite difference method.
563
@@ -582,7 +582,7 @@ function extrapolate_fdm(
582
583
584
585
-) where T<:AbstractFloat
+)
586
(power == 1 && _is_symmetric(m)) && (power = 2)
587
return extrapolate(
588
step -> m(f, x, step),
0 commit comments