mirror of
https://github.com/boostorg/multiprecision.git
synced 2026-01-19 04:22:11 +00:00
28 lines
998 B
C++
28 lines
998 B
C++
///////////////////////////////////////////////////////////////
|
|
// Copyright 2012 John Maddock. 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_
|
|
|
|
#ifdef _MSC_VER
|
|
# define _SCL_SECURE_NO_WARNINGS
|
|
#endif
|
|
|
|
#include <boost/multiprecision/cpp_bin_float.hpp>
|
|
|
|
#include "libs/multiprecision/test/test_arithmetic.hpp"
|
|
|
|
template <unsigned D>
|
|
struct related_type<boost::multiprecision::number< boost::multiprecision::cpp_bin_float<D> > >
|
|
{
|
|
typedef boost::multiprecision::number< boost::multiprecision::cpp_bin_float<(D / 2 > std::numeric_limits<long double>::digits10 ? D / 2 : D)> > type;
|
|
};
|
|
|
|
int main()
|
|
{
|
|
//test<boost::multiprecision::cpp_bin_float_50>();
|
|
test<boost::multiprecision::number<boost::multiprecision::cpp_bin_float<1000, boost::multiprecision::digit_base_10, std::allocator<void> > > >();
|
|
//test<boost::multiprecision::cpp_bin_float_quad>();
|
|
return boost::report_errors();
|
|
}
|
|
|