rounded_transc.hpp gecode/third-party/boost/numeric/interval/rounding.hpp gecode/third-party/boost/numeric/interval/detail/bugs.hpp gecode/third-party/boost/config/no_tr1/cmath.hpp /usr/include/gecode/third-party/boost/numeric/interval.hpp boost::numeric::interval_lib::rounded_transc_exact boost::numeric::interval_lib::rounded_transc_std boost::numeric::interval_lib::rounded_transc_opp boost boost::numeric boost::numeric::interval_lib BOOST_NUMERIC_INTERVAL_new_func f T f##_down(const T& x) { BOOST_NUMERIC_INTERVAL_using_math(f); return f(x); } \ T f##_up (const T& x) { BOOST_NUMERIC_INTERVAL_using_math(f); return f(x); } BOOST_NUMERIC_INTERVAL_new_func f T f##_down(const T& x) { BOOST_NUMERIC_INTERVAL_using_ahyp(f); return f(x); } \ T f##_up (const T& x) { BOOST_NUMERIC_INTERVAL_using_ahyp(f); return f(x); } BOOST_NUMERIC_INTERVAL_new_func f T f##_down(const T& x) \ { BOOST_NUMERIC_INTERVAL_using_math(f); \ this->downward(); return this->force_rounding(f(x)); } \ T f##_up (const T& x) \ { BOOST_NUMERIC_INTERVAL_using_math(f); \ this->upward(); return this->force_rounding(f(x)); } BOOST_NUMERIC_INTERVAL_new_func f T f##_down(const T& x) \ { BOOST_NUMERIC_INTERVAL_using_ahyp(f); \ this->downward(); return this->force_rounding(f(x)); } \ T f##_up (const T& x) \ { BOOST_NUMERIC_INTERVAL_using_ahyp(f); \ this->upward(); return this->force_rounding(f(x)); } BOOST_NUMERIC_INTERVAL_new_func f T f##_down(const T& x) \ { BOOST_NUMERIC_INTERVAL_using_math(f); \ this->downward(); T y = this->force_rounding(f(x)); \ this->upward(); return y; } \ T f##_up (const T& x) \ { BOOST_NUMERIC_INTERVAL_using_math(f); \ return this->force_rounding(f(x)); } BOOST_NUMERIC_INTERVAL_new_func f T f##_down(const T& x) \ { BOOST_NUMERIC_INTERVAL_using_math(f); \ return -this->force_rounding(-f(x)); } \ T f##_up (const T& x) \ { BOOST_NUMERIC_INTERVAL_using_math(f); \ return this->force_rounding(f(x)); } BOOST_NUMERIC_INTERVAL_new_func f T f##_down(const T& x) \ { BOOST_NUMERIC_INTERVAL_using_ahyp(f); \ this->downward(); T y = this->force_rounding(f(x)); \ this->upward(); return y; } \ T f##_up (const T& x) \ { BOOST_NUMERIC_INTERVAL_using_ahyp(f); \ return this->force_rounding(f(x)); } BOOST_NUMERIC_INTERVAL_new_func f T f##_down(const T& x) \ { BOOST_NUMERIC_INTERVAL_using_ahyp(f); \ return -this->force_rounding(-f(x)); } \ T f##_up (const T& x) \ { BOOST_NUMERIC_INTERVAL_using_ahyp(f); \ return this->force_rounding(f(x)); } /*Boostinterval/rounded_transc.hpptemplateimplementationfile * *Copyright2002-2003HervéBrönnimann,GuillaumeMelquiond,SylvainPion * *DistributedundertheBoostSoftwareLicense,Version1.0. *(SeeaccompanyingfileLICENSE_1_0.txtor *copyathttp://www.boost.org/LICENSE_1_0.txt) */ #ifndefBOOST_NUMERIC_INTERVAL_ROUNDED_TRANSC_HPP #defineBOOST_NUMERIC_INTERVAL_ROUNDED_TRANSC_HPP #include<gecode/third-party/boost/numeric/interval/rounding.hpp> #include<gecode/third-party/boost/numeric/interval/detail/bugs.hpp> #include<gecode/third-party/boost/config/no_tr1/cmath.hpp> namespaceboost{ namespacenumeric{ namespaceinterval_lib{ template<classT,classRounding> structrounded_transc_exact:Rounding { #defineBOOST_NUMERIC_INTERVAL_new_func(f)\ Tf##_down(constT&x){BOOST_NUMERIC_INTERVAL_using_math(f);returnf(x);}\ Tf##_up(constT&x){BOOST_NUMERIC_INTERVAL_using_math(f);returnf(x);} BOOST_NUMERIC_INTERVAL_new_func(exp) BOOST_NUMERIC_INTERVAL_new_func(log) BOOST_NUMERIC_INTERVAL_new_func(sin) BOOST_NUMERIC_INTERVAL_new_func(cos) BOOST_NUMERIC_INTERVAL_new_func(tan) BOOST_NUMERIC_INTERVAL_new_func(asin) BOOST_NUMERIC_INTERVAL_new_func(acos) BOOST_NUMERIC_INTERVAL_new_func(atan) BOOST_NUMERIC_INTERVAL_new_func(sinh) BOOST_NUMERIC_INTERVAL_new_func(cosh) BOOST_NUMERIC_INTERVAL_new_func(tanh) #undefBOOST_NUMERIC_INTERVAL_new_func #defineBOOST_NUMERIC_INTERVAL_new_func(f)\ Tf##_down(constT&x){BOOST_NUMERIC_INTERVAL_using_ahyp(f);returnf(x);}\ Tf##_up(constT&x){BOOST_NUMERIC_INTERVAL_using_ahyp(f);returnf(x);} BOOST_NUMERIC_INTERVAL_new_func(asinh) BOOST_NUMERIC_INTERVAL_new_func(acosh) BOOST_NUMERIC_INTERVAL_new_func(atanh) #undefBOOST_NUMERIC_INTERVAL_new_func }; template<classT,classRounding> structrounded_transc_std:Rounding { #defineBOOST_NUMERIC_INTERVAL_new_func(f)\ Tf##_down(constT&x)\ {BOOST_NUMERIC_INTERVAL_using_math(f);\ this->downward();returnthis->force_rounding(f(x));}\ Tf##_up(constT&x)\ {BOOST_NUMERIC_INTERVAL_using_math(f);\ this->upward();returnthis->force_rounding(f(x));} BOOST_NUMERIC_INTERVAL_new_func(exp) BOOST_NUMERIC_INTERVAL_new_func(log) BOOST_NUMERIC_INTERVAL_new_func(sin) BOOST_NUMERIC_INTERVAL_new_func(cos) BOOST_NUMERIC_INTERVAL_new_func(tan) BOOST_NUMERIC_INTERVAL_new_func(asin) BOOST_NUMERIC_INTERVAL_new_func(acos) BOOST_NUMERIC_INTERVAL_new_func(atan) BOOST_NUMERIC_INTERVAL_new_func(sinh) BOOST_NUMERIC_INTERVAL_new_func(cosh) BOOST_NUMERIC_INTERVAL_new_func(tanh) #undefBOOST_NUMERIC_INTERVAL_new_func #defineBOOST_NUMERIC_INTERVAL_new_func(f)\ Tf##_down(constT&x)\ {BOOST_NUMERIC_INTERVAL_using_ahyp(f);\ this->downward();returnthis->force_rounding(f(x));}\ Tf##_up(constT&x)\ {BOOST_NUMERIC_INTERVAL_using_ahyp(f);\ this->upward();returnthis->force_rounding(f(x));} BOOST_NUMERIC_INTERVAL_new_func(asinh) BOOST_NUMERIC_INTERVAL_new_func(acosh) BOOST_NUMERIC_INTERVAL_new_func(atanh) #undefBOOST_NUMERIC_INTERVAL_new_func }; template<classT,classRounding> structrounded_transc_opp:Rounding { #defineBOOST_NUMERIC_INTERVAL_new_func(f)\ Tf##_down(constT&x)\ {BOOST_NUMERIC_INTERVAL_using_math(f);\ this->downward();Ty=this->force_rounding(f(x));\ this->upward();returny;}\ Tf##_up(constT&x)\ {BOOST_NUMERIC_INTERVAL_using_math(f);\ returnthis->force_rounding(f(x));} BOOST_NUMERIC_INTERVAL_new_func(exp) BOOST_NUMERIC_INTERVAL_new_func(log) BOOST_NUMERIC_INTERVAL_new_func(cos) BOOST_NUMERIC_INTERVAL_new_func(acos) BOOST_NUMERIC_INTERVAL_new_func(cosh) #undefBOOST_NUMERIC_INTERVAL_new_func #defineBOOST_NUMERIC_INTERVAL_new_func(f)\ Tf##_down(constT&x)\ {BOOST_NUMERIC_INTERVAL_using_math(f);\ return-this->force_rounding(-f(x));}\ Tf##_up(constT&x)\ {BOOST_NUMERIC_INTERVAL_using_math(f);\ returnthis->force_rounding(f(x));} BOOST_NUMERIC_INTERVAL_new_func(sin) BOOST_NUMERIC_INTERVAL_new_func(tan) BOOST_NUMERIC_INTERVAL_new_func(asin) BOOST_NUMERIC_INTERVAL_new_func(atan) BOOST_NUMERIC_INTERVAL_new_func(sinh) BOOST_NUMERIC_INTERVAL_new_func(tanh) #undefBOOST_NUMERIC_INTERVAL_new_func #defineBOOST_NUMERIC_INTERVAL_new_func(f)\ Tf##_down(constT&x)\ {BOOST_NUMERIC_INTERVAL_using_ahyp(f);\ this->downward();Ty=this->force_rounding(f(x));\ this->upward();returny;}\ Tf##_up(constT&x)\ {BOOST_NUMERIC_INTERVAL_using_ahyp(f);\ returnthis->force_rounding(f(x));} BOOST_NUMERIC_INTERVAL_new_func(asinh) BOOST_NUMERIC_INTERVAL_new_func(atanh) #undefBOOST_NUMERIC_INTERVAL_new_func #defineBOOST_NUMERIC_INTERVAL_new_func(f)\ Tf##_down(constT&x)\ {BOOST_NUMERIC_INTERVAL_using_ahyp(f);\ return-this->force_rounding(-f(x));}\ Tf##_up(constT&x)\ {BOOST_NUMERIC_INTERVAL_using_ahyp(f);\ returnthis->force_rounding(f(x));} BOOST_NUMERIC_INTERVAL_new_func(acosh) #undefBOOST_NUMERIC_INTERVAL_new_func }; }//namespaceinterval_lib }//namespacenumeric }//namespaceboost #endif//BOOST_NUMERIC_INTERVAL_ROUNDED_TRANSC_HPP