sl@0: sl@0: // (C) Copyright John maddock 1999. sl@0: // (C) David Abrahams 2002. Distributed under the Boost sl@0: // Software License, Version 1.0. (See accompanying file sl@0: // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) sl@0: // sl@0: // use this header as a workaround for missing sl@0: sl@0: // See http://www.boost.org/libs/utility/limits.html for documentation. sl@0: sl@0: #ifndef BOOST_LIMITS sl@0: #define BOOST_LIMITS sl@0: sl@0: #include sl@0: sl@0: #ifdef BOOST_NO_LIMITS sl@0: # include sl@0: #else sl@0: # include sl@0: #endif sl@0: sl@0: #if (defined(BOOST_HAS_LONG_LONG) && defined(BOOST_NO_LONG_LONG_NUMERIC_LIMITS)) \ sl@0: || (defined(BOOST_HAS_MS_INT64) && defined(BOOST_NO_MS_INT64_NUMERIC_LIMITS)) sl@0: // Add missing specializations for numeric_limits: sl@0: #ifdef BOOST_HAS_MS_INT64 sl@0: # define BOOST_LLT __int64 sl@0: # define BOOST_ULLT unsigned __int64 sl@0: #else sl@0: # define BOOST_LLT ::boost::long_long_type sl@0: # define BOOST_ULLT ::boost::ulong_long_type sl@0: #endif sl@0: sl@0: namespace std sl@0: { sl@0: template<> sl@0: class numeric_limits sl@0: { sl@0: public: sl@0: sl@0: BOOST_STATIC_CONSTANT(bool, is_specialized = true); sl@0: #ifdef BOOST_HAS_MS_INT64 sl@0: static BOOST_LLT min BOOST_PREVENT_MACRO_SUBSTITUTION (){ return 0x8000000000000000i64; } sl@0: static BOOST_LLT max BOOST_PREVENT_MACRO_SUBSTITUTION (){ return 0x7FFFFFFFFFFFFFFFi64; } sl@0: #elif defined(LLONG_MAX) sl@0: static BOOST_LLT min BOOST_PREVENT_MACRO_SUBSTITUTION (){ return LLONG_MIN; } sl@0: static BOOST_LLT max BOOST_PREVENT_MACRO_SUBSTITUTION (){ return LLONG_MAX; } sl@0: #elif defined(LONGLONG_MAX) sl@0: static BOOST_LLT min BOOST_PREVENT_MACRO_SUBSTITUTION (){ return LONGLONG_MIN; } sl@0: static BOOST_LLT max BOOST_PREVENT_MACRO_SUBSTITUTION (){ return LONGLONG_MAX; } sl@0: #else sl@0: static BOOST_LLT min BOOST_PREVENT_MACRO_SUBSTITUTION (){ return 1LL << (sizeof(BOOST_LLT) * CHAR_BIT - 1); } sl@0: static BOOST_LLT max BOOST_PREVENT_MACRO_SUBSTITUTION (){ return ~(min)(); } sl@0: #endif sl@0: BOOST_STATIC_CONSTANT(int, digits = sizeof(BOOST_LLT) * CHAR_BIT -1); sl@0: BOOST_STATIC_CONSTANT(int, digits10 = (CHAR_BIT * sizeof (BOOST_LLT) - 1) * 301L / 1000); sl@0: BOOST_STATIC_CONSTANT(bool, is_signed = true); sl@0: BOOST_STATIC_CONSTANT(bool, is_integer = true); sl@0: BOOST_STATIC_CONSTANT(bool, is_exact = true); sl@0: BOOST_STATIC_CONSTANT(int, radix = 2); sl@0: static BOOST_LLT epsilon() throw() { return 0; }; sl@0: static BOOST_LLT round_error() throw() { return 0; }; sl@0: sl@0: BOOST_STATIC_CONSTANT(int, min_exponent = 0); sl@0: BOOST_STATIC_CONSTANT(int, min_exponent10 = 0); sl@0: BOOST_STATIC_CONSTANT(int, max_exponent = 0); sl@0: BOOST_STATIC_CONSTANT(int, max_exponent10 = 0); sl@0: sl@0: BOOST_STATIC_CONSTANT(bool, has_infinity = false); sl@0: BOOST_STATIC_CONSTANT(bool, has_quiet_NaN = false); sl@0: BOOST_STATIC_CONSTANT(bool, has_signaling_NaN = false); sl@0: BOOST_STATIC_CONSTANT(bool, has_denorm = false); sl@0: BOOST_STATIC_CONSTANT(bool, has_denorm_loss = false); sl@0: static BOOST_LLT infinity() throw() { return 0; }; sl@0: static BOOST_LLT quiet_NaN() throw() { return 0; }; sl@0: static BOOST_LLT signaling_NaN() throw() { return 0; }; sl@0: static BOOST_LLT denorm_min() throw() { return 0; }; sl@0: sl@0: BOOST_STATIC_CONSTANT(bool, is_iec559 = false); sl@0: BOOST_STATIC_CONSTANT(bool, is_bounded = false); sl@0: BOOST_STATIC_CONSTANT(bool, is_modulo = false); sl@0: sl@0: BOOST_STATIC_CONSTANT(bool, traps = false); sl@0: BOOST_STATIC_CONSTANT(bool, tinyness_before = false); sl@0: BOOST_STATIC_CONSTANT(float_round_style, round_style = round_toward_zero); sl@0: sl@0: }; sl@0: sl@0: template<> sl@0: class numeric_limits sl@0: { sl@0: public: sl@0: sl@0: BOOST_STATIC_CONSTANT(bool, is_specialized = true); sl@0: #ifdef BOOST_HAS_MS_INT64 sl@0: static BOOST_ULLT min BOOST_PREVENT_MACRO_SUBSTITUTION (){ return 0ui64; } sl@0: static BOOST_ULLT max BOOST_PREVENT_MACRO_SUBSTITUTION (){ return 0xFFFFFFFFFFFFFFFFui64; } sl@0: #elif defined(ULLONG_MAX) && defined(ULLONG_MIN) sl@0: static BOOST_ULLT min BOOST_PREVENT_MACRO_SUBSTITUTION (){ return ULLONG_MIN; } sl@0: static BOOST_ULLT max BOOST_PREVENT_MACRO_SUBSTITUTION (){ return ULLONG_MAX; } sl@0: #elif defined(ULONGLONG_MAX) && defined(ULONGLONG_MIN) sl@0: static BOOST_ULLT min BOOST_PREVENT_MACRO_SUBSTITUTION (){ return ULONGLONG_MIN; } sl@0: static BOOST_ULLT max BOOST_PREVENT_MACRO_SUBSTITUTION (){ return ULONGLONG_MAX; } sl@0: #else sl@0: static BOOST_ULLT min BOOST_PREVENT_MACRO_SUBSTITUTION (){ return 0uLL; } sl@0: static BOOST_ULLT max BOOST_PREVENT_MACRO_SUBSTITUTION (){ return ~0uLL; } sl@0: #endif sl@0: BOOST_STATIC_CONSTANT(int, digits = sizeof(BOOST_LLT) * CHAR_BIT); sl@0: BOOST_STATIC_CONSTANT(int, digits10 = (CHAR_BIT * sizeof (BOOST_LLT)) * 301L / 1000); sl@0: BOOST_STATIC_CONSTANT(bool, is_signed = false); sl@0: BOOST_STATIC_CONSTANT(bool, is_integer = true); sl@0: BOOST_STATIC_CONSTANT(bool, is_exact = true); sl@0: BOOST_STATIC_CONSTANT(int, radix = 2); sl@0: static BOOST_ULLT epsilon() throw() { return 0; }; sl@0: static BOOST_ULLT round_error() throw() { return 0; }; sl@0: sl@0: BOOST_STATIC_CONSTANT(int, min_exponent = 0); sl@0: BOOST_STATIC_CONSTANT(int, min_exponent10 = 0); sl@0: BOOST_STATIC_CONSTANT(int, max_exponent = 0); sl@0: BOOST_STATIC_CONSTANT(int, max_exponent10 = 0); sl@0: sl@0: BOOST_STATIC_CONSTANT(bool, has_infinity = false); sl@0: BOOST_STATIC_CONSTANT(bool, has_quiet_NaN = false); sl@0: BOOST_STATIC_CONSTANT(bool, has_signaling_NaN = false); sl@0: BOOST_STATIC_CONSTANT(bool, has_denorm = false); sl@0: BOOST_STATIC_CONSTANT(bool, has_denorm_loss = false); sl@0: static BOOST_ULLT infinity() throw() { return 0; }; sl@0: static BOOST_ULLT quiet_NaN() throw() { return 0; }; sl@0: static BOOST_ULLT signaling_NaN() throw() { return 0; }; sl@0: static BOOST_ULLT denorm_min() throw() { return 0; }; sl@0: sl@0: BOOST_STATIC_CONSTANT(bool, is_iec559 = false); sl@0: BOOST_STATIC_CONSTANT(bool, is_bounded = false); sl@0: BOOST_STATIC_CONSTANT(bool, is_modulo = false); sl@0: sl@0: BOOST_STATIC_CONSTANT(bool, traps = false); sl@0: BOOST_STATIC_CONSTANT(bool, tinyness_before = false); sl@0: BOOST_STATIC_CONSTANT(float_round_style, round_style = round_toward_zero); sl@0: sl@0: }; sl@0: } sl@0: #endif sl@0: sl@0: #endif