]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/move/test/adaptive_sort_test.cpp
bump version to 18.2.4-pve3
[ceph.git] / ceph / src / boost / libs / move / test / adaptive_sort_test.cpp
CommitLineData
7c673cae
FG
1//////////////////////////////////////////////////////////////////////////////
2//
3// (C) Copyright Ion Gaztanaga 2015-2016.
4// Distributed under the Boost Software License, Version 1.0.
5// (See accompanying file LICENSE_1_0.txt or copy at
6// http://www.boost.org/LICENSE_1_0.txt)
7//
8// See http://www.boost.org/libs/move for documentation.
9//
10//////////////////////////////////////////////////////////////////////////////
11
12#include <cstdlib> //std::srand
7c673cae
FG
13#include <iostream> //std::cout
14
15#include <boost/config.hpp>
16
17#include <boost/move/unique_ptr.hpp>
18#include <boost/container/vector.hpp>
7c673cae
FG
19
20#include "order_type.hpp"
b32b8144 21#include "random_shuffle.hpp"
7c673cae
FG
22
23#include <boost/move/algo/adaptive_sort.hpp>
24#include <boost/move/core.hpp>
20effc67 25#include <cstdlib>
7c673cae
FG
26
27template<class T>
28bool test_random_shuffled(std::size_t const element_count, std::size_t const num_keys, std::size_t const num_iter)
29{
30 boost::movelib::unique_ptr<T[]> elements(new T[element_count]);
31 boost::movelib::unique_ptr<std::size_t[]> key_reps(new std::size_t[num_keys ? num_keys : element_count]);
32 std::cout << "- - N: " << element_count << ", Keys: " << num_keys << ", It: " << num_iter << " \n";
33
34 //Initialize keys
35 for(std::size_t i=0; i < element_count; ++i){
36 std::size_t key = num_keys ? (i % num_keys) : i;
37 elements[i].key=key;
38 }
39
40 std::srand(0);
41
92f5a8d4 42 for (std::size_t it = 0; it != num_iter; ++it)
7c673cae 43 {
b32b8144 44 ::random_shuffle(elements.get(), elements.get() + element_count);
7c673cae
FG
45 for(std::size_t i = 0; i < (num_keys ? num_keys : element_count); ++i){
46 key_reps[i]=0;
47 }
48 for(std::size_t i = 0; i < element_count; ++i){
49 elements[i].val = key_reps[elements[i].key]++;
50 }
51
b32b8144 52 boost::movelib::adaptive_sort(elements.get(), elements.get()+element_count, order_type_less());
7c673cae 53
b32b8144 54 if (!is_order_type_ordered(elements.get(), element_count))
7c673cae
FG
55 {
56 std::cout << "\n ERROR\n";
20effc67 57 std::abort();
7c673cae
FG
58 }
59 }
60 return true;
61}
62
92f5a8d4
TL
63void instantiate_smalldiff_iterators()
64{
65 typedef randit<int, short> short_rand_it_t;
66 boost::movelib::adaptive_sort(short_rand_it_t(), short_rand_it_t(), less_int());
67
68 typedef randit<int, signed char> schar_rand_it_t;
69 boost::movelib::adaptive_sort(schar_rand_it_t(), schar_rand_it_t(), less_int());
70}
71
7c673cae
FG
72int main()
73{
92f5a8d4
TL
74 instantiate_smalldiff_iterators();
75
7c673cae 76 const std::size_t NIter = 100;
1e59de90
TL
77 //Below absolute minimal unique values
78 test_random_shuffled<order_move_type>(10001, 3, NIter);
79 //Above absolute minimal unique values, below internal buffer
80 test_random_shuffled<order_move_type>(10001, 65, NIter);
81 //Enough keys for internal buffer but below minimal keys
82 test_random_shuffled<order_move_type>(10001, 101, NIter);
83 //Enough keys for internal buffer and above minimal keys
84 test_random_shuffled<order_move_type>(10001, 200, NIter);
85 //Enough keys for internal buffer, and full keys
b32b8144
FG
86 test_random_shuffled<order_move_type>(10001, 1023, NIter);
87 test_random_shuffled<order_move_type>(10001, 4095, NIter);
88 test_random_shuffled<order_move_type>(10001, 0, NIter);
7c673cae
FG
89
90 return 0;
91}