| 1145 | _applyGateMatrixN(__VA_ARGS__) |
| 1146 | |
| 1147 | static inline void _applyMultiControlledGateMatrixN(Qureg qureg, int* ctrls, int numCtrls, int* targs, int numTargs, CompMatr u) { |
| 1148 | qreal eps = getValidationEpsilon(); |
| 1149 | setValidationEpsilon(0); |
| 1150 | applyMultiControlledCompMatr(qureg, ctrls, numCtrls, targs, numTargs, u); |
| 1151 | setValidationEpsilon(eps); |
| 1152 | } |
| 1153 | |
| 1154 | #define applyMultiControlledGateMatrixN(...) \ |
| 1155 | _WARN_GENERAL_MSG( \ |
nothing calls this directly
no test coverage detected