| 324 | |
| 325 | |
| 326 | qmatrix getRandomPureDensityMatrix(int numQb) { |
| 327 | |
| 328 | qvector vec = getRandomStateVector(numQb); |
| 329 | qmatrix mat = getOuterProduct(vec, vec); |
| 330 | return mat; |
| 331 | } |
| 332 | |
| 333 | |
| 334 | void setToRandomState(qvector& state) { |
nothing calls this directly
no test coverage detected