#1632: Default Interval rounding policies incomplete ---------------------------------------------+------------------------------ Reporter: Steven Robbins <[EMAIL PROTECTED]> | Owner: dgregor Type: Bugs | Status: new Milestone: Boost 1.36.0 | Component: numeric Version: Boost 1.34.1 | Severity: Problem Keywords: | ---------------------------------------------+------------------------------ Report originates at http://bugs.debian.org/440178
The rounding policy requirements (http://boost.org/libs/numeric/interval/doc/rounding.htm) list e.g. tan_down(), but none of the implementations in rounded_arith.hpp implement it. The result is that this code fails to compile: {{{ #include <boost/numeric/interval.hpp> int main( int ac, char* av[] ) { boost::numeric::interval<double> I(0.1, 0.2); I = tan(I); return 0; } }}} -- Ticket URL: <http://svn.boost.org/trac/boost/ticket/1632> Boost C++ Libraries <http://www.boost.org/> Boost provides free peer-reviewed portable C++ source libraries.