| 112 | } |
| 113 | |
| 114 | int util_getRankBitOfQubit(int ketQubit, Qureg qureg) { |
| 115 | |
| 116 | int rankInd = util_getPrefixInd(ketQubit, qureg); |
| 117 | int rankBit = getBit(qureg.rank, rankInd); |
| 118 | return rankBit; |
| 119 | } |
| 120 | |
| 121 | int util_getRankBitOfBraQubit(int ketQubit, Qureg qureg) { |
| 122 |
no test coverage detected