/*use hi_sparse_array::level::{IntrusiveListLevel, SingleBlockLevel}; use hi_sparse_array::level_block::{Block, SmallBlock}; use hi_sparse_array::SparseArray; type Lvl0Block = Block; type Lvl1Block = Block; type Lvl2Block = Block; type Lvls = (SingleBlockLevel, IntrusiveListLevel, IntrusiveListLevel); type CompactLvl1Block = SmallBlock; type CompactLvl2Block = SmallBlock; type CompactLvls = ( SingleBlockLevel, IntrusiveListLevel, IntrusiveListLevel );*/ use hibit_tree::{SparseTree, DenseTree, config}; // TODO: switch to Compact on flag for CI. //pub type Array = SparseTree; pub type Array = DenseTree; pub const RANGE: usize = 260_000;