// -*- C++ -*- //===-- adjacent_find.pass.cpp --------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // UNSUPPORTED: c++98, c++03, c++11, c++14 #include "support/pstl_test_config.h" #include #include #include "support/utils.h" using namespace TestUtils; struct test_adjacent_find { template void operator()(Policy&& exec, Iterator first, Iterator last, Pred pred) { using namespace std; auto k = std::adjacent_find(first, last, pred); auto i = adjacent_find(exec, first, last, pred); EXPECT_TRUE(i == k, "wrong return value from adjacent_find with predicate"); i = adjacent_find(exec, first, last); EXPECT_TRUE(i == k, "wrong return value from adjacent_find without predicate"); } }; template void test_adjacent_find_by_type() { size_t counts[] = {2, 3, 500}; for (size_t c = 0; c < const_size(counts); ++c) { for (size_t e = 0; e < (counts[c] >= 64 ? 64 : (counts[c] == 2 ? 1 : 2)); ++e) { Sequence in(counts[c], [](size_t v) -> T { return T(v); }); //fill 0...n in[e] = in[e + 1] = -1; //make an adjacent pair auto i = std::adjacent_find(in.cbegin(), in.cend(), std::equal_to()); EXPECT_TRUE(i == in.cbegin() + e, "std::adjacent_find returned wrong result"); invoke_on_all_policies(test_adjacent_find(), in.begin(), in.end(), std::equal_to()); invoke_on_all_policies(test_adjacent_find(), in.cbegin(), in.cend(), std::equal_to()); } } //special cases: size=0, size=1; for (size_t expect = 0; expect < 1; ++expect) { Sequence in(expect, [](size_t v) -> T { return T(v); }); //fill 0...n auto i = std::adjacent_find(in.cbegin(), in.cend(), std::equal_to()); EXPECT_TRUE(i == in.cbegin() + expect, "std::adjacent_find returned wrong result"); invoke_on_all_policies(test_adjacent_find(), in.begin(), in.end(), std::equal_to()); invoke_on_all_policies(test_adjacent_find(), in.cbegin(), in.cend(), std::equal_to()); } //special cases: Sequence a1 = {5, 5, 5, 6, 7, 8, 9}; invoke_on_all_policies(test_adjacent_find(), a1.begin(), a1.end(), std::equal_to()); invoke_on_all_policies(test_adjacent_find(), a1.begin() + 1, a1.end(), std::equal_to()); invoke_on_all_policies(test_adjacent_find(), a1.cbegin(), a1.cend(), std::equal_to()); invoke_on_all_policies(test_adjacent_find(), a1.cbegin() + 1, a1.cend(), std::equal_to()); Sequence a2 = {5, 6, 7, 8, 9, 9}; invoke_on_all_policies(test_adjacent_find(), a2.begin(), a2.end(), std::equal_to()); invoke_on_all_policies(test_adjacent_find(), a2.begin(), a2.end() - 1, std::equal_to()); invoke_on_all_policies(test_adjacent_find(), a2.cbegin(), a2.cend(), std::equal_to()); invoke_on_all_policies(test_adjacent_find(), a2.cbegin(), a2.cend() - 1, std::equal_to()); Sequence a3 = {5, 6, 6, 6, 7, 9, 9, 9, 9}; invoke_on_all_policies(test_adjacent_find(), a3.begin(), a3.end(), std::equal_to()); invoke_on_all_policies(test_adjacent_find(), a3.cbegin(), a3.cend(), std::equal_to()); } template struct test_non_const { template void operator()(Policy&& exec, Iterator iter) { adjacent_find(exec, iter, iter, non_const(std::equal_to())); } }; int main() { test_adjacent_find_by_type(); test_adjacent_find_by_type(); test_algo_basic_single(run_for_rnd_bi>()); std::cout << done() << std::endl; return 0; }