Lines Matching refs:Solver
10 #. Added ``Solver::Options::IsValid`` which allows users to validate
19 #. ``Solver::Options::solver_log`` has been removed. If needed this
47 build and use Ceres Solver.
73 #. ``Solver::Options::linear_solver_ordering`` used to be a naked
75 which leads to problems when copying the ``Solver::Options`` struct
91 Further ``Solver::Summary::error`` has been renamed to
92 ``Solver::Summary::message``. It contains a more detailed
95 #. ``Solver::Options::gradient_tolerance`` used to be a relative
155 #. Solver::Options now uses ``shared_ptr`` to handle ownership of
156 ``Solver::Options::linear_solver_ordering`` and
157 ``Solver::Options::inner_iteration_ordering``. As a consequence the
222 #. ``Solver::Options::sparse_linear_algebra_library`` has been renamed
223 to ``Solver::Options::sparse_linear_algebra_library_type``.
242 ``Solver::Summary`` and ``Solver::Summary::FullReport``.
293 #. Rationalize some of the variable names in ``Solver::Options``.
295 #. Expose line search parameters in ``Solver::Options``.
378 - ``Solver::Options::return_initial_residuals``
379 - ``Solver::Options::return_initial_gradient``
380 - ``Solver::Options::return_initial_jacobian``
381 - ``Solver::Options::return_final_residuals``
382 - ``Solver::Options::return_final_gradient``
383 - ``Solver::Options::return_final_jacobian``
399 Solver::Options options;
400 Solver::Summary summary;
401 Solver::Solve(options, &problem, &summary);
426 - ``Solver::Options::return_initial_residuals``
427 - ``Solver::Options::return_initial_gradient``
428 - ``Solver::Options::return_initial_jacobian``
429 - ``Solver::Options::return_final_residuals``
430 - ``Solver::Options::return_final_gradient``
431 - ``Solver::Options::return_final_jacobian``
616 #. New subspace Dogleg Solver. (Markus Moll)
631 #. A better way to compute ``Solver::Summary::fixed_cost``. (Markus Moll)
641 #. Solver progress logging to file.