From d8177f7716c4cf4444a46c7924366be7294984e1 Mon Sep 17 00:00:00 2001 From: TheRadischen Date: Sun, 16 Aug 2026 13:33:32 +0200 Subject: [PATCH] adjusted_smallsort_threshhold --- core/slice/sort_private.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/slice/sort_private.odin b/core/slice/sort_private.odin index 1a2a24b5b..0818a7e25 100644 --- a/core/slice/sort_private.odin +++ b/core/slice/sort_private.odin @@ -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 }