Open
Description
See the last part of http://ceres-solver.org/nnls_solving.html#levenberg-marquardt. This is basically already there and this is mostly a internal solver selection mechanism:
- Add a forcing function to LM
- Add a
newton_step = Val(:exact) / Val(:inexact)
option. Set it to nothing by default - Default to exact for factorization, else inexact
- Inexact Newton is just setting the tolerance correctly in
dolinsolve
.