}
public void testLowerBandCholesky() {
int n = L.numRows();
BandCholesky c = new BandCholesky(n, kl, false);
c.factor(L.copy());
c.solve(I);
Matrix J = I.mult(L, new DenseMatrix(n, n));
for (int i = 0; i < n; ++i)
for (int j = 0; j < n; ++j)
if (i != j)