| 296 | extern "C" { |
| 297 | |
| 298 | void applyDiagMatr(Qureg qureg, int* targets, int numTargets, DiagMatr matrix) { |
| 299 | |
| 300 | validateAndApplyAnyCtrlAnyTargUnitaryMatrix(qureg, nullptr, nullptr, 0, targets, numTargets, matrix, __func__); |
| 301 | } |
| 302 | |
| 303 | void applyControlledDiagMatr(Qureg qureg, int control, int* targets, int numTargets, DiagMatr matrix) { |
| 304 |
no test coverage detected