| 78 | } |
| 79 | |
| 80 | void applyControlledCompMatr1(Qureg qureg, int control, int target, CompMatr1 matrix) { |
| 81 | |
| 82 | validateAndApplyAnyCtrlAnyTargUnitaryMatrix(qureg, &control, nullptr, 1, &target, 1, matrix, __func__); |
| 83 | } |
| 84 | |
| 85 | void applyMultiControlledCompMatr1(Qureg qureg, int* controls, int numControls, int target, CompMatr1 matrix) { |
| 86 |
nothing calls this directly
no test coverage detected