Skip to content
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

Changed: RungeKutta no longer uses DiffCache #183

Merged
merged 8 commits into from
Mar 29, 2025
Merged

Conversation

franckgaga
Copy link
Member

@franckgaga franckgaga commented Mar 29, 2025

The NonLinModel internal functions are now:

nonlinmodel.solver_f!(xnext, k, x, u, d, p) -> nothing
nonlinmodel.solver_h!(y, x, d, p) -> nothing

in which xnext, k and y are mutated in-place. The k vector is filled in-place with all the intermediate stage values of nonlinmodel.solver differential equation solver. For exemple with RungeKutta(4), the k vector has nx*(4+1) elements. Note that there are 4 intermediate stages for RK4, but the +1 is required because of the supersample keyword argument.

With this modification DiffCaches are no longer needed in RungeKutta. As a side bonus, there is no longer the @warn about the DiffCache chunk size. AFAIK, this number was impossible to set "correctly" (without the warning) at construction since its optimal value is different if the nonlinear model is used to construct MovingHorizonEstimator, NonLinMPC with SingleShooting, NonLinMPC with MultipleShooting, etc.

I can also remove PreallocationTools.jl dependency since the entire package do not use it anymore.

@codecov-commenter
Copy link

codecov-commenter commented Mar 29, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 98.88%. Comparing base (7d8ccde) to head (3af2012).
Report is 9 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #183   +/-   ##
=======================================
  Coverage   98.87%   98.88%           
=======================================
  Files          25       25           
  Lines        4193     4204   +11     
=======================================
+ Hits         4146     4157   +11     
  Misses         47       47           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@franckgaga franckgaga merged commit 88f0240 into main Mar 29, 2025
4 checks passed
@franckgaga franckgaga deleted the simplify_diff_solvers branch March 29, 2025 17:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants