adjusted_smallsort_threshhold

This commit is contained in:
TheRadischen
2026-08-16 13:33:32 +02:00
parent 4c945c995a
commit d8177f7716

View File

@@ -40,7 +40,7 @@ _stable_sort_general :: proc(data: $T/[]$E, call: $P, $KIND: Sort_Kind) where (O
}
merge_rotate :: proc(data: T, call: P){
if len(data) <= 64 {
if len(data) <= 200 {
insertion_sort(data, call)
return
}