aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/lscg.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-03-05 10:16:32 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-03-05 10:16:32 +0100
commit4c8b95d5c5295d8d3294ee0e9457e240b019a9f0 (patch)
treee94773c65b76a9548fc141a053801279bbd13f3d /test/lscg.cpp
parent755010702856250c5a63c9bcde305ebe1f5e61fa (diff)
Rename LSCG to LeastSquaresConjugateGradient
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) );