| 120 | } |
| 121 | |
| 122 | void applyControlledCompMatr2(Qureg qureg, int control, int target1, int target2, CompMatr2 matrix) { |
| 123 | |
| 124 | int targs[] = {target1, target2}; |
| 125 | validateAndApplyAnyCtrlAnyTargUnitaryMatrix(qureg, &control, nullptr, 1, targs, 2, matrix, __func__); |
| 126 | } |
| 127 | |
| 128 | void applyMultiControlledCompMatr2(Qureg qureg, int* controls, int numControls, int target1, int target2, CompMatr2 matrix) { |
| 129 |
nothing calls this directly
no test coverage detected