/usr/include/boost/numeric/interval
NameSizeModeActions
compare/-0755rm
detail/-0755rm
ext/-0755rm
arith.hpp103530644editdlrm
arith2.hpp100920644editdlrm
arith3.hpp21500644editdlrm
checking.hpp28240644editdlrm
compare.hpp7050644editdlrm
constants.hpp31770644editdlrm
hw_rounding.hpp24410644editdlrm
interval.hpp121980644editdlrm
io.hpp11740644editdlrm
limits.hpp17470644editdlrm
policies.hpp17710644editdlrm
rounded_arith.hpp47830644editdlrm
rounded_transc.hpp52690644editdlrm
rounding.hpp25950644editdlrm
transc.hpp79170644editdlrm
utility.hpp107410644editdlrm
utility_fwd.hpp45890644editdlrm
Edit: /usr/include/boost/numeric/interval/utility_fwd.hpp (4589B)
/* Boost interval/utility.hpp template interface file * * Copyright 2013 Cromwell D. Enage * * Distributed under the Boost Software License, Version 1.0. * (See accompanying file LICENSE_1_0.txt or copy at * http://www.boost.org/LICENSE_1_0.txt) */ #ifndef BOOST_NUMERIC_INTERVAL_UTILITY_FWD_HPP #define BOOST_NUMERIC_INTERVAL_UTILITY_FWD_HPP #include #include #include /* * Interface of simple functions */ namespace boost { namespace numeric { /* * Utility Functions */ template const T& lower(const interval& x); template const T& upper(const interval& x); template T checked_lower(const interval& x); template T width(const interval& x); template T median(const interval& x); template interval widen(const interval& x, const T& v); /* * Set-like operations */ template bool empty(const interval& x); template bool zero_in(const interval& x); template bool in_zero(const interval& x); // DEPRECATED template bool in(const T& x, const interval& y); template bool subset( const interval& x , const interval& y ); template bool proper_subset( const interval& x , const interval& y ); template bool overlap( const interval& x , const interval& y ); template bool singleton(const interval& x); template bool equal( const interval& x , const interval& y ); template interval intersect( const interval& x , const interval& y ); template interval hull(const interval& x, const interval& y); template interval hull(const interval& x, const T& y); template interval hull(const T& x, const interval& y); template interval hull(const T& x, const T& y); template std::pair,interval > bisect(const interval& x); /* * Elementary functions */ template T norm(const interval& x); template interval abs(const interval& x); template interval max BOOST_PREVENT_MACRO_SUBSTITUTION ( const interval& x , const interval& y ); template interval max BOOST_PREVENT_MACRO_SUBSTITUTION ( const interval& x , const T& y ); template interval max BOOST_PREVENT_MACRO_SUBSTITUTION ( const T& x , const interval& y ); template interval min BOOST_PREVENT_MACRO_SUBSTITUTION ( const interval& x , const interval& y ); template interval min BOOST_PREVENT_MACRO_SUBSTITUTION ( const interval& x , const T& y ); template interval min BOOST_PREVENT_MACRO_SUBSTITUTION ( const T& x , const interval& y ); }} // namespace boost::numeric #endif // include guard