HomeSort by relevance Sort by last modified time
    Searched refs:termination_type (Results 1 - 22 of 22) sorted by null

  /external/ceres-solver/internal/ceres/
minimizer.cc 53 summary->termination_type = USER_SUCCESS;
57 summary->termination_type = USER_ABORT;
conjugate_gradients_solver.cc 79 summary.termination_type = MAX_ITERATIONS;
89 summary.termination_type = TOLERANCE;
106 summary.termination_type = TOLERANCE;
133 summary.termination_type = FAILURE;
143 summary.termination_type = FAILURE;
156 summary.termination_type = FAILURE;
163 summary.termination_type = FAILURE;
214 summary.termination_type = TOLERANCE;
224 summary.termination_type = TOLERANCE;
trust_region_strategy.h 109 termination_type(FAILURE) {
127 LinearSolverTerminationType termination_type; member in struct:ceres::internal::TrustRegionStrategy::Summary
solver.cc 88 termination_type(DID_NOT_RUN),
131 if (termination_type == DID_NOT_RUN) {
145 if (termination_type != NUMERICAL_FAILURE &&
146 termination_type != USER_ABORT) {
151 SolverTerminationTypeToString(termination_type));
164 if (termination_type == DID_NOT_RUN) {
308 if (termination_type == DID_NOT_RUN) {
321 if (termination_type != NUMERICAL_FAILURE &&
322 termination_type != USER_ABORT) {
374 SolverTerminationTypeToString(termination_type));
    [all...]
levenberg_marquardt_strategy.cc 108 if (linear_solver_summary.termination_type == FAILURE ||
111 linear_solver_summary.termination_type = FAILURE;
136 summary.termination_type = linear_solver_summary.termination_type;
line_search_minimizer.cc 100 summary->termination_type = NO_CONVERGENCE;
125 summary->termination_type = NUMERICAL_FAILURE;
142 summary->termination_type = GRADIENT_TOLERANCE;
195 summary->termination_type = DID_NOT_RUN;
209 summary->termination_type = NO_CONVERGENCE;
217 summary->termination_type = NO_CONVERGENCE;
248 summary->termination_type = NUMERICAL_FAILURE;
296 summary->termination_type = NUMERICAL_FAILURE;
322 summary->termination_type = GRADIENT_TOLERANCE;
338 summary->termination_type = FUNCTION_TOLERANCE
    [all...]
trust_region_minimizer.cc 85 summary->termination_type = NO_CONVERGENCE;
132 summary->termination_type = NUMERICAL_FAILURE;
155 summary->termination_type = GRADIENT_TOLERANCE;
187 summary->termination_type = NO_CONVERGENCE;
195 summary->termination_type = NO_CONVERGENCE;
234 if (strategy_summary.termination_type != FAILURE) {
262 summary->termination_type = NUMERICAL_FAILURE;
291 summary->termination_type = NUMERICAL_FAILURE;
364 summary->termination_type = PARAMETER_TOLERANCE;
376 summary->termination_type = FUNCTION_TOLERANCE
    [all...]
dense_qr_solver.cc 115 summary.termination_type = TOLERANCE;
117 summary.termination_type = FAILURE;
164 summary.termination_type = TOLERANCE;
iterative_schur_complement_solver.cc 87 cg_summary.termination_type = TOLERANCE;
157 cg_summary.termination_type = FAILURE;
164 if (cg_summary.termination_type != FAILURE) {
linear_solver.h 246 termination_type(FAILURE) {
251 LinearSolverTerminationType termination_type; member in struct:ceres::internal::LinearSolver::Summary
symmetric_linear_solver_test.cc 74 EXPECT_EQ(summary.termination_type, TOLERANCE);
131 EXPECT_EQ(summary.termination_type, TOLERANCE);
dogleg_strategy.cc 102 summary.termination_type = TOLERANCE;
136 summary.termination_type = linear_solver_summary.termination_type;
138 if (linear_solver_summary.termination_type != FAILURE) {
149 summary.termination_type = FAILURE;
516 linear_solver_summary.termination_type = FAILURE;
582 if (linear_solver_summary.termination_type == FAILURE ||
586 linear_solver_summary.termination_type = FAILURE;
592 if (linear_solver_summary.termination_type != FAILURE) {
dogleg_strategy_test.cc 147 EXPECT_NE(summary.termination_type, FAILURE);
167 EXPECT_NE(summary.termination_type, FAILURE);
187 EXPECT_NE(summary.termination_type, FAILURE);
249 EXPECT_NE(summary.termination_type, FAILURE);
277 EXPECT_NE(summary.termination_type, FAILURE);
dense_normal_cholesky_solver.cc 98 summary.termination_type = TOLERANCE;
150 summary.termination_type = info == 0 ? TOLERANCE : FAILURE;
unsymmetric_linear_solver_test.cc 102 EXPECT_EQ(unregularized_solve_summary.termination_type, TOLERANCE);
108 EXPECT_EQ(regularized_solve_summary.termination_type, TOLERANCE);
levenberg_marquardt_strategy_test.cc 153 EXPECT_EQ(summary.termination_type, FAILURE);
sparse_normal_cholesky_solver.cc 154 summary.termination_type = TOLERANCE;
231 summary.termination_type = TOLERANCE;
schur_complement_solver.cc 80 summary.termination_type = FAILURE;
93 summary.termination_type = TOLERANCE;
solver_impl.cc 493 summary->termination_type = FUNCTION_TOLERANCE;
584 if (summary->termination_type == USER_ABORT ||
585 summary->termination_type == NUMERICAL_FAILURE) {
834 summary->termination_type = FUNCTION_TOLERANCE;
    [all...]
solver_impl_test.cc 763 EXPECT_EQ(summary.termination_type, DID_NOT_RUN);
774 EXPECT_EQ(summary.termination_type, DID_NOT_RUN);
787 EXPECT_EQ(summary.termination_type, FUNCTION_TOLERANCE);
    [all...]
system_test.cc 160 CHECK_NE(summary.termination_type, ceres::NUMERICAL_FAILURE)
  /external/ceres-solver/include/ceres/
solver.h 715 SolverTerminationType termination_type; member in struct:ceres::Solver::Summary
    [all...]

Completed in 445 milliseconds