Home
last modified time | relevance | path

Searched refs:max_step_size (Results 1 – 2 of 2) sorted by relevance

/external/ceres-solver/internal/ceres/
Dline_search.cc156 const double max_step_size) const { in InterpolatingPolynomialMinimizingStepSize()
159 max_step_size <= current.x)) { in InterpolatingPolynomialMinimizingStepSize()
162 return min(max(current.x * 0.5, min_step_size), max_step_size); in InterpolatingPolynomialMinimizingStepSize()
164 CHECK_GT(max_step_size, current.x); in InterpolatingPolynomialMinimizingStepSize()
170 return max_step_size; in InterpolatingPolynomialMinimizingStepSize()
214 MinimizeInterpolatingPolynomial(samples, min_step_size, max_step_size, in InterpolatingPolynomialMinimizingStepSize()
586 const double max_step_size = in BracketingPhase() local
604 max_step_size); in BracketingPhase()
Dline_search.h221 const double max_step_size) const;