/external/ceres-solver/internal/ceres/ |
program_test.cc | 92 double fixed_cost = 0.0; local 98 &fixed_cost, 104 EXPECT_EQ(fixed_cost, 0.0); 116 double fixed_cost = 0.0; local 122 &fixed_cost, 128 EXPECT_EQ(fixed_cost, 9.0); 143 double fixed_cost = 0.0; local 149 &fixed_cost, 154 EXPECT_EQ(fixed_cost, 0.0); 172 double fixed_cost = 0.0 local 199 double fixed_cost = 0.0; local 237 double fixed_cost = 0.0; local [all...] |
program.cc | 265 double* fixed_cost, 268 CHECK_NOTNULL(fixed_cost); 273 fixed_cost, 283 double* fixed_cost, 286 CHECK_NOTNULL(fixed_cost); 292 *fixed_cost = 0.0; 324 // added to the variable fixed_cost. 335 *fixed_cost += cost;
|
program.h | 139 // fixed_cost will be equal to the sum of the costs of the residual 146 double* fixed_cost, 172 // fixed_cost will be equal to the sum of the costs of the residual 178 double* fixed_cost,
|
solver_impl.h | 87 // If fixed_cost is not NULL, the residual blocks that are removed 88 // are evaluated and the sum of their cost is returned in fixed_cost. 91 double* fixed_cost,
|
solver_impl.cc | 306 &summary->fixed_cost, 330 summary->initial_cost = summary->fixed_cost; 331 summary->final_cost = summary->fixed_cost; 533 &summary->fixed_cost, 549 summary->initial_cost = summary->fixed_cost; 550 summary->final_cost = summary->fixed_cost; 664 double* fixed_cost, 672 fixed_cost, [all...] |
line_search_minimizer.cc | 142 summary->initial_cost = current_state.cost + summary->fixed_cost; 143 iteration_summary.cost = current_state.cost + summary->fixed_cost; 360 iteration_summary.cost = current_state.cost + summary->fixed_cost;
|
trust_region_minimizer.cc | 219 summary->initial_cost = cost + summary->fixed_cost; 220 iteration_summary.cost = cost + summary->fixed_cost; 366 iteration_summary.cost = cost + summary->fixed_cost; 666 iteration_summary.cost = cost + summary->fixed_cost;
|
coordinate_descent_minimizer.cc | 209 summary->fixed_cost = 0.0;
|
solver.cc | 346 fixed_cost(-1.0),
|
/external/ceres-solver/docs/source/ |
version_history.rst | 631 #. A better way to compute ``Solver::Summary::fixed_cost``. (Markus Moll)
|
solving.rst | [all...] |
/external/ceres-solver/include/ceres/ |
solver.h | 760 double fixed_cost; member in struct:ceres::Solver::Summary [all...] |