// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
/// The branching factor of RRB-trees
pub const VECTOR_CHUNK_SIZE: usize = 4;
pub const VECTOR_CHUNK_SIZE: usize = 64;
/// The branching factor of B-trees
// Value of 6 chosen improve test coverage, specifically
// so that both deletion node merging and rebalancing are tested.
// Must be an even number!
pub const ORD_CHUNK_SIZE: usize = 6;
pub const ORD_CHUNK_SIZE: usize = 64;
/// The level size of HAMTs, in bits
/// Branching factor is 2 ^ HashLevelSize.
// The smallest supported value is 3 currently, as the small node
// (half the size of a full node) requires at least 4 slots.
pub const HASH_LEVEL_SIZE: usize = 3;
pub const HASH_LEVEL_SIZE: usize = 5;