aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/sparse_cholesky.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bench/sparse_cholesky.cpp')
-rw-r--r--bench/sparse_cholesky.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/bench/sparse_cholesky.cpp b/bench/sparse_cholesky.cpp
index 0a17848a0..5e07fac9b 100644
--- a/bench/sparse_cholesky.cpp
+++ b/bench/sparse_cholesky.cpp
@@ -70,7 +70,7 @@ void doEigen(const char* name, const EigenSparseSelfAdjointMatrix& sm1, int flag
std::cout << ":\t" << timer.value() << endl;
std::cout << " nnz: " << sm1.nonZeros() << " => " << chol.matrixL().nonZeros() << "\n";
- std::cout << "sparse\n" << chol.matrixL() << "%\n";
+// std::cout << "sparse\n" << chol.matrixL() << "%\n";
}
int main(int argc, char *argv[])
@@ -118,7 +118,7 @@ int main(int argc, char *argv[])
if (!ei_isMuchSmallerThan(ei_abs(chol.matrixL()(i,j)), 0.1))
count++;
std::cout << "dense: " << "nnz = " << count << "\n";
- std::cout << "dense:\n" << m1 << "\n\n" << chol.matrixL() << endl;
+// std::cout << "dense:\n" << m1 << "\n\n" << chol.matrixL() << endl;
}
#endif