We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7a2eb43 + 7bd3512 commit 85ebbe0Copy full SHA for 85ebbe0
1 file changed
Common/src/linear_algebra/CSysMatrix.cpp
@@ -634,7 +634,7 @@ template<class ScalarType>
634
void CSysMatrix<ScalarType>::BuildJacobiPreconditioner() {
635
636
/*--- Build Jacobi preconditioner (M = D), compute and store the inverses of the diagonal blocks. ---*/
637
- SU2_OMP_FOR_(schedule(dynamic,omp_heavy_size) )
+ SU2_OMP_FOR_DYN(omp_heavy_size)
638
for (unsigned long iPoint = 0; iPoint < nPointDomain; iPoint++)
639
InverseDiagonalBlock(iPoint, &(invM[iPoint*nVar*nVar]));
640
END_SU2_OMP_FOR
0 commit comments