10 #if !defined(CNL_BOOST_MULTIPRECISION_H)
11 #define CNL_BOOST_MULTIPRECISION_H
13 #include "../_impl/numbers/set_signedness.h"
14 #include "../_impl/numbers/signedness.h"
15 #include "../_impl/scaled/power.h"
16 #include "../constant.h"
17 #include "../num_traits.h"
18 #include "../rounding_integer.h"
20 #include <boost/multiprecision/cpp_int.hpp>
22 #include <type_traits>
37 template<
class Backend>
42 template<
class Backend>
49 _bmp::cpp_integer_type SignType,
50 _bmp::cpp_int_check_type Checked,
52 struct is_integer<_bmp::cpp_int_backend<MinBits, MaxBits, SignType, Checked, Allocator>>
57 int DestExponent,
int SrcExponent,
int Radix,
unsigned NumBits,
58 _bmp::cpp_integer_type SignType>
59 struct custom_operator<
61 op_value<_bmp::number<_bmp::cpp_int_backend<NumBits, NumBits, SignType>>, cnl::power<SrcExponent, Radix>>,
62 op_value<_bmp::cpp_int_backend<NumBits, NumBits, SignType>, cnl::power<DestExponent, Radix>>> {
63 [[nodiscard]] constexpr
auto operator()(
64 _bmp::number<_bmp::cpp_int_backend<NumBits, NumBits, SignType>>
const& input)
const
67 return input.backend();
73 int DestExponent,
int SrcExponent,
int Radix,
unsigned NumBits,
74 _bmp::cpp_integer_type SignType,
typename Input>
75 requires(!_impl::is_bmp_number<Input>::value)
struct custom_operator<
77 op_value<Input, cnl::power<SrcExponent, Radix>>,
78 op_value<_bmp::cpp_int_backend<NumBits, NumBits, SignType>, cnl::power<DestExponent, Radix>>> {
79 [[nodiscard]] constexpr
auto operator()(Input
const& input)
const
80 -> _bmp::cpp_int_backend<NumBits, NumBits, SignType>
96 template<
typename Backend>
97 struct is_boost_multiprecision<_bmp::number<Backend>> :
std::true_type {
104 template<
unsigned NumBits>
105 struct signedness<_bmp::number<_bmp::cpp_int_backend<NumBits, NumBits, _bmp::signed_magnitude>>>
109 template<
unsigned NumBits>
111 _bmp::number<_bmp::cpp_int_backend<NumBits, NumBits, _bmp::unsigned_magnitude>>>
115 template<
unsigned NumBits>
116 struct set_signedness<
117 _bmp::number<_bmp::cpp_int_backend<NumBits, NumBits, _bmp::signed_magnitude>>,
119 using type = _bmp::number<_bmp::cpp_int_backend<NumBits, NumBits, _bmp::signed_magnitude>>;
122 template<
unsigned NumBits>
123 struct set_signedness<
124 _bmp::number<_bmp::cpp_int_backend<NumBits, NumBits, _bmp::unsigned_magnitude>>,
126 using type = _bmp::number<_bmp::cpp_int_backend<NumBits, NumBits, _bmp::signed_magnitude>>;
129 template<
unsigned NumBits>
130 struct set_signedness<
131 _bmp::number<_bmp::cpp_int_backend<NumBits, NumBits, _bmp::signed_magnitude>>,
134 _bmp::number<_bmp::cpp_int_backend<NumBits, NumBits, _bmp::unsigned_magnitude>>;
137 template<
unsigned NumBits>
138 struct set_signedness<
139 _bmp::number<_bmp::cpp_int_backend<NumBits, NumBits, _bmp::unsigned_magnitude>>,
142 _bmp::number<_bmp::cpp_int_backend<NumBits, NumBits, _bmp::unsigned_magnitude>>;
147 template<
unsigned NumBits>
149 digits_v<_bmp::number<_bmp::cpp_int_backend<NumBits, NumBits, _bmp::signed_magnitude>>> = NumBits - 1;
151 template<
unsigned NumBits>
153 digits_v<_bmp::number<_bmp::cpp_int_backend<NumBits, NumBits, _bmp::unsigned_magnitude>>> = NumBits;
155 template<
unsigned NumBits,
int MinNumDigits>
157 _bmp::number<_bmp::cpp_int_backend<NumBits, NumBits, _bmp::unsigned_magnitude>>,
159 using type = _bmp::number<
160 _bmp::cpp_int_backend<MinNumDigits, MinNumDigits, _bmp::unsigned_magnitude>>;
163 template<
unsigned NumBits,
int MinNumDigits>
165 _bmp::number<_bmp::cpp_int_backend<NumBits, NumBits, _bmp::signed_magnitude>>,
167 using type = _bmp::number<
168 _bmp::cpp_int_backend<MinNumDigits + 1, MinNumDigits + 1, _bmp::signed_magnitude>>;
171 template<
unsigned NumBits>
172 struct to_rep<_bmp::number<_bmp::cpp_int_backend<NumBits, NumBits, _bmp::signed_magnitude>>> {
175 _bmp::number<_bmp::cpp_int_backend<NumBits, NumBits, _bmp::signed_magnitude>>;
178 [[nodiscard]] constexpr
auto& operator()(number_type& n)
const
183 [[nodiscard]] constexpr
auto const& operator()(number_type
const& n)
const
188 [[nodiscard]] constexpr
auto operator()(number_type&& n)
const
194 template<
unsigned NumBits>
195 struct to_rep<_bmp::number<_bmp::cpp_int_backend<NumBits, NumBits, _bmp::unsigned_magnitude>>> {
198 _bmp::number<_bmp::cpp_int_backend<NumBits, NumBits, _bmp::unsigned_magnitude>>;
201 [[nodiscard]] constexpr
auto& operator()(number_type& n)
const
206 [[nodiscard]] constexpr
auto const& operator()(number_type
const& n)
const
211 [[nodiscard]] constexpr
auto operator()(number_type&& n)
const
218 template<
unsigned NumBits,
class Value>
219 requires(!_impl::is_boost_multiprecision<Value>::value)
struct from_value<
220 _bmp::number<_bmp::cpp_int_backend<NumBits, NumBits, _bmp::signed_magnitude>>,
223 static constexpr
auto _bits = digits_v<Value> + 1;
226 [[nodiscard]] constexpr
auto operator()(Value
const& value)
const
227 -> _bmp::number<_bmp::cpp_int_backend<_bits, _bits, _bmp::signed_magnitude>>
233 template<
unsigned NumBits,
class Value>
234 requires(!_impl::is_boost_multiprecision<Value>::value)
struct from_value<
235 _bmp::number<_bmp::cpp_int_backend<NumBits, NumBits, _bmp::unsigned_magnitude>>,
238 static constexpr
auto _bits = digits_v<Value>;
241 [[nodiscard]] constexpr
auto operator()(Value
const& value)
const
242 -> _bmp::number<_bmp::cpp_int_backend<_bits, _bits, _bmp::unsigned_magnitude>>
249 template<
class LhsBackend,
class RhsBackend>
250 struct from_value<_bmp::number<LhsBackend>, _bmp::number<RhsBackend>> {
251 [[nodiscard]] constexpr
auto operator()(_bmp::number<RhsBackend>
const& value)
const
252 -> _bmp::number<RhsBackend>
258 template<
int Digits,
int Radix,
class Backend>
259 struct scale<Digits, Radix, _bmp::number<Backend>>
260 : _impl::default_scale<Digits, Radix, _bmp::number<Backend>> {
263 template<
class Backend>
264 struct rounding<_bmp::number<Backend>> : std::type_identity<native_rounding_tag> {
267 template<
class Backend>
268 struct rep_of<_bmp::number<Backend>> : std::type_identity<Backend> {
275 namespace _sized_integer_impl {
276 template<
unsigned NumBits, _bmp::cpp_
integer_type SignType>
277 using backend = _bmp::cpp_int_backend<NumBits, NumBits, SignType>;
279 template<
unsigned NumBits, _bmp::cpp_
integer_type SignType>
280 using number = _bmp::number<_sized_integer_impl::backend<NumBits, SignType>, _bmp::et_off>;
288 template<
unsigned NumDigits = digits_v<
int>>
290 _sized_integer_impl::number<NumDigits + 1, _bmp::signed_magnitude>;
297 template<
unsigned NumDigits = digits_v<
unsigned>>
299 _sized_integer_impl::number<NumDigits, _bmp::unsigned_magnitude>;
306 template<
unsigned NumDigits = digits_v<
int>>
313 template<
unsigned NumBits, CNL_IMPL_CONSTANT_VALUE_TYPE Value>
314 [[nodiscard]] constexpr
auto operator<<(
315 _sized_integer_impl::number<NumBits, _bmp::signed_magnitude>
const& lhs,
321 template<
unsigned NumBits, CNL_IMPL_CONSTANT_VALUE_TYPE Value>
322 [[nodiscard]] constexpr
auto operator<<(
323 _sized_integer_impl::number<NumBits, _bmp::unsigned_magnitude>
const& lhs,
329 template<
unsigned NumBits, CNL_IMPL_CONSTANT_VALUE_TYPE Value>
330 [[nodiscard]] constexpr
auto operator>>(
331 _sized_integer_impl::number<NumBits, _bmp::unsigned_magnitude>
const& lhs,
337 template<
unsigned NumBits, CNL_IMPL_CONSTANT_VALUE_TYPE Value>
338 [[nodiscard]] constexpr
auto operator>>(
339 _sized_integer_impl::number<NumBits, _bmp::signed_magnitude>
const& lhs,
346 #endif // CNL_BOOST_MULTIPRECISION_H