Imported Upstream version 1.72.0
[platform/upstream/boost.git] / libs / multiprecision / test / test_adapt_serial.cpp
index d32fb9a..96fbca2 100644 (file)
@@ -8,7 +8,7 @@
 //
 
 #ifdef _MSC_VER
-#  define _SCL_SECURE_NO_WARNINGS
+#define _SCL_SECURE_NO_WARNINGS
 #endif
 
 #include <boost/multiprecision/cpp_int.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();
@@ -74,7 +75,7 @@ void test_neg(const T& x, const boost::mpl::true_&)
 #endif
       T val2;
       {
-         std::stringstream ss;
+         std::stringstream             ss;
          boost::archive::text_oarchive oa(ss);
          oa << static_cast<const T&>(val);
          boost::archive::text_iarchive ia(ss);
@@ -92,7 +93,7 @@ void test_neg(const T& x, const boost::mpl::true_&)
          BOOST_CHECK_EQUAL(val, val2);
       }
       {
-         std::stringstream ss;
+         std::stringstream               ss;
          boost::archive::binary_oarchive ob(ss);
          ob << static_cast<const T&>(val);
          boost::archive::binary_iarchive ib(ss);
@@ -101,12 +102,12 @@ void test_neg(const T& x, const boost::mpl::true_&)
       }
 #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;
@@ -114,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()
@@ -122,10 +123,10 @@ 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);
+   boost::timer           tim;
 
-   while(true)
+   while (true)
    {
       T val = generate_random<T>(d(gen));
 #ifndef BOOST_NO_EXCEPTIONS
@@ -134,7 +135,7 @@ void test()
 #endif
          T val2;
          {
-            std::stringstream ss;
+            std::stringstream             ss;
             boost::archive::text_oarchive oa(ss);
             oa << static_cast<const T&>(val);
             boost::archive::text_iarchive ia(ss);
@@ -152,7 +153,7 @@ void test()
             BOOST_CHECK_EQUAL(val, val2);
          }
          {
-            std::stringstream ss;
+            std::stringstream               ss;
             boost::archive::binary_oarchive ob(ss);
             ob << static_cast<const T&>(val);
             boost::archive::binary_iarchive ib(ss);
@@ -161,17 +162,17 @@ void test()
          }
 #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>());
       //
       // Check to see if test is taking too long.
@@ -179,9 +180,9 @@ void test()
       // so don't get too close to that:
       //
 #ifndef CI_SUPPRESS_KNOWN_ISSUES
-      if(tim.elapsed() > 30)
+      if (tim.elapsed() > 30)
 #else
-      if(tim.elapsed() > 10)
+      if (tim.elapsed() > 10)
 #endif
       {
          std::cout << "Timeout reached, aborting tests now....\n";
@@ -197,6 +198,3 @@ int main()
    test<number<debug_adaptor<cpp_int_backend<> > > >();
    return boost::report_errors();
 }
-
-
-