// -*- C++ -*- //===---------------------------- ratio -----------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #ifndef _LIBCPP_RATIO #define _LIBCPP_RATIO /* ratio synopsis namespace std { template class ratio { public: static constexpr intmax_t num; static constexpr intmax_t den; typedef ratio type; }; // ratio arithmetic template using ratio_add = ...; template using ratio_subtract = ...; template using ratio_multiply = ...; template using ratio_divide = ...; // ratio comparison template struct ratio_equal; template struct ratio_not_equal; template struct ratio_less; template struct ratio_less_equal; template struct ratio_greater; template struct ratio_greater_equal; // convenience SI typedefs typedef ratio<1, 1000000000000000000000000> yocto; // not supported typedef ratio<1, 1000000000000000000000> zepto; // not supported typedef ratio<1, 1000000000000000000> atto; typedef ratio<1, 1000000000000000> femto; typedef ratio<1, 1000000000000> pico; typedef ratio<1, 1000000000> nano; typedef ratio<1, 1000000> micro; typedef ratio<1, 1000> milli; typedef ratio<1, 100> centi; typedef ratio<1, 10> deci; typedef ratio< 10, 1> deca; typedef ratio< 100, 1> hecto; typedef ratio< 1000, 1> kilo; typedef ratio< 1000000, 1> mega; typedef ratio< 1000000000, 1> giga; typedef ratio< 1000000000000, 1> tera; typedef ratio< 1000000000000000, 1> peta; typedef ratio< 1000000000000000000, 1> exa; typedef ratio< 1000000000000000000000, 1> zetta; // not supported typedef ratio<1000000000000000000000000, 1> yotta; // not supported // 20.11.5, ratio comparison template constexpr bool ratio_equal_v = ratio_equal::value; // C++17 template constexpr bool ratio_not_equal_v = ratio_not_equal::value; // C++17 template constexpr bool ratio_less_v = ratio_less::value; // C++17 template constexpr bool ratio_less_equal_v = ratio_less_equal::value; // C++17 template constexpr bool ratio_greater_v = ratio_greater::value; // C++17 template constexpr bool ratio_greater_equal_v = ratio_greater_equal::value; // C++17 } */ #include <__config> #include #include #include #include <__undef_min_max> #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) #pragma GCC system_header #endif _LIBCPP_BEGIN_NAMESPACE_STD // __static_gcd template struct __static_gcd { static const intmax_t value = __static_gcd<_Yp, _Xp % _Yp>::value; }; template struct __static_gcd<_Xp, 0> { static const intmax_t value = _Xp; }; template <> struct __static_gcd<0, 0> { static const intmax_t value = 1; }; // __static_lcm template struct __static_lcm { static const intmax_t value = _Xp / __static_gcd<_Xp, _Yp>::value * _Yp; }; template struct __static_abs { static const intmax_t value = _Xp < 0 ? -_Xp : _Xp; }; template struct __static_sign { static const intmax_t value = _Xp == 0 ? 0 : (_Xp < 0 ? -1 : 1); }; template ::value> class __ll_add; template class __ll_add<_Xp, _Yp, 1> { static const intmax_t min = (1LL << (sizeof(intmax_t) * CHAR_BIT - 1)) + 1; static const intmax_t max = -min; static_assert(_Xp <= max - _Yp, "overflow in __ll_add"); public: static const intmax_t value = _Xp + _Yp; }; template class __ll_add<_Xp, _Yp, 0> { public: static const intmax_t value = _Xp; }; template class __ll_add<_Xp, _Yp, -1> { static const intmax_t min = (1LL << (sizeof(intmax_t) * CHAR_BIT - 1)) + 1; static const intmax_t max = -min; static_assert(min - _Yp <= _Xp, "overflow in __ll_add"); public: static const intmax_t value = _Xp + _Yp; }; template ::value> class __ll_sub; template class __ll_sub<_Xp, _Yp, 1> { static const intmax_t min = (1LL << (sizeof(intmax_t) * CHAR_BIT - 1)) + 1; static const intmax_t max = -min; static_assert(min + _Yp <= _Xp, "overflow in __ll_sub"); public: static const intmax_t value = _Xp - _Yp; }; template class __ll_sub<_Xp, _Yp, 0> { public: static const intmax_t value = _Xp; }; template class __ll_sub<_Xp, _Yp, -1> { static const intmax_t min = (1LL << (sizeof(intmax_t) * CHAR_BIT - 1)) + 1; static const intmax_t max = -min; static_assert(_Xp <= max + _Yp, "overflow in __ll_sub"); public: static const intmax_t value = _Xp - _Yp; }; template class __ll_mul { static const intmax_t nan = (1LL << (sizeof(intmax_t) * CHAR_BIT - 1)); static const intmax_t min = nan + 1; static const intmax_t max = -min; static const intmax_t __a_x = __static_abs<_Xp>::value; static const intmax_t __a_y = __static_abs<_Yp>::value; static_assert(_Xp != nan && _Yp != nan && __a_x <= max / __a_y, "overflow in __ll_mul"); public: static const intmax_t value = _Xp * _Yp; }; template class __ll_mul<0, _Yp> { public: static const intmax_t value = 0; }; template class __ll_mul<_Xp, 0> { public: static const intmax_t value = 0; }; template <> class __ll_mul<0, 0> { public: static const intmax_t value = 0; }; // Not actually used but left here in case needed in future maintenance template class __ll_div { static const intmax_t nan = (1LL << (sizeof(intmax_t) * CHAR_BIT - 1)); static const intmax_t min = nan + 1; static const intmax_t max = -min; static_assert(_Xp != nan && _Yp != nan && _Yp != 0, "overflow in __ll_div"); public: static const intmax_t value = _Xp / _Yp; }; template class _LIBCPP_TYPE_VIS_ONLY ratio { static_assert(__static_abs<_Num>::value >= 0, "ratio numerator is out of range"); static_assert(_Den != 0, "ratio divide by 0"); static_assert(__static_abs<_Den>::value > 0, "ratio denominator is out of range"); static _LIBCPP_CONSTEXPR const intmax_t __na = __static_abs<_Num>::value; static _LIBCPP_CONSTEXPR const intmax_t __da = __static_abs<_Den>::value; static _LIBCPP_CONSTEXPR const intmax_t __s = __static_sign<_Num>::value * __static_sign<_Den>::value; static _LIBCPP_CONSTEXPR const intmax_t __gcd = __static_gcd<__na, __da>::value; public: static _LIBCPP_CONSTEXPR const intmax_t num = __s * __na / __gcd; static _LIBCPP_CONSTEXPR const intmax_t den = __da / __gcd; typedef ratio type; }; template _LIBCPP_CONSTEXPR const intmax_t ratio<_Num, _Den>::num; template _LIBCPP_CONSTEXPR const intmax_t ratio<_Num, _Den>::den; template struct __is_ratio : false_type {}; template struct __is_ratio > : true_type {}; typedef ratio<1LL, 1000000000000000000LL> atto; typedef ratio<1LL, 1000000000000000LL> femto; typedef ratio<1LL, 1000000000000LL> pico; typedef ratio<1LL, 1000000000LL> nano; typedef ratio<1LL, 1000000LL> micro; typedef ratio<1LL, 1000LL> milli; typedef ratio<1LL, 100LL> centi; typedef ratio<1LL, 10LL> deci; typedef ratio< 10LL, 1LL> deca; typedef ratio< 100LL, 1LL> hecto; typedef ratio< 1000LL, 1LL> kilo; typedef ratio< 1000000LL, 1LL> mega; typedef ratio< 1000000000LL, 1LL> giga; typedef ratio< 1000000000000LL, 1LL> tera; typedef ratio< 1000000000000000LL, 1LL> peta; typedef ratio<1000000000000000000LL, 1LL> exa; template struct __ratio_multiply { private: static const intmax_t __gcd_n1_d2 = __static_gcd<_R1::num, _R2::den>::value; static const intmax_t __gcd_d1_n2 = __static_gcd<_R1::den, _R2::num>::value; public: typedef typename ratio < __ll_mul<_R1::num / __gcd_n1_d2, _R2::num / __gcd_d1_n2>::value, __ll_mul<_R2::den / __gcd_n1_d2, _R1::den / __gcd_d1_n2>::value >::type type; }; #ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES template using ratio_multiply = typename __ratio_multiply<_R1, _R2>::type; #else // _LIBCPP_HAS_NO_TEMPLATE_ALIASES template struct _LIBCPP_TYPE_VIS_ONLY ratio_multiply : public __ratio_multiply<_R1, _R2>::type {}; #endif // _LIBCPP_HAS_NO_TEMPLATE_ALIASES template struct __ratio_divide { private: static const intmax_t __gcd_n1_n2 = __static_gcd<_R1::num, _R2::num>::value; static const intmax_t __gcd_d1_d2 = __static_gcd<_R1::den, _R2::den>::value; public: typedef typename ratio < __ll_mul<_R1::num / __gcd_n1_n2, _R2::den / __gcd_d1_d2>::value, __ll_mul<_R2::num / __gcd_n1_n2, _R1::den / __gcd_d1_d2>::value >::type type; }; #ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES template using ratio_divide = typename __ratio_divide<_R1, _R2>::type; #else // _LIBCPP_HAS_NO_TEMPLATE_ALIASES template struct _LIBCPP_TYPE_VIS_ONLY ratio_divide : public __ratio_divide<_R1, _R2>::type {}; #endif // _LIBCPP_HAS_NO_TEMPLATE_ALIASES template struct __ratio_add { private: static const intmax_t __gcd_n1_n2 = __static_gcd<_R1::num, _R2::num>::value; static const intmax_t __gcd_d1_d2 = __static_gcd<_R1::den, _R2::den>::value; public: typedef typename ratio_multiply < ratio<__gcd_n1_n2, _R1::den / __gcd_d1_d2>, ratio < __ll_add < __ll_mul<_R1::num / __gcd_n1_n2, _R2::den / __gcd_d1_d2>::value, __ll_mul<_R2::num / __gcd_n1_n2, _R1::den / __gcd_d1_d2>::value >::value, _R2::den > >::type type; }; #ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES template using ratio_add = typename __ratio_add<_R1, _R2>::type; #else // _LIBCPP_HAS_NO_TEMPLATE_ALIASES template struct _LIBCPP_TYPE_VIS_ONLY ratio_add : public __ratio_add<_R1, _R2>::type {}; #endif // _LIBCPP_HAS_NO_TEMPLATE_ALIASES template struct __ratio_subtract { private: static const intmax_t __gcd_n1_n2 = __static_gcd<_R1::num, _R2::num>::value; static const intmax_t __gcd_d1_d2 = __static_gcd<_R1::den, _R2::den>::value; public: typedef typename ratio_multiply < ratio<__gcd_n1_n2, _R1::den / __gcd_d1_d2>, ratio < __ll_sub < __ll_mul<_R1::num / __gcd_n1_n2, _R2::den / __gcd_d1_d2>::value, __ll_mul<_R2::num / __gcd_n1_n2, _R1::den / __gcd_d1_d2>::value >::value, _R2::den > >::type type; }; #ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES template using ratio_subtract = typename __ratio_subtract<_R1, _R2>::type; #else // _LIBCPP_HAS_NO_TEMPLATE_ALIASES template struct _LIBCPP_TYPE_VIS_ONLY ratio_subtract : public __ratio_subtract<_R1, _R2>::type {}; #endif // _LIBCPP_HAS_NO_TEMPLATE_ALIASES // ratio_equal template struct _LIBCPP_TYPE_VIS_ONLY ratio_equal : public _LIBCPP_BOOL_CONSTANT((_R1::num == _R2::num && _R1::den == _R2::den)) {}; template struct _LIBCPP_TYPE_VIS_ONLY ratio_not_equal : public _LIBCPP_BOOL_CONSTANT((!ratio_equal<_R1, _R2>::value)) {}; // ratio_less template struct __ratio_less1 { static const bool value = _Odd ? _Q2 < _Q1 : _Q1 < _Q2; }; template struct __ratio_less1<_R1, _R2, _Odd, _Qp, 0, _Qp, 0> { static const bool value = false; }; template struct __ratio_less1<_R1, _R2, _Odd, _Qp, 0, _Qp, _M2> { static const bool value = !_Odd; }; template struct __ratio_less1<_R1, _R2, _Odd, _Qp, _M1, _Qp, 0> { static const bool value = _Odd; }; template struct __ratio_less1<_R1, _R2, _Odd, _Qp, _M1, _Qp, _M2> { static const bool value = __ratio_less1, ratio<_R2::den, _M2>, !_Odd>::value; }; template ::value, intmax_t _S2 = __static_sign<_R2::num>::value> struct __ratio_less { static const bool value = _S1 < _S2; }; template struct __ratio_less<_R1, _R2, 1LL, 1LL> { static const bool value = __ratio_less1<_R1, _R2>::value; }; template struct __ratio_less<_R1, _R2, -1LL, -1LL> { static const bool value = __ratio_less1, ratio<-_R1::num, _R1::den> >::value; }; template struct _LIBCPP_TYPE_VIS_ONLY ratio_less : public _LIBCPP_BOOL_CONSTANT((__ratio_less<_R1, _R2>::value)) {}; template struct _LIBCPP_TYPE_VIS_ONLY ratio_less_equal : public _LIBCPP_BOOL_CONSTANT((!ratio_less<_R2, _R1>::value)) {}; template struct _LIBCPP_TYPE_VIS_ONLY ratio_greater : public _LIBCPP_BOOL_CONSTANT((ratio_less<_R2, _R1>::value)) {}; template struct _LIBCPP_TYPE_VIS_ONLY ratio_greater_equal : public _LIBCPP_BOOL_CONSTANT((!ratio_less<_R1, _R2>::value)) {}; template struct __ratio_gcd { typedef ratio<__static_gcd<_R1::num, _R2::num>::value, __static_lcm<_R1::den, _R2::den>::value> type; }; #if _LIBCPP_STD_VER > 14 && !defined(_LIBCPP_HAS_NO_VARIABLE_TEMPLATES) template _LIBCPP_CONSTEXPR bool ratio_equal_v = ratio_equal<_R1, _R2>::value; template _LIBCPP_CONSTEXPR bool ratio_not_equal_v = ratio_not_equal<_R1, _R2>::value; template _LIBCPP_CONSTEXPR bool ratio_less_v = ratio_less<_R1, _R2>::value; template _LIBCPP_CONSTEXPR bool ratio_less_equal_v = ratio_less_equal<_R1, _R2>::value; template _LIBCPP_CONSTEXPR bool ratio_greater_v = ratio_greater<_R1, _R2>::value; template _LIBCPP_CONSTEXPR bool ratio_greater_equal_v = ratio_greater_equal<_R1, _R2>::value; #endif _LIBCPP_END_NAMESPACE_STD #endif // _LIBCPP_RATIO