| 190 | } |
| 191 | |
| 192 | vector<int> util_getSorted(vector<int> qubits) { |
| 193 | |
| 194 | vector<int> copy = qubits; |
| 195 | std::sort(copy.begin(), copy.end()); |
| 196 | return copy; |
| 197 | } |
| 198 | |
| 199 | vector<int> util_getSorted(vector<int> ctrls, vector<int> targs) { |
| 200 |
no test coverage detected