-
Notifications
You must be signed in to change notification settings - Fork 129
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
Feautre/adapt opt #565
Draft
Steven-Roberts
wants to merge
51
commits into
feature/rk_defaults
Choose a base branch
from
feautre/adapt-opt
base: feature/rk_defaults
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+1,055
−458
Draft
Feautre/adapt opt #565
Changes from 44 commits
Commits
Show all changes
51 commits
Select commit
Hold shift + click to select a range
14ecd14
Remove special case of negative base in SUNRpowerR
Steven-Roberts dcb14bc
Fix assert condition
Steven-Roberts 19f2dc9
Remove magic constant
Steven-Roberts 53f3dde
Remove TINY parameter
Steven-Roberts e838c4e
Remove TINY from imexgus controller
Steven-Roberts 9cde50a
Switch to assert
Steven-Roberts 2c2444c
Fix sign of controller in nan case
Steven-Roberts 9cb7bba
Start adaptivity unit test
Steven-Roberts 743913a
Add const and comments to test
Steven-Roberts b75e78e
Simplify Soderlind controller and handle inf/nan better
Steven-Roberts 2caec18
Clean up controllers
Steven-Roberts 3fbda5b
Apply formatter
Steven-Roberts ef01f92
Merge branch 'develop' into feature/min-err
Steven-Roberts 299cd5c
Variable initialization cleanup
Steven-Roberts 405ff41
Use I controller on first 2 steps of Soderlind
Steven-Roberts bc9f312
Remove assert for pow testing
Steven-Roberts 54aa1d5
Update docs
Steven-Roberts bfdf75e
Update IMEX controller docs
Steven-Roberts dde1379
Update changelog
Steven-Roberts facfc39
Clean up time step sign
Steven-Roberts 7badd78
Additional simplifications
Steven-Roberts 641ad92
Merge branch 'develop' into feature/min-err
Steven-Roberts c472ffe
Additional testing of controller
Steven-Roberts 2452bd6
Remove unnecessary header
Steven-Roberts 13cce12
Correct function names
Steven-Roberts 1950356
Convert SUNRpowerR to macro
Steven-Roberts 01b50b6
Switch to proposed adaptivity parameters
Steven-Roberts b733fa3
Merge branch 'feature/min-err' into feautre/adapt-opt
Steven-Roberts 5bd4790
Update comments based on @drreynolds suggestions
Steven-Roberts 7e325c8
Merge branch 'feature/min-err' into feautre/adapt-opt
Steven-Roberts 9bb63c0
Fix typos in changelog
Steven-Roberts 875ae20
Merge branch 'develop' into feautre/adapt-opt
Steven-Roberts 8d7a267
Fix typos in changelog
Steven-Roberts a02ca62
Merge branch 'develop' into feature/min-err
Steven-Roberts 9ee43b3
Merge branch 'feature/min-err' into feautre/adapt-opt
Steven-Roberts 65836d5
Merge branch 'feature/rk_defaults' into feautre/adapt-opt
Steven-Roberts 7d5161b
Update test/unit_tests/arkode/C_serial/ark_test_adapt.c
Steven-Roberts fcb7dc6
Add missing SUN_RCONST
Steven-Roberts 1db5b33
Update test/unit_tests/arkode/C_serial/ark_test_adapt.c
Steven-Roberts f81a60d
Merge branch 'develop' into feature/min-err
Steven-Roberts 7669c93
Add more asserts to controllers
Steven-Roberts 332a7d0
Merge branch 'feature/rk_defaults' into feautre/adapt-opt
Steven-Roberts ed094a8
Merge branch 'develop' into feature/min-err
Steven-Roberts 8a49e61
Merge branch 'feature/min-err' into feautre/adapt-opt
Steven-Roberts a1eb43c
Added constructors for additional 'recommended' controllers from Sylv…
drreynolds afea9c0
Spelling fix
drreynolds 7fe8654
Formatting
drreynolds cc26cf2
Fixed typo
drreynolds 47ceedd
Added FAQ on temporal adaptivity controller selection
drreynolds fa46710
spelling
drreynolds 27fca0a
Added ARKodeSetAdaptControllerByName
drreynolds 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,6 +55,13 @@ specific linker flags e.g., MKL. | |
|
||
**Bug Fixes** | ||
|
||
Removed error floors from the SUNAdaptController implementations which could | ||
unnecessarily limit the time size growth, particularly after the first step. | ||
|
||
On the first two time steps, the | ||
:ref:`Soderlind controller <SUNAdaptController.Soderlind>` uses an I controller | ||
instead of omitting unavailable terms. | ||
|
||
Comment on lines
+59
to
+65
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not sure that these are "bug fixes" per-se. Should these be moved to "enhancements" section above? |
||
Fixed c:func:`ARKodeResize` not using the default ``hscale`` when an argument of | ||
``0`` was provided. | ||
|
||
|
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
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.
I'm not sure that these are "bug fixes" per-se. Should these be moved to "enhancements" section above?