Home | History | Annotate | Download | only in source

Lines Matching full:solver

37 Ceres Solver. Full working code for all the examples described in this
39 <https://ceres-solver.googlesource.com/ceres-solver/+/master/examples/>`_
99 // Run the solver!
100 Solver::Options options;
103 Solver::Summary summary;
117 <https://ceres-solver.googlesource.com/ceres-solver/+/master/examples/helloworld.cc>`_
125 Ceres Solver Report: Iterations: 2, Initial cost: 1.250000e+01, Final cost: 1.388518e-16, Termination: PARAMETER_TOLERANCE.
128 Starting from a :math:`x=5`, the solver in two iterations goes to 10
131 default configuration of the solver is aimed at non-linear problems,
134 in one iteration. Also note that the solver did get very close to the
142 <https://ceres-solver.googlesource.com/ceres-solver/+/master/examples/helloworld.cc>`_
144 .. [#f2] Actually the solver ran for three iterations, and it was
145 by looking at the value returned by the linear solver in the third
158 Ceres Solver like most optimization packages, depends on being able to
161 efficiently is essential to getting good results. Ceres Solver
165 <https://ceres-solver.googlesource.com/ceres-solver/+/master/examples/helloworld.cc>`_
286 <https://ceres-solver.googlesource.com/ceres-solver/+/master/examples/helloworld_numeric_diff.cc>`_.
289 <https://ceres-solver.googlesource.com/ceres-solver/+/master/examples/helloworld_analytic_diff.cc>`_.
357 <https://ceres-solver.googlesource.com/ceres-solver/+/master/examples/powell.cc>`_
375 Ceres Solver Report: Iterations: 12, Initial cost: 1.075000e+02, Final cost: 4.584044e-12, Termination: GRADIENT_TOLERANCE.
387 <https://ceres-solver.googlesource.com/ceres-solver/+/master/examples/powell.cc>`_.
445 <https://ceres-solver.googlesource.com/ceres-solver/+/master/examples/curve_fitting.cc>`_
464 Ceres Solver Report: Iterations: 13, Initial cost: 1.211734e+02, Final cost: 1.056751e+00, Termination: FUNCTION_TOLERANCE.
490 <https://ceres-solver.googlesource.com/ceres-solver/+/master/examples/curve_fitting.cc>`_
522 Solver. The argument :math:`0.5` specifies the scale of the loss
538 <https://ceres-solver.googlesource.com/ceres-solver/+/master/examples/robust_curve_fitting.cc>`_
655 :member:`Solver::Options::linear_solver_type` to
665 ceres::Solver::Options options;
668 ceres::Solver::Summary summary;
676 <https://ceres-solver.googlesource.com/ceres-solver/+/master/examples/bundle_adjuster.cc>`_
682 <https://ceres-solver.googlesource.com/ceres-solver/+/master/examples/simple_bundle_adjuster.cc>`_
689 <https://ceres-solver.googlesource.com/ceres-solver/+/master/examples/>`_
693 <https://ceres-solver.googlesource.com/ceres-solver/+/master/examples/bundle_adjuster.cc>`_
698 <https://ceres-solver.googlesource.com/ceres-solver/+/master/examples/circle_fit.cc>`_
702 <https://ceres-solver.googlesource.com/ceres-solver/+/master/examples/denoising.cc>`_
708 <https://ceres-solver.googlesource.com/ceres-solver/+/master/examples/nist.cc>`_
714 <https://ceres-solver.googlesource.com/ceres-solver/+/master/examples/libmv_bundle_adjuster.cc>`_