blob: 72fee152c305fa5a2637373c2e598d3c3a668f6f [file] [log] [blame]
// Copyright (C) 2020-2021 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the
// Free Software Foundation; either version 3, or (at your option)
// any later version.
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License along
// with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>.
// { dg-options "-std=gnu++2a" }
// { dg-do run { target c++2a } }
#include <algorithm>
#include <testsuite_hooks.h>
#include <testsuite_iterators.h>
using __gnu_test::test_container;
using __gnu_test::test_range;
using __gnu_test::bidirectional_iterator_wrapper;
namespace ranges = std::ranges;
void
test01()
{
int x[] = {5, 4, 3, 2, 1};
int y[] = {5, 4, 3, 2, 1};
for (int i = 0; i <= 5; i++)
{
test_container<int, bidirectional_iterator_wrapper> cx(x, x+i);
test_container<int, bidirectional_iterator_wrapper> cy(y, y+i);
for (int j = 0; ; j++)
{
auto found1 = std::prev_permutation(cx.begin(), cx.end());
auto [last,found2] = ranges::prev_permutation(cy.begin(), cy.end());
VERIFY( found1 == found2 );
VERIFY( ranges::equal(cx, cy) );
if (!found2)
break;
}
}
}
void
test02()
{
int x[] = {1, 2, 3, 4, 5};
test_range<int, bidirectional_iterator_wrapper> rx(x);
auto [last,found] = ranges::prev_permutation(rx, ranges::greater{});
VERIFY( found && last == rx.end() );
VERIFY( last == rx.end() );
VERIFY( ranges::equal(rx, (int[]){1,2,3,5,4}) );
ranges::prev_permutation(rx, {}, [] (int a) { return -a; });
VERIFY( ranges::equal(rx, (int[]){1,2,4,3,5}) );
VERIFY( !ranges::prev_permutation(x, x).found );
VERIFY( !ranges::prev_permutation(x, x+1).found );
}
constexpr bool
test03()
{
int x[] = {3,2,1};
ranges::prev_permutation(x);
return ranges::equal(x, (int[]){3,1,2});
}
int
main()
{
test01();
test02();
static_assert(test03());
}