aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/sparse_lu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bench/sparse_lu.cpp')
-rw-r--r--bench/sparse_lu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/sparse_lu.cpp b/bench/sparse_lu.cpp
index bb73d481d..5c7500182 100644
--- a/bench/sparse_lu.cpp
+++ b/bench/sparse_lu.cpp
@@ -98,7 +98,7 @@ int main(int argc, char *argv[])
BenchTimer timer;
timer.start();
- LU<DenseMatrix> lu(m1);
+ FullPivLU<DenseMatrix> lu(m1);
timer.stop();
std::cout << "Eigen/dense:\t" << timer.value() << endl;