• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 ///////////////////////////////////////////////////////////////
2 //  Copyright 2012 John Maddock. Distributed under the Boost
3 //  Software License, Version 1.0. (See accompanying file
4 //  LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
5 
6 #ifdef _MSC_VER
7 #define _SCL_SECURE_NO_WARNINGS
8 #endif
9 
10 #include <boost/multiprecision/mpfi.hpp>
11 #define TEST_MPFR
12 #include "test_arithmetic.hpp"
13 
14 template <unsigned D>
15 struct related_type<boost::multiprecision::number<boost::multiprecision::mpfi_float_backend<D> > >
16 {
17    typedef boost::multiprecision::number<boost::multiprecision::mpfi_float_backend<D / 2> > type;
18 };
19 
main()20 int main()
21 {
22    test<boost::multiprecision::mpfi_float_50>();
23    return boost::report_errors();
24 }
25