You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Lasse, Thanks for sharing the package. I've been using it for a while and it works perfectly. Could you please give an example of how to warm start the solver?
The text was updated successfully, but these errors were encountered:
For reference, I have added the following comment to the README:
# You can also warm-start the solver with an initial guess.# For example, say that we want to solve the problem at a slightly perturbed parameter value, `some_other_parameter = some_parameter .+ 0.01`.# Here, we can warm-start the solver by passing in the old solution as an intial guess.# This is particularly handy for online optimization as in receding-horizon applications.
some_other_parameter = some_parameter .+0.01
other_solution =solve(problem, some_other_parameter; initial_guess = solution.z)
Hi Lasse, Thanks for sharing the package. I've been using it for a while and it works perfectly. Could you please give an example of how to warm start the solver?
The text was updated successfully, but these errors were encountered: