| 159 | extern "C" { |
| 160 | |
| 161 | void applyCompMatr(Qureg qureg, int* targets, int numTargets, CompMatr matrix) { |
| 162 | |
| 163 | validateAndApplyAnyCtrlAnyTargUnitaryMatrix(qureg, nullptr, nullptr, 0, targets, numTargets, matrix, __func__); |
| 164 | } |
| 165 | |
| 166 | void applyControlledCompMatr(Qureg qureg, int control, int* targets, int numTargets, CompMatr matrix) { |
| 167 |
no test coverage detected