-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rewrite the derivatives implementation. (#51)
* WIP: rewrite univariate and partials spec * remove unused code * re-enable rest of package, minor rearrangements * fix partial derivatives calculations * documentation, first pass * add a shortcut * add compat for new dependency * add JET and Aqua testing, remove cruft from Project.toml * make linear_combination work with SVector of coefficients * add simple test for Chebyshev derivatives * add tests for other univariate transformations * clean up tests a bit * re-enable endpoint continuity for derivatives * try to fix documenter workflow
- Loading branch information
Showing
23 changed files
with
1,291 additions
and
767 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# see https://juliadocs.github.io/Documenter.jl/dev/man/hosting/#GitHub-Actions | ||
# uncomment file below once you set up authentication as described in the Documenter manual | ||
|
||
name: Documentation | ||
|
||
# on: | ||
# push: | ||
# branches: | ||
# - master | ||
# tags: '*' | ||
# pull_request: | ||
|
||
# jobs: | ||
# build: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v2 | ||
# - uses: julia-actions/setup-julia@latest | ||
# with: | ||
# version: '1.6' | ||
# - name: Install dependencies | ||
# run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()' | ||
# - name: Build and deploy | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token | ||
# DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # If authenticating with SSH deploy key | ||
# run: julia --project=docs/ docs/make.jl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.