]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/math/tools/detail/polynomial_horner2_9.hpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / boost / math / tools / detail / polynomial_horner2_9.hpp
CommitLineData
7c673cae
FG
1// (C) Copyright John Maddock 2007.
2// Use, modification and distribution are subject to the
3// Boost Software License, Version 1.0. (See accompanying file
4// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5//
6// This file is machine generated, do not edit by hand
7
8// Polynomial evaluation using second order Horners rule
9#ifndef BOOST_MATH_TOOLS_POLY_EVAL_9_HPP
10#define BOOST_MATH_TOOLS_POLY_EVAL_9_HPP
11
12namespace boost{ namespace math{ namespace tools{ namespace detail{
13
14template <class T, class V>
f67539c2 15inline V evaluate_polynomial_c_imp(const T*, const V&, const boost::integral_constant<int, 0>*) BOOST_MATH_NOEXCEPT(V)
7c673cae
FG
16{
17 return static_cast<V>(0);
18}
19
20template <class T, class V>
f67539c2 21inline V evaluate_polynomial_c_imp(const T* a, const V&, const boost::integral_constant<int, 1>*) BOOST_MATH_NOEXCEPT(V)
7c673cae
FG
22{
23 return static_cast<V>(a[0]);
24}
25
26template <class T, class V>
f67539c2 27inline V evaluate_polynomial_c_imp(const T* a, const V& x, const boost::integral_constant<int, 2>*) BOOST_MATH_NOEXCEPT(V)
7c673cae
FG
28{
29 return static_cast<V>(a[1] * x + a[0]);
30}
31
32template <class T, class V>
f67539c2 33inline V evaluate_polynomial_c_imp(const T* a, const V& x, const boost::integral_constant<int, 3>*) BOOST_MATH_NOEXCEPT(V)
7c673cae
FG
34{
35 return static_cast<V>((a[2] * x + a[1]) * x + a[0]);
36}
37
38template <class T, class V>
f67539c2 39inline V evaluate_polynomial_c_imp(const T* a, const V& x, const boost::integral_constant<int, 4>*) BOOST_MATH_NOEXCEPT(V)
7c673cae
FG
40{
41 return static_cast<V>(((a[3] * x + a[2]) * x + a[1]) * x + a[0]);
42}
43
44template <class T, class V>
f67539c2 45inline V evaluate_polynomial_c_imp(const T* a, const V& x, const boost::integral_constant<int, 5>*) BOOST_MATH_NOEXCEPT(V)
7c673cae
FG
46{
47 V x2 = x * x;
48 return static_cast<V>((a[4] * x2 + a[2]) * x2 + a[0] + (a[3] * x2 + a[1]) * x);
49}
50
51template <class T, class V>
f67539c2 52inline V evaluate_polynomial_c_imp(const T* a, const V& x, const boost::integral_constant<int, 6>*) BOOST_MATH_NOEXCEPT(V)
7c673cae
FG
53{
54 V x2 = x * x;
55 return static_cast<V>(((a[5] * x2 + a[3]) * x2 + a[1]) * x + (a[4] * x2 + a[2]) * x2 + a[0]);
56}
57
58template <class T, class V>
f67539c2 59inline V evaluate_polynomial_c_imp(const T* a, const V& x, const boost::integral_constant<int, 7>*) BOOST_MATH_NOEXCEPT(V)
7c673cae
FG
60{
61 V x2 = x * x;
62 return static_cast<V>(((a[6] * x2 + a[4]) * x2 + a[2]) * x2 + a[0] + ((a[5] * x2 + a[3]) * x2 + a[1]) * x);
63}
64
65template <class T, class V>
f67539c2 66inline V evaluate_polynomial_c_imp(const T* a, const V& x, const boost::integral_constant<int, 8>*) BOOST_MATH_NOEXCEPT(V)
7c673cae
FG
67{
68 V x2 = x * x;
69 return static_cast<V>((((a[7] * x2 + a[5]) * x2 + a[3]) * x2 + a[1]) * x + ((a[6] * x2 + a[4]) * x2 + a[2]) * x2 + a[0]);
70}
71
72template <class T, class V>
f67539c2 73inline V evaluate_polynomial_c_imp(const T* a, const V& x, const boost::integral_constant<int, 9>*) BOOST_MATH_NOEXCEPT(V)
7c673cae
FG
74{
75 V x2 = x * x;
76 return static_cast<V>((((a[8] * x2 + a[6]) * x2 + a[4]) * x2 + a[2]) * x2 + a[0] + (((a[7] * x2 + a[5]) * x2 + a[3]) * x2 + a[1]) * x);
77}
78
79
80}}}} // namespaces
81
82#endif // include guard
83