1 parent c90e63d commit 493081fCopy full SHA for 493081f
1 file changed
solitaire-solver/src/board.rs
@@ -70,7 +70,7 @@ impl<T: Radixable<U33>> Dispatcher<T, U33> for U33 {
70
fn voracious_mt_sort(&self, arr: &mut [T], thread_n: usize) {
71
if arr.len() <= 256 {
72
arr.sort_unstable_by(|a, b| a.partial_cmp(b).unwrap());
73
- } else if arr.len() < 5_000_000 {
+ } else if arr.len() < 5_000_000_000 {
74
peeka_sort(arr, 8, 650_000, thread_n);
75
} else {
76
// Switch to regions sort algo
0 commit comments