Commit 2be4753
committed
Increase maximum sharing map tree height from 6 to 10
Now that the sharing map tree grows dynamically as elements are inserted, a
higher value for the maximum tree height can be used. The maximum tree height is
determined by bits / chunk, with bits being the number of bits of the hash code
used, and chunk being the number of bits used to determine the child node of an
inner node. For example, if chunk = 3, then a node can have at most 8 children.
Then if bits = 30, bits / chunk = 10 and the maximum tree height is 10. The
constant bits should be divisible by chunk.1 parent e4174dd commit 2be4753
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1284 | 1284 | | |
1285 | 1285 | | |
1286 | 1286 | | |
1287 | | - | |
| 1287 | + | |
1288 | 1288 | | |
1289 | 1289 | | |
1290 | 1290 | | |
| |||
0 commit comments