OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BinaryCostFunction
(Results
1 - 5
of
5
) sorted by null
/external/ceres-solver/internal/ceres/
reorder_program_test.cc
58
class
BinaryCostFunction
: public MockCostFunctionBase<2, 1, 1, 0> {};
72
problem.AddResidualBlock(new
BinaryCostFunction
(), NULL, &z, &x);
73
problem.AddResidualBlock(new
BinaryCostFunction
(), NULL, &z, &y);
75
problem.AddResidualBlock(new
BinaryCostFunction
(), NULL, &x, &y);
gradient_checking_cost_function_test.cc
284
class
BinaryCostFunction
: public CostFunction {
286
BinaryCostFunction
(int num_residuals,
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),
problem_test.cc
76
class
BinaryCostFunction
: public CostFunction {
78
BinaryCostFunction
(int num_residuals,
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
(1, 5, 3)
[
all
...]
program_test.cc
75
class
BinaryCostFunction
: public MockCostFunctionBase<2, 1, 1, 0> {};
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);
covariance_test.cc
158
class
BinaryCostFunction
: public CostFunction {
160
BinaryCostFunction
(const int num_residuals,
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),
Completed in 96 milliseconds