/* Boost interval/compare/set.hpp template implementation file * * Copyright 2002-2003 Guillaume Melquiond * * 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_COMPARE_SET_HPP #define BOOST_NUMERIC_INTERVAL_COMPARE_SET_HPP #include #include #include namespace boost { namespace numeric { namespace interval_lib { namespace compare { namespace set { template inline bool operator<(const interval& x, const interval& y) { return proper_subset(x, y); } template inline bool operator<(const interval& , const T& ) { throw comparison_error(); } template inline bool operator<=(const interval& x, const interval& y) { return subset(x, y); } template inline bool operator<=(const interval& , const T& ) { throw comparison_error(); } template inline bool operator>(const interval& x, const interval& y) { return proper_subset(y, x); } template inline bool operator>(const interval& , const T& ) { throw comparison_error(); } template inline bool operator>=(const interval& x, const interval& y) { return subset(y, x); } template inline bool operator>=(const interval& , const T& ) { throw comparison_error(); } template inline bool operator==(const interval& x, const interval& y) { return equal(y, x); } template inline bool operator==(const interval& , const T& ) { throw comparison_error(); } template inline bool operator!=(const interval& x, const interval& y) { return !equal(y, x); } template inline bool operator!=(const interval& , const T& ) { throw comparison_error(); } } // namespace set } // namespace compare } // namespace interval_lib } // namespace numeric } // namespace boost #endif // BOOST_NUMERIC_INTERVAL_COMPARE_SET_HPP