From 27b4160c2939498222e8fbcac41b59c18004c416 Mon Sep 17 00:00:00 2001 From: Robert Grosse Date: Thu, 7 Jan 2016 14:40:42 -0800 Subject: [PATCH] Change from binary to 16-ary tree --- enjarify/jvm/treelist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/enjarify/jvm/treelist.py b/enjarify/jvm/treelist.py index c087a07..1b1d4f5 100644 --- a/enjarify/jvm/treelist.py +++ b/enjarify/jvm/treelist.py @@ -14,7 +14,7 @@ # The first SIZE elements are stored directly, the rest are stored in one of SPLIT subtrees SIZE = 16 -SPLIT = 2 +SPLIT = 16 # This class represents a list as a persistent n-ary tree # This has much slower access and updates than a real list but has the advantage