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

  /external/ceres-solver/internal/ceres/
line_search.cc 144 // Returns step_size \in [min_step_size, max_step_size] which minimizes the
153 const double max_step_size) const {
156 max_step_size <= current.x)) {
159 return min(max(current.x * 0.5, min_step_size), max_step_size);
161 CHECK_GT(max_step_size, current.x);
167 return max_step_size;
210 MinimizeInterpolatingPolynomial(samples, min_step_size, max_step_size,
534 const double max_step_size = local
552 max_step_size);
line_search.h 220 const double max_step_size) const;

Completed in 879 milliseconds