Lines Matching defs:problem_impl
36 #include "ceres/problem_impl.h"
759 ProblemImpl problem_impl;
762 SolverImpl::Solve(options, &problem_impl, &summary);
768 ProblemImpl problem_impl;
772 problem_impl.AddParameterBlock(&x, 1);
773 SolverImpl::Solve(options, &problem_impl, &summary);
780 ProblemImpl problem_impl;
784 problem_impl.AddResidualBlock(new UnaryIdentityCostFunction, NULL, &x);
785 problem_impl.SetParameterBlockConstant(&x);
786 SolverImpl::Solve(options, &problem_impl, &summary);