| 164 | |
| 165 | |
| 166 | int getNumPaulisInLine(string line) { |
| 167 | |
| 168 | // simply count the non-whitespace chars in the paulis substring |
| 169 | string coeff, paulis; |
| 170 | separateStringIntoCoeffAndPaulis(line, coeff, paulis); |
| 171 | return count_if(paulis.begin(), paulis.end(), isNotWhiteSpace); |
| 172 | } |
| 173 | |
| 174 | |
| 175 |
no test coverage detected