aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/spbench/test_sparseLU.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bench/spbench/test_sparseLU.cpp')
-rw-r--r--bench/spbench/test_sparseLU.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/spbench/test_sparseLU.cpp b/bench/spbench/test_sparseLU.cpp
index ecf254b3d..59f8252d0 100644
--- a/bench/spbench/test_sparseLU.cpp
+++ b/bench/spbench/test_sparseLU.cpp
@@ -70,7 +70,7 @@ int main(int argc, char **args)
cout << "Factorize Time " << timer.value() << std::endl;
timer.reset();
timer.start();
- solver._solve(b, x);
+ x = solver.solve(b);
timer.stop();
cout << "solve time " << timer.value() << std::endl;
/* Check the accuracy */