//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // template // requires LessThanComparable // Iter // max_element(Iter first, Iter last); #include #include #include "test_iterators.h" template void test(Iter first, Iter last) { Iter i = std::max_element(first, last); if (first != last) { for (Iter j = first; j != last; ++j) assert(!(*i < *j)); } else assert(i == last); } template void test(unsigned N) { int* a = new int[N]; for (int i = 0; i < N; ++i) a[i] = i; std::random_shuffle(a, a+N); test(Iter(a), Iter(a+N)); delete [] a; } template void test() { test(0); test(1); test(2); test(3); test(10); test(1000); } int main() { test >(); test >(); test >(); test(); }