2010-05-11 21:42:16 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2010-05-11 23:36:01 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
2010-05-11 21:42:16 +02:00
|
|
|
//
|
2010-11-16 23:09:02 +01:00
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
2010-05-11 21:42:16 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// <algorithm>
|
|
|
|
|
|
|
|
// template<class ForwardIterator1, class ForwardIterator2>
|
|
|
|
// bool
|
|
|
|
// is_permutation(ForwardIterator1 first1, ForwardIterator1 last1,
|
|
|
|
// ForwardIterator2 first2);
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <cassert>
|
|
|
|
|
2013-01-05 04:21:01 +01:00
|
|
|
#include "test_iterators.h"
|
2010-05-11 21:42:16 +02:00
|
|
|
|
2013-05-09 23:14:23 +02:00
|
|
|
#if _LIBCPP_STD_VER > 11
|
|
|
|
#define HAS_FOUR_ITERATOR_VERSION
|
|
|
|
#endif
|
|
|
|
|
2010-05-11 21:42:16 +02:00
|
|
|
int main()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
const int ia[] = {0};
|
|
|
|
const int ib[] = {0};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + 0),
|
|
|
|
forward_iterator<const int*>(ib)) == true);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + 0),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + 0)) == true);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == true);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == true);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa - 1)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {0};
|
|
|
|
const int ib[] = {1};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == false);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const int ia[] = {0, 0};
|
|
|
|
const int ib[] = {0, 0};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == true);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == true);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa - 1)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {0, 0};
|
|
|
|
const int ib[] = {0, 1};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == false);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {0, 0};
|
|
|
|
const int ib[] = {1, 0};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == false);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {0, 0};
|
|
|
|
const int ib[] = {1, 1};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == false);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {0, 1};
|
|
|
|
const int ib[] = {0, 0};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == false);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {0, 1};
|
|
|
|
const int ib[] = {0, 1};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == true);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == true);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa - 1)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {0, 1};
|
|
|
|
const int ib[] = {1, 0};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == true);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == true);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {0, 1};
|
|
|
|
const int ib[] = {1, 1};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == false);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {1, 0};
|
|
|
|
const int ib[] = {0, 0};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == false);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {1, 0};
|
|
|
|
const int ib[] = {0, 1};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == true);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == true);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {1, 0};
|
|
|
|
const int ib[] = {1, 0};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == true);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == true);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {1, 0};
|
|
|
|
const int ib[] = {1, 1};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == false);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {1, 1};
|
|
|
|
const int ib[] = {0, 0};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == false);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {1, 1};
|
|
|
|
const int ib[] = {0, 1};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == false);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {1, 1};
|
|
|
|
const int ib[] = {1, 0};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == false);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {1, 1};
|
|
|
|
const int ib[] = {1, 1};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == true);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == true);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const int ia[] = {0, 0, 0};
|
|
|
|
const int ib[] = {1, 0, 0};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == false);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {0, 0, 0};
|
|
|
|
const int ib[] = {1, 0, 1};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == false);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {0, 0, 0};
|
|
|
|
const int ib[] = {1, 0, 2};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == false);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {0, 0, 0};
|
|
|
|
const int ib[] = {1, 1, 0};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == false);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {0, 0, 0};
|
|
|
|
const int ib[] = {1, 1, 1};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == false);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {0, 0, 0};
|
|
|
|
const int ib[] = {1, 1, 2};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == false);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {0, 0, 0};
|
|
|
|
const int ib[] = {1, 2, 0};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == false);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {0, 0, 0};
|
|
|
|
const int ib[] = {1, 2, 1};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == false);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {0, 0, 0};
|
|
|
|
const int ib[] = {1, 2, 2};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == false);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {0, 0, 1};
|
|
|
|
const int ib[] = {1, 0, 0};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == true);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == true);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa - 1)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {0, 0, 1};
|
|
|
|
const int ib[] = {1, 0, 1};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == false);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {0, 1, 2};
|
|
|
|
const int ib[] = {1, 0, 2};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == true);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == true);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa - 1)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {0, 1, 2};
|
|
|
|
const int ib[] = {1, 2, 0};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == true);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == true);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa - 1)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {0, 1, 2};
|
|
|
|
const int ib[] = {2, 1, 0};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == true);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == true);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa - 1)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {0, 1, 2};
|
|
|
|
const int ib[] = {2, 0, 1};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == true);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == true);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa - 1)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {0, 0, 1};
|
|
|
|
const int ib[] = {1, 0, 1};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == false);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {0, 0, 1};
|
|
|
|
const int ib[] = {1, 0, 0};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == true);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == true);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib + 1),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == false);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa - 1)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {0, 1, 2, 3, 0, 5, 6, 2, 4, 4};
|
|
|
|
const int ib[] = {4, 2, 3, 0, 1, 4, 0, 5, 6, 2};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == true);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == true);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib + 1 ),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == false);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa - 1)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
{
|
|
|
|
const int ia[] = {0, 1, 2, 3, 0, 5, 6, 2, 4, 4};
|
|
|
|
const int ib[] = {4, 2, 3, 0, 1, 4, 0, 5, 6, 0};
|
|
|
|
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib)) == false);
|
2013-05-09 23:14:23 +02:00
|
|
|
#ifdef HAS_FOUR_ITERATOR_VERSION
|
|
|
|
assert(std::is_permutation(forward_iterator<const int*>(ia),
|
|
|
|
forward_iterator<const int*>(ia + sa),
|
|
|
|
forward_iterator<const int*>(ib),
|
|
|
|
forward_iterator<const int*>(ib + sa)) == false);
|
|
|
|
#endif
|
2010-05-11 21:42:16 +02:00
|
|
|
}
|
|
|
|
}
|