Home
last modified time | relevance | path

Searched refs:BFGS (Results 1 – 7 of 7) sorted by relevance

/external/ceres-solver/internal/ceres/
Dline_search_direction.cc146 class BFGS : public LineSearchDirection { class
148 BFGS(const int num_parameters, in BFGS() function in ceres::internal::BFGS
165 virtual ~BFGS() {} in ~BFGS()
320 if (options.type == ceres::BFGS) { in Create()
321 return new ceres::internal::BFGS( in Create()
Dtypes.cc186 CASESTR(BFGS); in LineSearchDirectionTypeToString()
198 STRENUM(BFGS); in StringToLineSearchDirectionType()
Dsolver_impl.cc652 if ((original_options.line_search_direction_type == ceres::BFGS || in LineSearchSolve()
/external/ceres-solver/include/ceres/
Dtypes.h231 BFGS, enumerator
/external/ceres-solver/docs/source/
Dintroduction.rst24 (Nonlinear CG and L-BFGS) solvers.
Dsolving.rst389 3. ``BFGS`` A generalization of the Secant method to multiple
392 [NocedalWright]_. BFGS is currently the best known general
395 4. ``LBFGS`` A limited memory approximation to the full ``BFGS``
404 ``BFGS`` and ``LBFGS`` methods to be guaranteed to be satisfied the
795 ``BFGS`` and ``LBFGS``.
802 Note that in order for the assumptions underlying the ``BFGS`` and
817 The L-BFGS hessian approximation is a low rank approximation to the
840 As part of the ``BFGS`` update step / ``LBFGS`` right-multiply
847 scaling in ``BFGS`` (before first iteration) and ``LBFGS`` (at each
Dversion_history.rst21 #. ``BFGS`` line search direction. (Alex Stewart)
84 #. Fix update of L-BFGS history buffers after they become full. (Alex