commit 70fbcc93879e9f091203e669eef8f75f4ad09462
parent 5ff97339dc1ba681d2e728c69dee9b5f8135b4f7
Author: [email protected] <[email protected]>
Date: Wed, 14 Nov 2018 02:09:07 +0300
partition test
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/tests/expression_test.cpp b/tests/expression_test.cpp
@@ -114,7 +114,7 @@ constexpr inline size_t fast_range_sum(size_t stop) { return stop * (stop + 1) /
TEST(partition)
{
{
- univector<double, 371> output = zeros();
+ univector<double, 385> output = zeros();
auto result = partition(output, counter(), 5, 1);
CHECK(result.count == 5);
CHECK(result.chunk_size == 80);
@@ -128,11 +128,11 @@ TEST(partition)
result(3);
CHECK(sum(output) >= fast_range_sum(320 - 1));
result(4);
- CHECK(sum(output) == fast_range_sum(371 - 1));
+ CHECK(sum(output) == fast_range_sum(385 - 1));
}
{
- univector<double, 371> output = zeros();
+ univector<double, 385> output = zeros();
auto result = partition(output, counter(), 5, 160);
CHECK(result.count == 3);
CHECK(result.chunk_size == 160);
@@ -142,7 +142,7 @@ TEST(partition)
result(1);
CHECK(sum(output) >= fast_range_sum(320 - 1));
result(2);
- CHECK(sum(output) == fast_range_sum(371 - 1));
+ CHECK(sum(output) == fast_range_sum(385 - 1));
}
}