]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/sort/spreadsort/detail/constants.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / sort / spreadsort / detail / constants.hpp
index 9eebc43c697787ad4ee456049db21f6afc6d29b6..a7286e345c3dad1c7c10ab08043a9a6aa4a83f15 100644 (file)
@@ -27,7 +27,7 @@ int_log_mean_bin_size = 2,
 //Minimum value 1
 int_log_min_split_count = 9,
 //This is the minimum split count to use spreadsort when it will finish in one
-//iteration.  Make this larger the faster std::sort is relative to integer_sort.
+//iteration.  Make this larger the faster boost::sort::pdqsort is relative to integer_sort.
 int_log_finishing_count = 31,
 //Sets the minimum number of items per bin for floating point.
 float_log_mean_bin_size = 2,
@@ -35,7 +35,7 @@ float_log_mean_bin_size = 2,
 //Minimum value 1
 float_log_min_split_count = 8,
 //This is the minimum split count to use spreadsort when it will finish in one
-//iteration.  Make this larger the faster std::sort is relative to float_sort.
+//iteration.  Make this larger the faster boost::sort::pdqsort is relative to float_sort.
 float_log_finishing_count = 4,
 //There is a minimum size below which it is not worth using spreadsort
 min_sort_size = 1000 };