try_success("CholeskyDecomposition...", "");
} catch (java.lang.RuntimeException e) {
errorCount = try_failure(errorCount, "CholeskyDecomposition...",
"incorrect Cholesky decomposition calculation");
}
X = Chol.solve(Matrix.identity(3, 3));
try {
check(A.times(X), Matrix.identity(3, 3));
try_success("CholeskyDecomposition solve()...", "");
} catch (java.lang.RuntimeException e) {
errorCount = try_failure(errorCount,