Home | History | Annotate | Download | only in ceres

Lines Matching refs:Problem

42 #include "ceres/problem.h"
47 using ceres::Problem;
57 return reinterpret_cast<ceres_problem_t*>(new Problem);
60 void ceres_free_problem(ceres_problem_t* problem) {
61 delete reinterpret_cast<Problem*>(problem);
142 ceres_problem_t* problem,
151 Problem* ceres_problem = reinterpret_cast<Problem*>(problem);
175 Problem* problem = reinterpret_cast<Problem*>(c_problem);
186 ceres::Solve(options, problem, &summary);