Expand description
A node that splits a single MLE into 2^num_vars smaller MLEs using prefix bits.
Structs§
- Split
Node - A node that splits a single MLE into 2^num_vars smaller MLEs using prefix bits. Works big endian.
Functions§
- bits_
iter - Returns an iterator that gives the MSB-first binary representation of the numbers from 0 to 2^num_bits. 0,0,0 -> 0,0,1 -> 0,1,0 -> 0,1,1 -> 1,0,0 -> 1,0,1 -> 1,1,0 -> 1,1,1