| 156 | // overloads with no targs (given full operator) |
| 157 | |
| 158 | void applyReferenceOperator(qvector& state, qmatrix matrix) { |
| 159 | DEMAND( state.size() == matrix.size() ); |
| 160 | |
| 161 | state = matrix * state; |
| 162 | } |
| 163 | void applyReferenceOperator(qmatrix& state, qmatrix matrix) { |
| 164 | DEMAND( state.size() == matrix.size() ); |
| 165 |
no test coverage detected