Skip to content
Snippets Groups Projects
Commit e07d69c0 authored by Emilie Marchandise's avatar Emilie Marchandise
Browse files

fixed lsysb

parent ef9a31ee
No related branches found
No related tags found
No related merge requests found
...@@ -1081,9 +1081,9 @@ void GFaceCompound::parametrize(iterationStep step, typeOfMapping tom) const ...@@ -1081,9 +1081,9 @@ void GFaceCompound::parametrize(iterationStep step, typeOfMapping tom) const
#if defined(HAVE_PETSC) && !defined(HAVE_TAUCS) #if defined(HAVE_PETSC) && !defined(HAVE_TAUCS)
lsys = new linearSystemPETSc<double>; lsys = new linearSystemPETSc<double>;
#elif defined(HAVE_GMM) && !defined(HAVE_TAUCS) #elif defined(HAVE_GMM) && !defined(HAVE_TAUCS)
linearSystemGmm<double> *_lsysb = new linearSystemGmm<double>; linearSystemGmm<double> *lsysb = new linearSystemGmm<double>;
lsysb->setGmres(1); lsysb->setGmres(1);
lsys = _lsysb; lsys = lsysb;
#elif defined(HAVE_TAUCS) #elif defined(HAVE_TAUCS)
lsys = new linearSystemCSRTaucs<double>; lsys = new linearSystemCSRTaucs<double>;
#else #else
...@@ -1335,7 +1335,7 @@ bool GFaceCompound::parametrize_conformal(int iter, MVertex *v1, MVertex *v2) co ...@@ -1335,7 +1335,7 @@ bool GFaceCompound::parametrize_conformal(int iter, MVertex *v1, MVertex *v2) co
#elif defined(HAVE_GMM) && !defined(HAVE_TAUCS) #elif defined(HAVE_GMM) && !defined(HAVE_TAUCS)
linearSystemGmm<double> *lsysb = new linearSystemGmm<double>; linearSystemGmm<double> *lsysb = new linearSystemGmm<double>;
lsysb->setGmres(1); lsysb->setGmres(1);
lsys = _lsysb; lsys = lsysb;
#elif defined(HAVE_TAUCS) #elif defined(HAVE_TAUCS)
lsys = new linearSystemCSRTaucs<double>; lsys = new linearSystemCSRTaucs<double>;
#else #else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment