Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
bee260d
Simplify the internals
wesselb Sep 15, 2020
afdffdd
Fix test and remove redundant print statement
wesselb Sep 15, 2020
04d8ab6
Add extrapolate_fdm
wesselb Sep 15, 2020
134fa56
Add Richardson
wesselb Sep 15, 2020
d8b1332
Add method of extrapolate_fdm with given h
wesselb Sep 16, 2020
1847c8e
Exploit symmetry of FDM in extrapolate
wesselb Sep 16, 2020
48469a7
Update README and add section about multivariate derivatives
wesselb Sep 16, 2020
1aac4be
Update Manifest.toml for docs
wesselb Sep 16, 2020
1898125
Fix docs build
wesselb Sep 16, 2020
ac37a04
Update src/methods.jl
wesselb Sep 16, 2020
3de701e
Update src/methods.jl
wesselb Sep 16, 2020
28c17f0
Fix style of short-form functions
wesselb Sep 16, 2020
bdc269b
Update src/methods.jl
wesselb Sep 16, 2020
aa59682
Update src/methods.jl
wesselb Sep 16, 2020
49cb803
Update src/methods.jl
wesselb Sep 16, 2020
4ddb4c2
Update src/methods.jl
wesselb Sep 16, 2020
ad3950a
Update src/methods.jl
wesselb Sep 16, 2020
aa70c21
Update src/methods.jl
wesselb Sep 16, 2020
e857577
Update src/methods.jl
wesselb Sep 16, 2020
5a96a7d
Update src/methods.jl
wesselb Sep 16, 2020
2a753bc
Update src/methods.jl
wesselb Sep 16, 2020
0cdefad
Update src/methods.jl
wesselb Sep 16, 2020
ead7a3e
Fix test for Base.show
wesselb Sep 16, 2020
c54f64b
Improve typing
wesselb Oct 7, 2020
6875a6d
Update src/methods.jl
wesselb Oct 7, 2020
c14f4f7
Fix typo in comment
wesselb Oct 7, 2020
7f4baca
Apply Lyndon's style suggestion
wesselb Oct 7, 2020
18609b2
Inline simple methods
wesselb Oct 7, 2020
3074889
Add types for power and breaktol
wesselb Oct 7, 2020
8add873
Increase version number and add Richardson to compat
wesselb Oct 7, 2020
703e0eb
Let grid functions always return Vectors
wesselb Oct 7, 2020
c0cbd72
Restrict docstring of add_tiny
wesselb Oct 7, 2020
a8de750
Merge branch 'master' into wb/fdm-restructuring
wesselb Oct 7, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Richardson = "708f8203-808e-40c0-ba2d-98a6953ed40d"

Copy link
Member

@oxinabox oxinabox Oct 7, 2020

Choose a reason for hiding this comment

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

Need to bump the version at the top of this file
Are we happy enough with the public API to call this v1?
I think we are.

Or we might want to do a last release with deprecations,
and then remove those as a follow up so v1. has no deprecations

Copy link
Member Author

Choose a reason for hiding this comment

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

I'm not sure what's best. For now, I've changed the version to 0.11.0. Let me know if you want to go for a major release instead.

[compat]
ChainRulesCore = "0.9"
Expand Down
1 change: 1 addition & 0 deletions src/FiniteDifferences.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ module FiniteDifferences
using LinearAlgebra
using Printf
using Random
using Richardson

export to_vec, grad, jacobian, jvp, j′vp

Expand Down
Loading