cpp_complex.hpp 1.8 KB

123456789101112131415161718192021222324252627282930313233
  1. ///////////////////////////////////////////////////////////////////////////////
  2. // Copyright 2018 John Maddock. Distributed under the Boost
  3. // Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #ifndef BOOST_MP_CPP_COMPLEX_HPP
  6. #define BOOST_MP_CPP_COMPLEX_HPP
  7. #include <boost/multiprecision/cpp_bin_float.hpp>
  8. #include <boost/multiprecision/complex_adaptor.hpp>
  9. namespace boost {
  10. namespace multiprecision {
  11. template <unsigned Digits, backends::digit_base_type DigitBase = backends::digit_base_10, class Allocator = void, class Exponent = int, Exponent MinExponent = 0, Exponent MaxExponent = 0>
  12. using cpp_complex_backend = complex_adaptor<cpp_bin_float<Digits, DigitBase, Allocator, Exponent, MinExponent, MaxExponent> >;
  13. template <unsigned Digits, backends::digit_base_type DigitBase = digit_base_10, class Allocator = void, class Exponent = int, Exponent MinExponent = 0, Exponent MaxExponent = 0, expression_template_option ExpressionTemplates = et_off>
  14. using cpp_complex = number<complex_adaptor<cpp_bin_float<Digits, DigitBase, Allocator, Exponent, MinExponent, MaxExponent> >, ExpressionTemplates>;
  15. using cpp_complex_50 = cpp_complex<50> ;
  16. using cpp_complex_100 = cpp_complex<100>;
  17. using cpp_complex_single = cpp_complex<24, backends::digit_base_2, void, std::int16_t, -126, 127> ;
  18. using cpp_complex_double = cpp_complex<53, backends::digit_base_2, void, std::int16_t, -1022, 1023> ;
  19. using cpp_complex_extended = cpp_complex<64, backends::digit_base_2, void, std::int16_t, -16382, 16383> ;
  20. using cpp_complex_quad = cpp_complex<113, backends::digit_base_2, void, std::int16_t, -16382, 16383> ;
  21. using cpp_complex_oct = cpp_complex<237, backends::digit_base_2, void, std::int32_t, -262142, 262143>;
  22. }
  23. } // namespace boost::multiprecision
  24. #endif