]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/multiprecision/test/test_cpp_rat_serial.cpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / libs / multiprecision / test / test_cpp_rat_serial.cpp
index 8982e6346167b7345cffdbe6bbaa041a02467cb7..cde692eb1574a0170a398c086fb472f5413d36e6 100644 (file)
@@ -1,20 +1,20 @@
 ///////////////////////////////////////////////////////////////
 //  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_
+//  LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
 
 //
 // Compare arithmetic results using fixed_int to GMP results.
 //
 
 #ifdef _MSC_VER
-#  define _SCL_SECURE_NO_WARNINGS
+#define _SCL_SECURE_NO_WARNINGS
 #endif
 
 #include <boost/multiprecision/cpp_int.hpp>
 #include <boost/random/mersenne_twister.hpp>
 #include <boost/random/uniform_int.hpp>
-#include <boost/timer.hpp>
+#include "timer.hpp"
 #include "test.hpp"
 
 #include <iostream>
 #include <boost/archive/text_oarchive.hpp>
 #include <boost/archive/binary_iarchive.hpp>
 #include <boost/archive/binary_oarchive.hpp>
+#include <boost/archive/xml_iarchive.hpp>
+#include <boost/archive/xml_oarchive.hpp>
 #include <boost/exception/all.hpp>
 
 template <class T>
 T generate_random(unsigned bits_wanted)
 {
-   static boost::random::mt19937 gen;
+   static boost::random::mt19937               gen;
    typedef boost::random::mt19937::result_type random_type;
 
-   T max_val;
+   T        max_val;
    unsigned digits;
-   if(std::numeric_limits<T>::is_bounded && (bits_wanted == (unsigned)std::numeric_limits<T>::digits))
+   if (std::numeric_limits<T>::is_bounded && (bits_wanted == (unsigned)std::numeric_limits<T>::digits))
    {
       max_val = (std::numeric_limits<T>::max)();
-      digits = std::numeric_limits<T>::digits;
+      digits  = std::numeric_limits<T>::digits;
    }
    else
    {
       max_val = T(1) << bits_wanted;
-      digits = bits_wanted;
+      digits  = bits_wanted;
    }
 
    unsigned bits_per_r_val = std::numeric_limits<random_type>::digits - 1;
-   while((random_type(1) << bits_per_r_val) > (gen.max)()) --bits_per_r_val;
+   while ((random_type(1) << bits_per_r_val) > (gen.max)())
+      --bits_per_r_val;
 
    unsigned terms_needed = digits / bits_per_r_val + 1;
 
    T val = 0;
-   for(unsigned i = 0; i < terms_needed; ++i)
+   for (unsigned i = 0; i < terms_needed; ++i)
    {
       val *= (gen.max)();
       val += gen();
    }
    val %= max_val;
-   if(!val)
+   if (!val)
       val = 1;
    return val;
 }
@@ -70,28 +73,41 @@ void test_neg(const T& x, const boost::mpl::true_&)
    try
    {
 #endif
-      std::stringstream ss;
-      boost::archive::text_oarchive oa(ss);
-      oa << static_cast<const T&>(val);
-      boost::archive::text_iarchive ia(ss);
       T val2;
-      ia >> val2;
-      BOOST_CHECK_EQUAL(val, val2);
-
-      ss.clear();
-      boost::archive::binary_oarchive ob(ss);
-      ob << static_cast<const T&>(val);
-      boost::archive::binary_iarchive ib(ss);
-      ib >> val2;
-      BOOST_CHECK_EQUAL(val, val2);
+      {
+         std::stringstream             ss;
+         boost::archive::text_oarchive oa(ss);
+         oa << static_cast<const T&>(val);
+         boost::archive::text_iarchive ia(ss);
+         ia >> val2;
+         BOOST_CHECK_EQUAL(val, val2);
+      }
+      {
+         std::stringstream               ss;
+         boost::archive::binary_oarchive ob(ss);
+         ob << static_cast<const T&>(val);
+         boost::archive::binary_iarchive ib(ss);
+         ib >> val2;
+         BOOST_CHECK_EQUAL(val, val2);
+      }
+      {
+         std::stringstream ss;
+         {
+            boost::archive::xml_oarchive ob(ss);
+            ob << boost::serialization::make_nvp("value", static_cast<const T&>(val));
+         }
+         boost::archive::xml_iarchive ib(ss);
+         ib >> boost::serialization::make_nvp("value", val2);
+         BOOST_CHECK_EQUAL(val, val2);
+      }
 #ifndef BOOST_NO_EXCEPTIONS
    }
-   catch(const boost::exception& e)
+   catch (const boost::exception& e)
    {
       std::cout << "Caught boost::exception with:\n";
       std::cout << diagnostic_information(e);
    }
-   catch(const std::exception& e)
+   catch (const std::exception& e)
    {
       std::cout << "Caught std::exception with:\n";
       std::cout << e.what() << std::endl;
@@ -99,7 +115,7 @@ void test_neg(const T& x, const boost::mpl::true_&)
 #endif
 }
 template <class T>
-void test_neg(const T& , const boost::mpl::false_&){}
+void test_neg(const T&, const boost::mpl::false_&) {}
 
 template <class T>
 void test()
@@ -107,21 +123,21 @@ void test()
    using namespace boost::multiprecision;
 
    boost::random::mt19937 gen;
-   boost::uniform_int<> d(3, std::numeric_limits<T>::is_bounded ? std::numeric_limits<T>::digits : 3000);
-   boost::timer tim;
+   boost::uniform_int<>   d(3, std::numeric_limits<T>::is_bounded ? std::numeric_limits<T>::digits : 3000);
+   timer                  tim;
 
-   while(true)
+   while (true)
    {
       T val(generate_random<typename component_type<T>::type>(d(gen)), generate_random<typename component_type<T>::type>(d(gen)));
 #ifndef BOOST_NO_EXCEPTIONS
       try
       {
 #endif
-         std::stringstream ss;
+         std::stringstream             ss;
          boost::archive::text_oarchive oa(ss);
          oa << static_cast<const T&>(val);
          boost::archive::text_iarchive ia(ss);
-         T val2;
+         T                             val2;
          ia >> val2;
          BOOST_CHECK_EQUAL(val, val2);
 
@@ -133,17 +149,17 @@ void test()
          BOOST_CHECK_EQUAL(val, val2);
 #ifndef BOOST_NO_EXCEPTIONS
       }
-      catch(const boost::exception& e)
+      catch (const boost::exception& e)
       {
          std::cout << "Caught boost::exception with:\n";
          std::cout << diagnostic_information(e);
       }
-      catch(const std::exception& e)
+      catch (const std::exception& e)
       {
          std::cout << "Caught std::exception with:\n";
          std::cout << e.what() << std::endl;
       }
-#endif      
+#endif
       test_neg(val, boost::mpl::bool_<std::numeric_limits<T>::is_signed>());
 
       //
@@ -151,7 +167,11 @@ void test()
       // Tests run on the compiler farm time out after 300 seconds,
       // so don't get too close to that:
       //
-      if(tim.elapsed() > 150)
+#ifndef CI_SUPPRESS_KNOWN_ISSUES
+      if (tim.elapsed() > 150)
+#else
+      if (tim.elapsed() > 25)
+#endif
       {
          std::cout << "Timeout reached, aborting tests now....\n";
          break;
@@ -165,6 +185,3 @@ int main()
    test<cpp_rational>();
    return boost::report_errors();
 }
-
-
-