| 799 | } |
| 800 | |
| 801 | void applyPauliZ(Qureg qureg, int target) { |
| 802 | validate_quregFields(qureg, __func__); |
| 803 | validate_target(qureg, target, __func__); |
| 804 | |
| 805 | // harmlessly re-validates |
| 806 | applyMultiStateControlledPauliZ(qureg, nullptr, nullptr, 0, target); |
| 807 | } |
| 808 | |
| 809 | void applyControlledPauliX(Qureg qureg, int control, int target) { |
| 810 | validate_quregFields(qureg, __func__); |
nothing calls this directly
no test coverage detected