Beispiel #1
0
  @Override
  protected void bitSetChanged(int bitSetidx, BitSet7 set) {
    BitSet7 out = (BitSet7) inputBitSets[0].clone();

    for (int i = 1; i < this.inputBitSets.length; i++) {
      out.and(inputBitSets[i]);
    }

    out.flip(0, wordlength);
    this.sendBitSet(out);
  }