generatorMap property

Map<Type, ParallelPrefix Function(List<Logic> inps, Logic op(Logic term1, Logic term2))> generatorMap
getter/setter pair

Map from Type to Function for Parallel Prefix generator

Implementation

static Map<
        Type,
        ParallelPrefix Function(
            List<Logic> inps, Logic Function(Logic term1, Logic term2) op)>
    generatorMap = {
  Ripple: Ripple.new,
  Sklansky: Sklansky.new,
  KoggeStone: KoggeStone.new,
  BrentKung: BrentKung.new
};