Searched defs:BinaryCostFunction (Results 1 - 5 of 5) sorted by relevance

/external/ceres-solver/internal/ceres/
H A Dreorder_program_test.cc58 class BinaryCostFunction : public MockCostFunctionBase<2, 1, 1, 0> {}; class in namespace:ceres::internal
72 problem.AddResidualBlock(new BinaryCostFunction(), NULL, &z, &x);
73 problem.AddResidualBlock(new BinaryCostFunction(), NULL, &z, &y);
75 problem.AddResidualBlock(new BinaryCostFunction(), NULL, &x, &y);
H A Dprogram_test.cc75 class BinaryCostFunction : public MockCostFunctionBase<2, 1, 1, 0> {}; class in namespace:ceres::internal
88 problem.AddResidualBlock(new BinaryCostFunction(), NULL, &x, &y);
168 problem.AddResidualBlock(new BinaryCostFunction(), NULL, &x, &y);
195 problem.AddResidualBlock(new BinaryCostFunction(), NULL, &x, &y);
222 problem.AddResidualBlock(new BinaryCostFunction(), NULL, &x, &y);
H A Dgradient_checking_cost_function_test.cc284 class BinaryCostFunction: public CostFunction { class in namespace:ceres::internal
286 BinaryCostFunction(int num_residuals, function in class:ceres::internal::BinaryCostFunction
355 problem_impl.AddResidualBlock(new BinaryCostFunction(6, 5, 4) ,
357 problem_impl.AddResidualBlock(new BinaryCostFunction(3, 3, 5),
359 problem_impl.AddResidualBlock(new BinaryCostFunction(7, 5, 3),
H A Dcovariance_test.cc158 class BinaryCostFunction: public CostFunction { class in namespace:ceres::internal
160 BinaryCostFunction(const int num_residuals, function in class:ceres::internal::BinaryCostFunction
257 new BinaryCostFunction(1, 3, 2, jacobian1, jacobian2),
267 new BinaryCostFunction(1, 1, 2, jacobian1, jacobian2),
647 new BinaryCostFunction(1, 3, 2, jacobian1, jacobian2),
657 new BinaryCostFunction(1, 1, 2, jacobian1, jacobian2),
H A Dproblem_test.cc76 class BinaryCostFunction: public CostFunction { class in namespace:ceres::internal
78 BinaryCostFunction(int num_residuals, function in class:ceres::internal::BinaryCostFunction
161 new BinaryCostFunction(2, 3, 3), NULL, x, x),
180 new BinaryCostFunction(2, 3, 4), NULL, x, z),
294 problem.AddResidualBlock(new BinaryCostFunction(6, 5, 4) , NULL, z, y);
295 problem.AddResidualBlock(new BinaryCostFunction(3, 3, 5), NULL, x, z);
296 problem.AddResidualBlock(new BinaryCostFunction(7, 5, 3), NULL, z, x);
636 CostFunction* cost_yz = new BinaryCostFunction (1, 4, 5);
637 CostFunction* cost_yw = new BinaryCostFunction (1, 4, 3);
638 CostFunction* cost_zw = new BinaryCostFunction (
[all...]

Completed in 81 milliseconds