| 126 | } |
| 127 | |
| 128 | void applyMultiControlledCompMatr2(Qureg qureg, int* controls, int numControls, int target1, int target2, CompMatr2 matrix) { |
| 129 | |
| 130 | int targs[] = {target1, target2}; |
| 131 | validateAndApplyAnyCtrlAnyTargUnitaryMatrix(qureg, controls, nullptr, numControls, targs, 2, matrix, __func__); |
| 132 | } |
| 133 | |
| 134 | void applyMultiStateControlledCompMatr2(Qureg qureg, int* controls, int* states, int numControls, int target1, int target2, CompMatr2 matrix) { |
| 135 |
nothing calls this directly
no test coverage detected