@private
| 1079 | |
| 1080 | /// @private |
| 1081 | static inline void _setInlineDiagMatr(DiagMatr matr, int numQb, qcomp elems[1<<numQb]) { |
| 1082 | _validateParamsToSetInlineDiagMatr(matr, numQb); |
| 1083 | setDiagMatr(matr, elems); // 1D array decays into pointer, validation gauranteed to pass |
| 1084 | } |
| 1085 | |
| 1086 | /// @private |
| 1087 | static inline void _setInlineFullStateDiagMatr(FullStateDiagMatr matr, qindex startInd, qindex numElems, qcomp elems[numElems]) { |
nothing calls this directly
no test coverage detected