]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/accumulators/test/extended_p_square.cpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / accumulators / test / extended_p_square.cpp
index f3a6320f334bcfaf80b29ab7f8f8a07d14333fbe..09f50cf875aa46a2668b4a33ffe8fc33d6e266e3 100644 (file)
 #include <boost/accumulators/accumulators.hpp>
 #include <boost/accumulators/statistics/stats.hpp>
 #include <boost/accumulators/statistics/extended_p_square.hpp>
+#include <sstream>
+#include <boost/archive/text_oarchive.hpp>
+#include <boost/archive/text_iarchive.hpp>
 
 using namespace boost;
 using namespace unit_test;
 using namespace boost::accumulators;
 
+typedef accumulator_set<double, stats<tag::extended_p_square> > accumulator_t;
+
 ///////////////////////////////////////////////////////////////////////////////
 // test_stat
 //
 void test_stat()
 {
-    typedef accumulator_set<double, stats<tag::extended_p_square> > accumulator_t;
 
     // tolerance
     double epsilon = 3;
@@ -61,6 +65,36 @@ void test_stat()
     }
 }
 
+///////////////////////////////////////////////////////////////////////////////
+// test_persistency
+//
+void test_persistency()
+{
+    // "persistent" storage
+    std::stringstream ss;
+    // tolerance
+    double epsilon = 3.;
+    std::vector<double> probs;
+    probs.push_back(0.75);
+    {
+        accumulator_t acc(extended_p_square_probabilities = probs);
+        // a random number generator
+        boost::lagged_fibonacci607 rng;
+
+        for (int i=0; i<10000; ++i)
+            acc(rng());
+
+        BOOST_CHECK_CLOSE(extended_p_square(acc)[0], probs[0], epsilon);
+        boost::archive::text_oarchive oa(ss);
+        acc.serialize(oa, 0);
+    }
+    accumulator_t acc(extended_p_square_probabilities = probs);
+    boost::archive::text_iarchive ia(ss);
+    acc.serialize(ia, 0);
+    BOOST_CHECK_CLOSE(extended_p_square(acc)[0], probs[0], epsilon);
+
+}
+
 ///////////////////////////////////////////////////////////////////////////////
 // init_unit_test_suite
 //
@@ -69,6 +103,7 @@ test_suite* init_unit_test_suite( int argc, char* argv[] )
     test_suite *test = BOOST_TEST_SUITE("extended_p_square test");
 
     test->add(BOOST_TEST_CASE(&test_stat));
+    test->add(BOOST_TEST_CASE(&test_persistency));
 
     return test;
 }