init
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
This commit is contained in:
198
Telegram/ThirdParty/range-v3/test/numeric/partial_sum.cpp
vendored
Normal file
198
Telegram/ThirdParty/range-v3/test/numeric/partial_sum.cpp
vendored
Normal file
@@ -0,0 +1,198 @@
|
||||
// Range v3 library
|
||||
//
|
||||
// Copyright Eric Niebler 2014-present
|
||||
// Copyright Gonzalo Brito Gadeschi 2014
|
||||
//
|
||||
// Use, modification and distribution is subject to 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)
|
||||
//
|
||||
// Project home: https://github.com/ericniebler/range-v3
|
||||
//
|
||||
// Implementation based on the code in libc++
|
||||
// http://http://libcxx.llvm.org/
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||
// Source Licenses. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include <range/v3/core.hpp>
|
||||
#include <range/v3/numeric/partial_sum.hpp>
|
||||
#include <range/v3/view/zip.hpp>
|
||||
#include "../simple_test.hpp"
|
||||
#include "../test_iterators.hpp"
|
||||
|
||||
struct S
|
||||
{
|
||||
int i;
|
||||
};
|
||||
|
||||
template<class InIter, class OutIter, class InSent = InIter> void test()
|
||||
{
|
||||
using ranges::partial_sum;
|
||||
using ranges::make_subrange;
|
||||
{ // iterator
|
||||
int ir[] = {1, 3, 6, 10, 15};
|
||||
const unsigned s = sizeof(ir) / sizeof(ir[0]);
|
||||
int ia[] = {1, 2, 3, 4, 5};
|
||||
int ib[s] = {0};
|
||||
auto r = partial_sum(InIter(ia), InSent(ia + s), OutIter(ib));
|
||||
CHECK(base(r.in) == ia + s);
|
||||
CHECK(base(r.out) == ib + s);
|
||||
for(unsigned i = 0; i < s; ++i)
|
||||
{
|
||||
CHECK(ib[i] == ir[i]);
|
||||
}
|
||||
}
|
||||
|
||||
{ // range + output iterator
|
||||
int ir[] = {1, 3, 6, 10, 15};
|
||||
const unsigned s = sizeof(ir) / sizeof(ir[0]);
|
||||
int ia[] = {1, 2, 3, 4, 5};
|
||||
int ib[s] = {0};
|
||||
auto rng = make_subrange(InIter(ia), InSent(ia + s));
|
||||
auto r = partial_sum(rng, OutIter(ib));
|
||||
CHECK(base(r.in) == ia + s);
|
||||
CHECK(base(r.out) == ib + s);
|
||||
for(unsigned i = 0; i < s; ++i)
|
||||
{
|
||||
CHECK(ib[i] == ir[i]);
|
||||
}
|
||||
}
|
||||
|
||||
{ // range + output range
|
||||
int ir[] = {1, 3, 6, 10, 15};
|
||||
const unsigned s = sizeof(ir) / sizeof(ir[0]);
|
||||
int ia[] = {1, 2, 3, 4, 5};
|
||||
int ib[s] = {0};
|
||||
auto rng = make_subrange(InIter(ia), InSent(ia + s));
|
||||
auto orng = make_subrange(OutIter(ib), OutIter(ib + s));
|
||||
auto r = partial_sum(rng, orng);
|
||||
CHECK(base(r.in) == ia + s);
|
||||
CHECK(base(r.out) == ib + s);
|
||||
for(unsigned i = 0; i < s; ++i)
|
||||
{
|
||||
CHECK(ib[i] == ir[i]);
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
int ia[] = {1, 2, 3, 4, 5};
|
||||
int ir[] = {1, -1, -4, -8, -13};
|
||||
const unsigned s = sizeof(ia) / sizeof(ia[0]);
|
||||
int ib[s] = {0};
|
||||
auto rng = make_subrange(InIter(ia), InSent(ia + s));
|
||||
auto orng = make_subrange(OutIter(ib), OutIter(ib + s));
|
||||
auto r = partial_sum(rng, orng, std::minus<int>());
|
||||
CHECK(base(r.in) == ia + s);
|
||||
CHECK(base(r.out) == ib + s);
|
||||
for(unsigned i = 0; i < s; ++i)
|
||||
{
|
||||
CHECK(ib[i] == ir[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
int main()
|
||||
{
|
||||
test<InputIterator<const int *>, InputIterator<int *>>();
|
||||
test<InputIterator<const int *>, ForwardIterator<int *>>();
|
||||
test<InputIterator<const int *>, BidirectionalIterator<int *>>();
|
||||
test<InputIterator<const int *>, RandomAccessIterator<int *>>();
|
||||
test<InputIterator<const int *>, int *>();
|
||||
|
||||
test<ForwardIterator<const int *>, InputIterator<int *>>();
|
||||
test<ForwardIterator<const int *>, ForwardIterator<int *>>();
|
||||
test<ForwardIterator<const int *>, BidirectionalIterator<int *>>();
|
||||
test<ForwardIterator<const int *>, RandomAccessIterator<int *>>();
|
||||
test<ForwardIterator<const int *>, int *>();
|
||||
|
||||
test<BidirectionalIterator<const int *>, InputIterator<int *>>();
|
||||
test<BidirectionalIterator<const int *>, ForwardIterator<int *>>();
|
||||
test<BidirectionalIterator<const int *>, BidirectionalIterator<int *>>();
|
||||
test<BidirectionalIterator<const int *>, RandomAccessIterator<int *>>();
|
||||
test<BidirectionalIterator<const int *>, int *>();
|
||||
|
||||
test<RandomAccessIterator<const int *>, InputIterator<int *>>();
|
||||
test<RandomAccessIterator<const int *>, ForwardIterator<int *>>();
|
||||
test<RandomAccessIterator<const int *>, BidirectionalIterator<int *>>();
|
||||
test<RandomAccessIterator<const int *>, RandomAccessIterator<int *>>();
|
||||
test<RandomAccessIterator<const int *>, int *>();
|
||||
|
||||
test<const int *, InputIterator<int *>>();
|
||||
test<const int *, ForwardIterator<int *>>();
|
||||
test<const int *, BidirectionalIterator<int *>>();
|
||||
test<const int *, RandomAccessIterator<int *>>();
|
||||
test<const int *, int *>();
|
||||
|
||||
using ranges::partial_sum;
|
||||
|
||||
{ // Test projections
|
||||
S ia[] = {{1}, {2}, {3}, {4}, {5}};
|
||||
int ir[] = {1, 3, 6, 10, 15};
|
||||
const unsigned s = sizeof(ir) / sizeof(ir[0]);
|
||||
int ib[s] = {0};
|
||||
auto r = partial_sum(ranges::begin(ia), ranges::begin(ia) + s, ranges::begin(ib),
|
||||
std::plus<int>(), &S::i);
|
||||
CHECK(base(r.in) == ia + s);
|
||||
CHECK(base(r.out) == ib + s);
|
||||
for(unsigned i = 0; i < s; ++i)
|
||||
{
|
||||
CHECK(ib[i] == ir[i]);
|
||||
}
|
||||
}
|
||||
|
||||
{ // Test BinaryOp
|
||||
int ia[] = {1, 2, 3, 4, 5};
|
||||
int ir[] = {1, 2, 6, 24, 120};
|
||||
const unsigned s = sizeof(ir) / sizeof(ir[0]);
|
||||
int ib[s] = {0};
|
||||
auto r = partial_sum(ia, ranges::begin(ib), std::multiplies<int>());
|
||||
CHECK(base(r.in) == ia + s);
|
||||
CHECK(base(r.out) == ib + s);
|
||||
for(unsigned i = 0; i < s; ++i)
|
||||
{
|
||||
CHECK(ib[i] == ir[i]);
|
||||
}
|
||||
}
|
||||
|
||||
{ // Test calling it with an array
|
||||
int ia[] = {1, 2, 3, 4, 5};
|
||||
int ir[] = {1, 2, 6, 24, 120};
|
||||
const unsigned s = sizeof(ir) / sizeof(ir[0]);
|
||||
int ib[s] = {0};
|
||||
auto r = partial_sum(ia, ib, std::multiplies<int>());
|
||||
CHECK(base(r.in) == ia + s);
|
||||
CHECK(base(r.out) == ib + s);
|
||||
for(unsigned i = 0; i < s; ++i)
|
||||
{
|
||||
CHECK(ib[i] == ir[i]);
|
||||
}
|
||||
}
|
||||
|
||||
{ // Test calling it with proxy iterators
|
||||
using namespace ranges;
|
||||
int ia[] = {1, 2, 3, 4, 5};
|
||||
int ib[] = {99, 99, 99, 99, 99};
|
||||
int ir[] = {1, 2, 6, 24, 120};
|
||||
const unsigned s = sizeof(ir) / sizeof(ir[0]);
|
||||
int ic[s] = {0};
|
||||
auto rng = views::zip(ia, ib);
|
||||
using CR = iter_common_reference_t<iterator_t<decltype(rng)>>;
|
||||
auto r = partial_sum(rng, ic, std::multiplies<int>(), [](CR p) {return p.first;});
|
||||
CHECK(base(r.in) == ranges::begin(rng) + s);
|
||||
CHECK(base(r.out) == ic + s);
|
||||
for(unsigned i = 0; i < s; ++i)
|
||||
{
|
||||
CHECK(ic[i] == ir[i]);
|
||||
}
|
||||
}
|
||||
|
||||
return ::test_result();
|
||||
}
|
||||
Reference in New Issue
Block a user