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 147 // Returns step_size \in [min_step_size, max_step_size] which minimizes the
156 const double max_step_size) const {
159 max_step_size <= current.x)) {
162 return min(max(current.x * 0.5, min_step_size), max_step_size);
164 CHECK_GT(max_step_size, current.x);
170 return max_step_size;
214 MinimizeInterpolatingPolynomial(samples, min_step_size, max_step_size,
586 const double max_step_size = local
604 max_step_size);
    [all...]
line_search.h 221 const double max_step_size) const;

Completed in 192 milliseconds