Rename LSCG to LeastSquaresConjugateGradient

This commit is contained in:
Gael Guennebaud
2015-03-05 10:16:32 +01:00
parent 7550107028
commit 4c8b95d5c5
5 changed files with 14 additions and 14 deletions

View File

@@ -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) );