TreeOneHotToBinary constructor

TreeOneHotToBinary(
  1. Logic onehot, {
  2. String name = 'tree_one_hot_to_binary',
})

Top level module for computing binary to one-hot using recursion

Implementation

TreeOneHotToBinary(super.onehot, {super.name = 'tree_one_hot_to_binary'})
    : super.base() {
  binary <= _NodeOneHotToBinary(onehot).binary;
}