| 3616 | report::INVALID_TARGET_QUBIT, report::DUPLICATE_TARGET_QUBITS); |
| 3617 | } |
| 3618 | void validate_twoTargets(Qureg qureg, int target1, int target2, const char* caller) { |
| 3619 | |
| 3620 | int targs[] = {target1, target2}; |
| 3621 | validate_targets(qureg, targs, 2, caller); |
| 3622 | } |
| 3623 | |
| 3624 | void validate_controls(Qureg qureg, int* ctrls, int numCtrls, const char* caller) { |
| 3625 |
no test coverage detected