Searched refs:f_n_plus_1 (Results 1 – 2 of 2) sorted by relevance
/third_party/boost/boost/math/tools/ |
D | recurrence.hpp | 260 value_type f_n_plus_1 = a * f_n_minus_1 / -c + b * f_n / -c; in operator ++() local 262 swap(f_n, f_n_plus_1); in operator ++() 286 backward_recurrence_iterator(const Recurrence& r, value_type f_n_plus_1, value_type f_n) in backward_recurrence_iterator() 287 : f_n_plus_1(f_n_plus_1), f_n(f_n), coef(r), k(0) {} in backward_recurrence_iterator() 293 …f_n_plus_1 = f_n * boost::math::tools::function_ratio_from_backwards_recurrence(detail::recurrence… in backward_recurrence_iterator() 302 value_type f_n_minus_1 = c * f_n_plus_1 / -a + b * f_n / -a; in operator ++() 303 swap(f_n_plus_1, f_n); in operator ++() 318 value_type f_n_plus_1, f_n; member
|
/third_party/boost/libs/math/doc/internals/ |
D | recurrence.qbk | 151 backward_recurrence_iterator(const Recurrence& r, value_type f_n_plus_1, value_type f_n);
|