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
Don't allocate vectors. We might as well have them as scalars to avoid allocations
We should also free the deepest layer of df, although we could in theory still provide simple wrappers.
Add an argument to specify a largest \alpha. This is to accommodate Fminbox and other simple constrained optimizers not evaluating outside of constraints. Of course, some constrained optimizers will need more specialized line searches (or use trust regions of course).
We should return \alpha, \phi(\alpha) to avoid recalculation of \phi if packages other than Optim and NLsolve want to use these functions. We can still call value_gradient! outside, as we're checking if it's the same point anyway.
... more?
The text was updated successfully, but these errors were encountered:
ref changes in #80
df
, although we could in theory still provide simple wrappers.\alpha, \phi(\alpha)
to avoid recalculation of\phi
if packages other than Optim and NLsolve want to use these functions. We can still callvalue_gradient!
outside, as we're checking if it's the same point anyway.... more?
The text was updated successfully, but these errors were encountered: