| 269 | |
| 270 | template <typename T> |
| 271 | void AssignB(T *B, size_t i, size_t j, size_t ld, size_t M) |
| 272 | { |
| 273 | B[i*ld + j] = arithsum(M) - arithsum(j+1) + (j+1)*(j+1); |
| 274 | } |
| 275 | |
| 276 | template <> |
| 277 | void AssignB(FloatComplex *B, size_t i, size_t j, size_t ld, size_t M) |
nothing calls this directly
no test coverage detected