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
the solvers generate useful information like the number of function evaluations etc. This information needs to be added to the output objects. What needs to be considered is if it is better to have a type field for this kind of information, or should each piece of information be top level?
Look at examples from Optim.jl and NLopt.jl.
The text was updated successfully, but these errors were encountered:
Looking at how matlab deals with this when the sol = ode45(...) version is used then the returened struct has the field stats which contain the fields nfevalsnstepsnfailed currently we collect nsteps (the number of accepted steps) and nfailed (the number of failed steps). We also collect information on dts and errs which I think is related to the tolerances. I need to add the nfevals. As well as checking what common naming conventions for these fields are in Julia.
the solvers generate useful information like the number of function evaluations etc. This information needs to be added to the output objects. What needs to be considered is if it is better to have a type field for this kind of information, or should each piece of information be top level?
Look at examples from
Optim.jl
andNLopt.jl
.The text was updated successfully, but these errors were encountered: