| 398 | } |
| 399 | |
| 400 | void assert_bufferPackerGivenIncreasingQubits(int qubit1, int qubit2, int qubit3) { |
| 401 | |
| 402 | if (qubit1 >= qubit2 || qubit2 >= qubit3) |
| 403 | raiseInternalError("A function attempted to pack a buffer using non-increasing qubit indices."); |
| 404 | } |
| 405 | |
| 406 | |
| 407 |
no test coverage detected