| 791 | } |
| 792 | |
| 793 | void applyPauliY(Qureg qureg, int target) { |
| 794 | validate_quregFields(qureg, __func__); |
| 795 | validate_target(qureg, target, __func__); |
| 796 | |
| 797 | // harmlessly re-validates |
| 798 | applyMultiStateControlledPauliY(qureg, nullptr, nullptr, 0, target); |
| 799 | } |
| 800 | |
| 801 | void applyPauliZ(Qureg qureg, int target) { |
| 802 | validate_quregFields(qureg, __func__); |
nothing calls this directly
no test coverage detected