/external/ceres-solver/internal/ceres/ |
linear_solver.cc | 49 LinearSolverType linear_solver_type) { 50 if (!IsSchurType(linear_solver_type)) { 51 return linear_solver_type; 54 if (linear_solver_type == SPARSE_SCHUR) { 58 if (linear_solver_type == DENSE_SCHUR) { 65 if (linear_solver_type == ITERATIVE_SCHUR) { 69 return linear_solver_type;
|
solver_test.cc | 96 options.linear_solver_type = DENSE_QR; 246 options.linear_solver_type = SPARSE_NORMAL_CHOLESKY; 256 options.linear_solver_type = SPARSE_NORMAL_CHOLESKY; 266 options.linear_solver_type = ITERATIVE_SCHUR; 269 options.linear_solver_type = CGNR; 275 options.linear_solver_type = DENSE_QR; 280 options.linear_solver_type = DENSE_NORMAL_CHOLESKY; 283 options.linear_solver_type = DENSE_SCHUR; 286 options.linear_solver_type = SPARSE_SCHUR; 293 options.linear_solver_type = ITERATIVE_SCHUR [all...] |
evaluator.cc | 54 switch (options.linear_solver_type) {
|
reorder_program.h | 75 LinearSolverType linear_solver_type,
|
evaluator.h | 64 linear_solver_type(DENSE_QR), 69 LinearSolverType linear_solver_type; member in struct:ceres::internal::Evaluator::Options
|
solver.cc | 139 if (options.linear_solver_type == DENSE_NORMAL_CHOLESKY) { 145 if (options.linear_solver_type == DENSE_QR) { 151 if (options.linear_solver_type == DENSE_SCHUR) { 161 if (options.linear_solver_type == SPARSE_NORMAL_CHOLESKY) { 167 if (options.linear_solver_type == SPARSE_SCHUR) { 189 if (options.linear_solver_type == SPARSE_NORMAL_CHOLESKY) { 195 if (options.linear_solver_type == SPARSE_SCHUR) { 204 if (options.linear_solver_type == ITERATIVE_SCHUR || 205 options.linear_solver_type == CGNR) { 221 options.linear_solver_type != SPARSE_NORMAL_CHOLESKY) [all...] |
system_test.cc | 69 LinearSolverType linear_solver_type, 72 : linear_solver_type(linear_solver_type), 80 LinearSolverType linear_solver_type, 84 : linear_solver_type(linear_solver_type), 94 LinearSolverTypeToString(linear_solver_type), 102 LinearSolverType linear_solver_type; member in struct:ceres::internal::SolverConfig 137 options.linear_solver_type = config.linear_solver_type; [all...] |
solver_impl.cc | 349 summary->linear_solver_type_given = original_options.linear_solver_type; 350 summary->linear_solver_type_used = options.linear_solver_type; 471 options.linear_solver_type = CGNR; 623 if (IsSchurType(options.linear_solver_type) && 706 if (IsSchurType(options->linear_solver_type) && 719 if (options->linear_solver_type == ITERATIVE_SCHUR) { 725 options->linear_solver_type = 727 options->linear_solver_type); 730 if (IsSchurType(options->linear_solver_type)) { 732 options->linear_solver_type, [all...] |
evaluator_test.cc | 96 EvaluatorTestOptions(LinearSolverType linear_solver_type, 99 : linear_solver_type(linear_solver_type), 103 LinearSolverType linear_solver_type; member in struct:ceres::internal::EvaluatorTestOptions 118 GetParam().linear_solver_type); 119 if (GetParam().linear_solver_type == SPARSE_NORMAL_CHOLESKY) { 128 options.linear_solver_type = GetParam().linear_solver_type; 602 options.linear_solver_type = DENSE_QR;
|
solver_impl_test.cc | 85 options.linear_solver_type = DENSE_QR;
|
c_api.cc | 182 options.linear_solver_type = ceres::DENSE_QR;
|
linear_solver.h | 281 // by the user. The input linear_solver_type is returned otherwise. 283 LinearSolverType linear_solver_type);
|
schur_complement_solver_test.cc | 89 ceres::LinearSolverType linear_solver_type, 98 options.type = linear_solver_type;
|
reorder_program_test.cc | 84 options.linear_solver_type = DENSE_SCHUR;
|
reorder_program.cc | 310 const LinearSolverType linear_solver_type, 352 if (linear_solver_type == SPARSE_SCHUR &&
|
coordinate_descent_minimizer.cc | 114 evaluator_options_.linear_solver_type = DENSE_QR;
|
/external/ceres-solver/include/ceres/ |
solver.h | 96 linear_solver_type = DENSE_QR; 98 linear_solver_type = SPARSE_NORMAL_CHOLESKY; 397 LinearSolverType linear_solver_type; member in struct:ceres::Solver::Options [all...] |
/external/ceres-solver/examples/ |
circle_fit.cc | 152 options.linear_solver_type = ceres::DENSE_QR;
|
powell.cc | 134 options.linear_solver_type = ceres::DENSE_QR;
|
curve_fitting.cc | 154 options.linear_solver_type = ceres::DENSE_QR;
|
denoising.cc | 153 options.linear_solver_type = ceres::SPARSE_NORMAL_CHOLESKY;
|
robust_curve_fitting.cc | 154 options.linear_solver_type = ceres::DENSE_QR;
|
simple_bundle_adjuster.cc | 211 options.linear_solver_type = ceres::DENSE_SCHUR;
|
more_garbow_hillstrom.cc | 288 options.linear_solver_type = DENSE_QR; 319 options.linear_solver_type = DENSE_QR;
|
bundle_adjuster.cc | 127 &options->linear_solver_type));
|