cz method

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

Implementation

void cz(int qbit1, int qbit2) {
  gates.add(CZ(qbit1, qbit2));
}