Searched refs:f_n_minus_1 (Results 1 – 2 of 2) sorted by relevance
/third_party/boost/boost/math/tools/ |
D | recurrence.hpp | 244 forward_recurrence_iterator(const Recurrence& r, value_type f_n_minus_1, value_type f_n) in forward_recurrence_iterator() 245 : f_n_minus_1(f_n_minus_1), f_n(f_n), coef(r), k(0) {} in forward_recurrence_iterator() 251 …f_n_minus_1 = f_n * boost::math::tools::function_ratio_from_forwards_recurrence(detail::recurrence… in forward_recurrence_iterator() 260 value_type f_n_plus_1 = a * f_n_minus_1 / -c + b * f_n / -c; in operator ++() 261 swap(f_n_minus_1, f_n); in operator ++() 276 value_type f_n_minus_1, f_n; member 302 value_type f_n_minus_1 = c * f_n_plus_1 / -a + b * f_n / -a; in operator ++() local 304 swap(f_n, f_n_minus_1); in operator ++()
|
/third_party/boost/libs/math/doc/internals/ |
D | recurrence.qbk | 137 forward_recurrence_iterator(const Recurrence& r, value_type f_n_minus_1, value_type f_n);
|