test_float128_serial.cpp 569 B

12345678910111213141516171819202122
  1. ///////////////////////////////////////////////////////////////
  2. // Copyright 2013 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. // Compare arithmetic results using fixed_int to GMP results.
  7. //
  8. #ifdef _MSC_VER
  9. #define _SCL_SECURE_NO_WARNINGS
  10. #endif
  11. #include <boost/multiprecision/float128.hpp>
  12. #include "test_float_serial.hpp"
  13. int main()
  14. {
  15. using namespace boost::multiprecision;
  16. test<float128>();
  17. return boost::report_errors();
  18. }