-
Notifications
You must be signed in to change notification settings - Fork 58
bug fixes for Boost 1.65 #21
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
Merged
Merged
Conversation
This file contains hidden or 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
Issue #144 has been fixed some time ago, but only for the non-const ref do_step interface. This fixes also the const ref interface implementation.
The ABM stepper was missing reset functionality, see #182
addressing #184, simple fix is to also reset m_current_k_opt and therefore make sure the loop doesnt overshoot.
Performance improvement for Bulirsch-Stoer-Stepper
Becoming suspicious by the difference of the exponents used for computing the new step size in the BS and BS denseout stepper (see 0f943fb) I checked again the Hairer book and I'm now convinced there was a mistake in our implementation and both steppers should use 1/(2*k+1) as exponent. The background is the this exponent represents the order of the error of the k-th iteration, and this order is always 2k+1, independent of the interval_sequence. This error is computed from the difference of the k-th and k-1 - th iteration, which have the orders 2k+2 2k respectively, which means the computed error has order 2k+1.
A bug introduced with the recent max_dt facility prevented the rosenbrock controller to increase step size in most cases (if max_dt=0). This is fixed now, and a regression test case has been added.
Remove .gitmodules
update for ticket #12034
Fix failed two tests.
Fix unused variable warning
This adds the flag -Wno-unused-local-typedef to the global build options on Jenkins to shorten the log file for the clang build when building Boost.
Merging headmyshoulder/master into boostorg/develop
Merge from headmyshoulder/odeint-v2
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
No description provided.