policies.hpp gecode/third-party/boost/numeric/interval/interval.hpp /usr/include/gecode/third-party/boost/numeric/interval/arith2.hpp /usr/include/gecode/third-party/boost/numeric/interval.hpp boost::numeric::interval_lib::policies boost::numeric::interval_lib::change_rounding boost::numeric::interval_lib::change_checking boost::numeric::interval_lib::unprotect boost boost::numeric boost::numeric::interval_lib /*Boostinterval/policies.hpptemplateimplementationfile * *Copyright2003GuillaumeMelquiond * *DistributedundertheBoostSoftwareLicense,Version1.0. *(SeeaccompanyingfileLICENSE_1_0.txtor *copyathttp://www.boost.org/LICENSE_1_0.txt) */ #ifndefBOOST_NUMERIC_INTERVAL_POLICIES_HPP #defineBOOST_NUMERIC_INTERVAL_POLICIES_HPP #include<gecode/third-party/boost/numeric/interval/interval.hpp> namespaceboost{ namespacenumeric{ namespaceinterval_lib{ /* *policiesclass */ template<classRounding,classChecking> structpolicies { typedefRoundingrounding; typedefCheckingchecking; }; /* *policiesswitchingclasses */ template<classOldInterval,classNewRounding> classchange_rounding { typedeftypenameOldInterval::base_typeT; typedeftypenameOldInterval::traits_typep; typedeftypenamep::checkingchecking; public: typedefinterval<T, policies<NewRounding, checking>>type; }; template<classOldInterval,classNewChecking> classchange_checking { typedeftypenameOldInterval::base_typeT; typedeftypenameOldInterval::traits_typep; typedeftypenamep::roundingrounding; public: typedefinterval<T, policies<rounding, NewChecking>>type; }; /* *Protect/unprotect:controlwhethertheroundingmodeisset/reset *ateachoperation,ratherthanonceandforall. */ template<classOldInterval> classunprotect { typedeftypenameOldInterval::base_typeT; typedeftypenameOldInterval::traits_typep; typedeftypenamep::roundingr; typedeftypenamer::unprotected_roundingnewRounding; public: typedeftypenamechange_rounding<OldInterval, newRounding>::typetype; }; }//namespaceinterval_lib }//namespacenumeric }//namespaceboost #endif//BOOST_NUMERIC_INTERVAL_POLICIES_HPP