Skip to content

Commit

Permalink
Remove unused type parameter (#209)
Browse files Browse the repository at this point in the history
* Remove unused type parameter

* Update Project.toml
  • Loading branch information
devmotion committed Oct 11, 2022
1 parent 651a928 commit 93cd547
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "FiniteDifferences"
uuid = "26cc04aa-876d-5657-8c51-4c34ba976000"
version = "0.12.24"
version = "0.12.25"

[deps]
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
Expand Down
4 changes: 2 additions & 2 deletions src/methods.jl
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ end
power::Int=1,
breaktol::Real=Inf,
kw_args...
) where T<:AbstractFloat
)
Use Richardson extrapolation to extrapolate a finite difference method.
Expand All @@ -582,7 +582,7 @@ function extrapolate_fdm(
power::Int=1,
breaktol::Real=Inf,
kw_args...
) where T<:AbstractFloat
)
(power == 1 && _is_symmetric(m)) && (power = 2)
return extrapolate(
step -> m(f, x, step),
Expand Down

2 comments on commit 93cd547

@willtebbutt
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/69942

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.12.25 -m "<description of version>" 93cd547363ab182ea42ddff7c112824d147d923c
git push origin v0.12.25

Please sign in to comment.