// 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
// Must be an even number!
// Value if 6 chosen improve test coverage, specifically
// so that both deletion node merging and rebalancing are tested.
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.
pub const HASH_LEVEL_SIZE: usize = 2;
pub const HASH_LEVEL_SIZE: usize = 5;