@@ -278,7 +278,6 @@ void BCGSTABpre_parallel(const CSysVector<ScalarType>& a, CSysVector<ScalarType>
278278 }
279279}
280280
281-
282281template <class ScalarType >
283282void CSysSolve<ScalarType>::WriteHeader(const string& solver, ScalarType restol, ScalarType resinit) const {
284283 cout << " \n # " << solver << " residual history\n " ;
@@ -531,7 +530,7 @@ unsigned long CSysSolve<ScalarType>::FGMRES_LinSolver(const CSysVector<ScalarTyp
531530
532531 if (masterRank) {
533532 SU2_OMP_MASTER
534- cout << " CSysSolve::FGMRES(): system solved by initial guess." << endl;
533+ cout << " CSysSolve::FGMRES(): system solved by initial guess." << endl;
535534 END_SU2_OMP_MASTER
536535 }
537536 residual = beta;
@@ -566,10 +565,9 @@ unsigned long CSysSolve<ScalarType>::FGMRES_LinSolver(const CSysVector<ScalarTyp
566565 if (beta < tol * norm0) break ;
567566
568567 if (flexible) {
569-
570568 if (useNestedBiCGSTAB) {
571569 /* --- Nested mod: W[i] by inner BCGSTAB ---*/
572- Z[i] = ScalarType (0.0 );
570+ Z[i] = ScalarType (0.0 );
573571 BCGSTABpre_parallel (W[i], Z[i], mat_vec, precond, config);
574572
575573 /* --- Add to Krylov subspace ---*/
@@ -856,7 +854,6 @@ unsigned long CSysSolve<ScalarType>::BCGSTAB_LinSolver(const CSysVector<ScalarTy
856854 return i;
857855}
858856
859-
860857template <class ScalarType >
861858unsigned long CSysSolve<ScalarType>::Smoother_LinSolver(const CSysVector<ScalarType>& b, CSysVector<ScalarType>& x,
862859 const CMatrixVectorProduct<ScalarType>& mat_vec,
0 commit comments