Home | History | Annotate | Download | only in ceres

Lines Matching full:solver

1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
32 #include "ceres/solver.h"
44 Solver::Options::~Options() {
49 Solver::~Solver() {}
51 void Solver::Solve(const Solver::Options& options,
53 Solver::Summary* summary) {
62 void Solve(const Solver::Options& options,
64 Solver::Summary* summary) {
65 Solver solver;
66 solver.Solve(options, problem, summary);
69 Solver::Summary::Summary()
101 string Solver::Summary::BriefReport() const {
102 string report = "Ceres Solver Report: ";
105 << "Solver terminated with DID_NOT_RUN but the solver did not "
115 // If the solver failed or was aborted, then the final_cost has no
127 string Solver::Summary::FullReport() const {
130 "Ceres Solver Report\n"
156 internal::StringAppendF(&report, "Linear solver %25s%25s\n",
173 internal::StringAppendF(&report, "Linear solver threads % 23d% 25d\n",
203 << "Solver terminated with DID_NOT_RUN but the solver did not "