aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/lscg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/lscg.cpp')
-rw-r--r--test/lscg.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lscg.cpp b/test/lscg.cpp
index 599ed5619..daa62a954 100644
--- a/test/lscg.cpp
+++ b/test/lscg.cpp
@@ -12,8 +12,8 @@
template<typename T> void test_lscg_T()
{
- LSCG<SparseMatrix<T> > lscg_colmajor_diag;
- LSCG<SparseMatrix<T>, IdentityPreconditioner> lscg_colmajor_I;
+ LeastSquaresConjugateGradient<SparseMatrix<T> > lscg_colmajor_diag;
+ LeastSquaresConjugateGradient<SparseMatrix<T>, IdentityPreconditioner> lscg_colmajor_I;
CALL_SUBTEST( check_sparse_square_solving(lscg_colmajor_diag) );
CALL_SUBTEST( check_sparse_square_solving(lscg_colmajor_I) );