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

  /external/ceres-solver/include/ceres/
types.h 307 // (new_cost - old_cost) < function_tolerance * old_cost;
308 FUNCTION_TOLERANCE,
  /external/ceres-solver/internal/ceres/
types.cc 284 CASESTR(FUNCTION_TOLERANCE);
line_search_minimizer.cc 332 options.function_tolerance * previous_state.cost;
337 << " <= " << options.function_tolerance;
338 summary->termination_type = FUNCTION_TOLERANCE;
trust_region_minimizer.cc 370 options_.function_tolerance * cost;
375 << " <= " << options_.function_tolerance;
376 summary->termination_type = FUNCTION_TOLERANCE;
solver_impl.cc 484 LOG(INFO) << "Terminating: FUNCTION_TOLERANCE reached. "
490 // FUNCTION_TOLERANCE is the right convergence here, as we know
493 summary->termination_type = FUNCTION_TOLERANCE;
828 LOG(INFO) << "Terminating: FUNCTION_TOLERANCE reached. "
831 // FUNCTION_TOLERANCE is the right convergence here, as we know
834 summary->termination_type = FUNCTION_TOLERANCE;
    [all...]
solver_impl_test.cc 787 EXPECT_EQ(summary.termination_type, FUNCTION_TOLERANCE);
    [all...]
  /external/ceres-solver/examples/
nist.cc 164 (status == ceres::FUNCTION_TOLERANCE) ||
516 options->function_tolerance = 1e-18;

Completed in 267 milliseconds