cx method

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

Implementation

void cx(int qbit1, int qbit2) {
  gates.add(CX(qbit1, qbit2));
}