ch method

void ch(
  1. int qbit1,
  2. int qbit2
)

Implementation

void ch(int qbit1, int qbit2) {
  gates.add(CH(qbit1, qbit2));
}