cy method

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

Implementation

void cy(int qbit1, int qbit2) {
  gates.add(CY(qbit1, qbit2));
}