Searched refs:guess0 (Results 1 – 1 of 1) sorted by relevance
/third_party/boost/boost/math/tools/ |
D | roots.hpp | 408 T guess0 = guess; in bracket_root_towards_max() local 451 … return (guess0 - guess) + bracket_root_towards_min(f, guess, f_current, min, max, count); in bracket_root_towards_max() 453 return guess0 - (max + min) / 2; in bracket_root_towards_max() 463 T guess0 = guess; in bracket_root_towards_min() local 507 … return (guess0 - guess) + bracket_root_towards_max(f, guess, f_current, min, max, count); in bracket_root_towards_min() 509 return guess0 - (max + min) / 2; in bracket_root_towards_min()
|