-
-
Notifications
You must be signed in to change notification settings - Fork 215
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement Part 1 Of Adaptive Radau Method #2450
Merged
Merged
Changes from 75 commits
Commits
Show all changes
87 commits
Select commit
Hold shift + click to select a range
84ef783
rename
Shreyas-Ekanathan 0ba696d
Merge branch 'master' into head
Shreyas-Ekanathan b9083ff
Merge pull request #3 from Shreyas-Ekanathan/head
Shreyas-Ekanathan fdc92bb
Delete src/algorithms/explicit_rk_pde.jl
Shreyas-Ekanathan 3a48a6e
Delete src/caches/extrapolation_caches.jl
Shreyas-Ekanathan 5400ec8
Delete src/caches/feagin_caches.jl
Shreyas-Ekanathan 38ad679
Delete src/caches/low_storage_rk_caches.jl
Shreyas-Ekanathan b011f36
Delete src/caches/rkc_caches.jl
Shreyas-Ekanathan 075885b
Delete src/caches/rkn_caches.jl
Shreyas-Ekanathan ec9c8b3
Delete src/caches/ssprk_caches.jl
Shreyas-Ekanathan 2222a9c
Delete src/caches/symplectic_caches.jl
Shreyas-Ekanathan e9421a9
Delete src/caches/verner_caches.jl
Shreyas-Ekanathan 19e524e
Delete src/dense/verner_addsteps.jl
Shreyas-Ekanathan 7f8de0b
Delete src/perform_step/extrapolation_perform_step.jl
Shreyas-Ekanathan 2eb16b6
Delete src/perform_step/feagin_rk_perform_step.jl
Shreyas-Ekanathan 82cc872
Delete src/perform_step/low_storage_rk_perform_step.jl
Shreyas-Ekanathan 7d75164
Delete src/perform_step/rkc_perform_step.jl
Shreyas-Ekanathan 4112f61
Delete src/perform_step/rkn_perform_step.jl
Shreyas-Ekanathan 28759d0
Delete src/perform_step/ssprk_perform_step.jl
Shreyas-Ekanathan 8372fe0
Delete src/perform_step/symplectic_perform_step.jl
Shreyas-Ekanathan 84158ab
Delete src/perform_step/verner_rk_perform_step.jl
Shreyas-Ekanathan 0baa146
Delete src/rkc_utils.jl
Shreyas-Ekanathan 1aafef3
Delete src/tableaus/feagin_tableaus.jl
Shreyas-Ekanathan 2dd0999
Delete src/tableaus/rkc_tableaus.jl
Shreyas-Ekanathan 47ea1ef
Delete src/tableaus/rkn_tableaus.jl
Shreyas-Ekanathan aa29690
Delete src/tableaus/symplectic_tableaus.jl
Shreyas-Ekanathan 131ea9c
Delete src/tableaus/verner_tableaus.jl
Shreyas-Ekanathan f6dac89
Delete test/algconvergence/ode_extrapolation_tests.jl
Shreyas-Ekanathan 01688f1
Delete test/algconvergence/ode_feagin_tests.jl
Shreyas-Ekanathan 95a7fd4
Delete test/algconvergence/ode_low_storage_rk_tests.jl
Shreyas-Ekanathan 0a99b48
Delete test/algconvergence/ode_ssprk_tests.jl
Shreyas-Ekanathan f896f73
Delete test/algconvergence/rkc_tests.jl
Shreyas-Ekanathan 459ccf3
Delete test/algconvergence/symplectic_tests.jl
Shreyas-Ekanathan 798fef8
Update ode_firk_tests.jl
Shreyas-Ekanathan 2020765
Merge pull request #4 from Shreyas-Ekanathan/master
Shreyas-Ekanathan 9378160
Merge pull request #5 from Shreyas-Ekanathan/upstream
Shreyas-Ekanathan d3c8a52
Merge branch 'master' of https://github.com/Shreyas-Ekanathan/Ordinar…
Shreyas-Ekanathan cf648e8
Update firk_tableaus.jl
Shreyas-Ekanathan 5b0cbe1
Merge branch 'master' of https://github.com/Shreyas-Ekanathan/Ordinar…
Shreyas-Ekanathan c887941
add to tableau, create cache, oop method
Shreyas-Ekanathan 1598f04
format
Shreyas-Ekanathan 45641a3
calculate T
Shreyas-Ekanathan a685028
add in-place
Shreyas-Ekanathan 91cd34b
Update firk_perform_step.jl
Shreyas-Ekanathan d5beb29
Update integrator_interface.jl
Shreyas-Ekanathan 9fee28b
Update integrator_interface.jl
Shreyas-Ekanathan 67bb0fe
rename, formatting
Shreyas-Ekanathan 30cc947
Merge branch 'upstream' of https://github.com/Shreyas-Ekanathan/Ordin…
Shreyas-Ekanathan f182b38
Merge pull request #7 from Shreyas-Ekanathan/master
Shreyas-Ekanathan 1125bc1
Merge pull request #9 from Shreyas-Ekanathan/upstream
Shreyas-Ekanathan d836402
Merge pull request #10 from SciML/master
Shreyas-Ekanathan 3d09fa2
lots of edits
Shreyas-Ekanathan de394f3
Merge branch 'master' into upstream
Shreyas-Ekanathan 4228c83
Merge pull request #11 from Shreyas-Ekanathan/upstream
Shreyas-Ekanathan 6df8b72
tweaks
Shreyas-Ekanathan 51d2012
Merge pull request #12 from Shreyas-Ekanathan/upstream
Shreyas-Ekanathan 9eb4538
fix collocation on radauIIA9
Shreyas-Ekanathan 1d7a4bd
fix collocation on adaptive radau
Shreyas-Ekanathan c69f1c1
oop works!
Shreyas-Ekanathan f1ae02f
Merge pull request #13 from Shreyas-Ekanathan/upstream
Shreyas-Ekanathan 2d6b5f6
fixes
Shreyas-Ekanathan aaeed16
Merge branch 'master' of https://github.com/Shreyas-Ekanathan/Ordinar…
Shreyas-Ekanathan 064c77d
Update ode_firk_tests.jl
Shreyas-Ekanathan bff13df
clean up
Shreyas-Ekanathan 55259d5
IN PLACE
Shreyas-Ekanathan ff10299
Update ode_firk_tests.jl
Shreyas-Ekanathan df3063f
cached tableaus
Shreyas-Ekanathan e8ba6c7
fix types
Shreyas-Ekanathan 52613d3
clean up
Shreyas-Ekanathan d9545fd
tweaks
Shreyas-Ekanathan 2ee7782
Merge branch 'SciML:master' into upstream
Shreyas-Ekanathan 0740aea
Merge pull request #14 from Shreyas-Ekanathan/upstream
Shreyas-Ekanathan 8574f04
edits
Shreyas-Ekanathan 71e13ef
Update firk_perform_step.jl
Shreyas-Ekanathan f17907a
types
Shreyas-Ekanathan f52c9e4
fix tableaus
Shreyas-Ekanathan 42f5280
edits
Shreyas-Ekanathan 40baa62
minor fixes
oscardssmith 12630e0
little things
Shreyas-Ekanathan 4252639
fix types
Shreyas-Ekanathan 3318e37
explicitly perform multiplications
Shreyas-Ekanathan 9c15269
caches
Shreyas-Ekanathan 75168c8
small edits
Shreyas-Ekanathan 533f9a8
@..
Shreyas-Ekanathan fed9fc5
add adaptivity
Shreyas-Ekanathan c0b5936
Update ode_firk_tests.jl
Shreyas-Ekanathan bdb0a63
Update ode_firk_tests.jl
Shreyas-Ekanathan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a pretty big set of dependencies, are we sure we want to include them by default? OrdinaryDiffEqFIRKDeriver or something that can be optionally added?