mirror of
https://github.com/ceres-solver/ceres-solver.git
synced 2026-08-30 00:50:37 +08:00
835911ec94
In some cases the Levenberg-Marquardt can oscillate between, two values of the regularizer mu. A small value which causes the linear solver to fail and a higher value at which the solver makes progress. This can cause significant wastage of solver effort, and mu should just be clamped to some value. This CL provides this setting as Solver::Options::min_mu, and updates the documentation to reflect this.