mirror of
https://github.com/boostorg/histogram.git
synced 2026-01-30 20:02:13 +00:00
102 lines
2.3 KiB
C++
102 lines
2.3 KiB
C++
// Copyright 2015-2016 Hans Dembinski
|
|
//
|
|
// 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_0.txt)
|
|
|
|
#include <boost/histogram/detail/nstore.hpp>
|
|
#include <boost/histogram/detail/wtype.hpp>
|
|
#define BOOST_TEST_MODULE nstore_test
|
|
#include <boost/test/unit_test.hpp>
|
|
#include <boost/test/test_tools.hpp>
|
|
#include <boost/move/move.hpp>
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <limits>
|
|
using namespace boost::histogram::detail;
|
|
|
|
BOOST_AUTO_TEST_CASE(wtype_streamer)
|
|
{
|
|
std::ostringstream os;
|
|
wtype w;
|
|
w.w = 1.2;
|
|
w.w2 = 2.3;
|
|
os << w;
|
|
BOOST_CHECK_EQUAL(os.str(), std::string("(1.2,2.3)"));
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(nstore_bad_alloc)
|
|
{
|
|
BOOST_CHECK_THROW(nstore(nstore::size_type(-1)),
|
|
std::bad_alloc);
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(nstore_grow_1)
|
|
{
|
|
double x = 1.0;
|
|
nstore n(1);
|
|
n.increase(0);
|
|
for (unsigned i = 0; i < 64; ++i) {
|
|
n += n;
|
|
x += x;
|
|
n.increase(0);
|
|
++x;
|
|
BOOST_CHECK_EQUAL(n.value(0), x);
|
|
BOOST_CHECK_EQUAL(n.variance(0), x);
|
|
}
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(nstore_grow_2)
|
|
{
|
|
nstore n(1);
|
|
n.increase(0);
|
|
for (unsigned i = 0; i < 64; ++i) {
|
|
n += n;
|
|
nstore a(1);
|
|
a.increase(0, 0.0); // converts to wtype
|
|
a = n;
|
|
BOOST_CHECK_EQUAL(a.value(0), n.value(0));
|
|
BOOST_CHECK_EQUAL(a.variance(0), n.variance(0));
|
|
}
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(nstore_grow_3)
|
|
{
|
|
nstore n(1);
|
|
n.increase(0);
|
|
for (unsigned i = 0; i < 64; ++i) {
|
|
n += n;
|
|
nstore a(1);
|
|
a += n;
|
|
a.increase(0, 0.0); // converts to wtype
|
|
BOOST_CHECK_EQUAL(a.value(0), n.value(0));
|
|
BOOST_CHECK_EQUAL(a.variance(0), n.variance(0));
|
|
}
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(nstore_bad_add)
|
|
{
|
|
nstore a(1), b(2);
|
|
BOOST_CHECK_THROW(a += b, std::logic_error);
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(nstore_add_with_growth)
|
|
{
|
|
nstore a(1), b(1);
|
|
a.increase(0);
|
|
for (unsigned i = 0; i < 10; ++i)
|
|
a += a;
|
|
b.increase(0);
|
|
b += a;
|
|
BOOST_CHECK_EQUAL(b.value(0), a.value(0) + 1.0);
|
|
}
|
|
|
|
BOOST_AUTO_TEST_CASE(nstore_equality)
|
|
{
|
|
nstore a(1), b(1), c(2);
|
|
BOOST_CHECK(a == b);
|
|
a.increase(0);
|
|
BOOST_CHECK(!(a == b));
|
|
BOOST_CHECK(!(b == c));
|
|
}
|