Module split_node

Module split_node 

Source
Expand description

A node that splits a single MLE into 2^num_vars smaller MLEs using prefix bits.

Structs§

SplitNode
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