mirror of
https://github.com/boostorg/interval.git
synced 2026-01-28 07:12:17 +00:00
32 lines
781 B
C++
32 lines
781 B
C++
#include <boost/numeric/interval.hpp>
|
|
#include <boost/numeric/interval/io.hpp>
|
|
#include <iostream>
|
|
|
|
// I is an interval class, the polynom is a simple array
|
|
template<class I>
|
|
I horner(const I& x, const I p[], int n) {
|
|
|
|
// initialize and restore the rounding mode
|
|
typename I::traits_type::rounding rnd;
|
|
|
|
// define the unprotected version of the interval type
|
|
typedef typename boost::numeric::interval_lib::unprotect<I>::type R;
|
|
|
|
const R& a = x;
|
|
R y = p[n - 1];
|
|
for(int i = n - 2; i >= 0; i--) {
|
|
y = y * a + (const R&)(p[i]);
|
|
}
|
|
return y;
|
|
|
|
// restore the rounding mode with the destruction of rnd
|
|
}
|
|
|
|
int main() {
|
|
typedef boost::numeric::interval<double> I;
|
|
I p[3] = { -1.0, 0, 1.0 };
|
|
I x = 1.0;
|
|
std::cout << horner(x, p, 3) << std::endl;
|
|
return 0;
|
|
}
|