Lines Matching refs:Problem
40 #include "ceres/problem.h"
90 Problem::Options problem_options;
92 Problem problem(problem_options);
93 problem.AddResidualBlock(cost_function.get(), NULL, &x);
106 Solve(options, &problem, &summary);
118 Solve(options, &problem, &summary);
163 Problem problem;
167 Solve(options, &problem, &summary);
175 Problem problem;
179 Solve(options, &problem, &summary);
187 Problem problem;
189 problem.AddParameterBlock(&x, 1);
193 Solve(options, &problem, &summary);
201 Problem problem;
203 problem.AddParameterBlock(&x, 1);
207 Solve(options, &problem, &summary);
215 Problem problem;
217 problem.AddResidualBlock(new UnaryIdentityCostFunction, NULL, &x);
218 problem.SetParameterBlockConstant(&x);
222 Solve(options, &problem, &summary);
229 Problem problem;
231 problem.AddResidualBlock(new UnaryIdentityCostFunction, NULL, &x);
232 problem.SetParameterBlockConstant(&x);
236 Solve(options, &problem, &summary);