Home
last modified time | relevance | path

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

/external/ceres-solver/internal/ceres/
Dline_search_direction.cc145 class BFGS : public LineSearchDirection { class
147 BFGS(const int num_parameters, in BFGS() function in ceres::internal::BFGS
164 virtual ~BFGS() {} in ~BFGS()
361 if (options.type == ceres::BFGS) { in Create()
362 return new ceres::internal::BFGS( in Create()
Dtypes.cc188 CASESTR(BFGS); in LineSearchDirectionTypeToString()
200 STRENUM(BFGS); in StringToLineSearchDirectionType()
Dsolver.cc244 if ((options.line_search_direction_type == ceres::BFGS || in LineSearchOptionsAreValid()
/external/ceres-solver/include/ceres/
Dtypes.h245 BFGS, enumerator
/external/ceres-solver/scripts/
Dceres-solver.spec43 - Line search solvers (L-BFGS and Nonlinear CG)
/external/ceres-solver/docs/source/
Dfeatures.rst60 of Non-linear Conjugate Gradients, BFGS and LBFGS.
Dsolving.rst405 3. ``BFGS`` A generalization of the Secant method to multiple
408 [NocedalWright]_. BFGS is currently the best known general
411 4. ``LBFGS`` A limited memory approximation to the full ``BFGS``
420 ``BFGS`` and ``LBFGS`` methods to be guaranteed to be satisfied the
818 ``BFGS`` and ``LBFGS``.
825 Note that in order for the assumptions underlying the ``BFGS`` and
840 The L-BFGS hessian approximation is a low rank approximation to the
863 As part of the ``BFGS`` update step / ``LBFGS`` right-multiply
870 scaling in ``BFGS`` (before first iteration) and ``LBFGS`` (at each
Dversion_history.rst230 #. ``BFGS`` line search direction. (Alex Stewart)
296 #. Fix update of L-BFGS history buffers after they become full. (Alex