| 262 | } |
| 263 | |
| 264 | GeneralMatrix* BandMatrix::MakeSolver() |
| 265 | { |
| 266 | REPORT |
| 267 | GeneralMatrix* gm = new BandLUMatrix(*this); |
| 268 | MatrixErrorNoSpace(gm); gm->ReleaseAndDelete(); return gm; |
| 269 | } |
| 270 | |
| 271 | |
| 272 | void BandLUMatrix::ludcmp() |
no test coverage detected