File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -72,8 +72,8 @@ class InlineSkipList {
7272 // in the allocator must remain allocated for the lifetime of the
7373 // skiplist object.
7474 explicit InlineSkipList (Comparator cmp, Allocator* allocator,
75- int32_t max_height = 12 ,
76- int32_t branching_factor = 4 );
75+ int32_t max_height = 24 ,
76+ int32_t branching_factor = 2 );
7777 // No copying allowed
7878 InlineSkipList (const InlineSkipList&) = delete ;
7979 InlineSkipList& operator =(const InlineSkipList&) = delete ;
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ class SkipList {
5050 // and will allocate memory using "*allocator". Objects allocated in the
5151 // allocator must remain allocated for the lifetime of the skiplist object.
5252 explicit SkipList (Comparator cmp, Allocator* allocator,
53- int32_t max_height = 12 , int32_t branching_factor = 4 );
53+ int32_t max_height = 24 , int32_t branching_factor = 2 );
5454 // No copying allowed
5555 SkipList (const SkipList&) = delete ;
5656 void operator =(const SkipList&) = delete ;
You can’t perform that action at this time.
0 commit comments