Searched refs:Solve (Results 1 - 25 of 47) sorted by relevance

12

/external/ceres-solver/examples/
H A Dhelloworld.cc43 using ceres::Solve;
77 Solve(options, &problem, &summary);
H A Dhelloworld_analytic_diff.cc43 using ceres::Solve;
100 Solve(options, &problem, &summary);
H A Dhelloworld_numeric_diff.cc42 using ceres::Solve;
73 Solve(options, &problem, &summary);
H A Dquadratic.cc43 using ceres::Solve;
86 Solve(options, &problem, &summary);
H A Dquadratic_auto_diff.cc45 using ceres::Solve;
84 Solve(options, &problem, &summary);
H A Dquadratic_numeric_diff.cc44 using ceres::Solve;
79 Solve(options, &problem, &summary);
H A Dcircle_fit.cc65 using ceres::Solve;
154 Solve(options, &problem, &summary);
H A Dpowell.cc56 using ceres::Solve;
145 Solve(options, &problem, &summary);
H A Dcurve_fitting.cc38 using ceres::Solve;
158 Solve(options, &problem, &summary);
H A Ddata_fitting.cc38 using ceres::Solve;
160 Solve(options, &problem, &summary);
H A Drobust_curve_fitting.cc120 using ceres::Solve;
158 Solve(options, &problem, &summary);
/external/ceres-solver/internal/ceres/
H A Dconjugate_gradients_solver.h61 virtual Summary Solve(LinearOperator* A,
H A Dcoordinate_descent_minimizer.h70 void Solve(Program* program,
H A Diterative_schur_complement_solver_test.cc90 qr->Solve(&dense_A, b_.get(), per_solve_options, reference_solution.data());
100 isc.Solve(A_.get(), b_.get(), per_solve_options, isc_sol.data());
H A Dsymmetric_linear_solver_test.cc72 solver.Solve(A.get(), b.data(), per_solve_options, x.data());
129 solver.Solve(A.get(), b.data(), per_solve_options, x.data());
H A Dschur_complement_solver_test.cc78 qr->Solve(&dense_A, b.get(), LinearSolver::PerSolveOptions(), sol.get());
83 qr->Solve(&dense_A, b.get(), per_solve_options, sol_d.get());
113 summary = solver->Solve(A.get(), b.get(), per_solve_options, x.get());
H A Dlinear_solver.h63 // information across solves. This means that calling Solve on the
70 // a particular Solve call.
146 // Options for the Solve method.
239 // Summary of a call to the Solve method. We should move away from
256 // Solve Ax = b.
257 virtual Summary Solve(LinearOperator* A,
283 // details behind a private virtual method, and has the Solve method
289 virtual LinearSolver::Summary Solve( function in class:ceres::internal::TypedLinearSolver
294 ScopedExecutionTimer total_time("LinearSolver::Solve", &execution_summary_);
H A Dcgnr_solver.cc53 EventLogger event_logger("CgnrSolver::Solve");
72 // Solve (AtA + DtD)x = z (= Atb).
79 conjugate_gradient_solver.Solve(&lhs, z.get(), cg_per_solve_options, x);
80 event_logger.AddEvent("Solve");
H A Dsolver.cc66 void Solver::Solve(const Solver::Options& options, function in class:ceres::Solver
72 internal::SolverImpl::Solve(options, problem_impl, summary);
77 void Solve(const Solver::Options& options, function in namespace:ceres
81 solver.Solve(options, problem, summary);
H A Dunsymmetric_linear_solver_test.cc89 solver->Solve(transformed_A.get(),
97 solver->Solve(transformed_A.get(),
H A Dc_api.cc186 ceres::Solve(options, problem, &summary);
H A Diterative_schur_complement_solver.cc69 EventLogger event_logger("IterativeSchurComplementSolver::Solve");
160 cg_summary = cg_solver.Solve(schur_complement_.get(),
172 event_logger.AddEvent("Solve");
H A Dlevenberg_marquardt_strategy.cc107 linear_solver_->Solve(jacobian, residuals, solve_options, step);
H A Dsolver_impl.h55 static void Solve(const Solver::Options& options,
/external/ceres-solver/include/ceres/
H A Dsolver.h543 // linear in a_1 and a_2, i.e., Solve for the trust region step
739 // When the user calls Solve, before the actual optimization
753 // Some total of all time spent inside Ceres when Solve is called.
816 virtual void Solve(const Options& options,
822 void Solve(const Solver::Options& options,

Completed in 206 milliseconds

12