mld2p4-2:

mlprec/impl/smoother/mld_c_jac_smoother_apply.f90
 mlprec/impl/smoother/mld_c_jac_smoother_apply_vect.f90
 mlprec/impl/smoother/mld_d_jac_smoother_apply.f90
 mlprec/impl/smoother/mld_d_jac_smoother_apply_vect.f90
 mlprec/impl/smoother/mld_s_jac_smoother_apply.f90
 mlprec/impl/smoother/mld_s_jac_smoother_apply_vect.f90
 mlprec/impl/smoother/mld_z_jac_smoother_apply.f90
 mlprec/impl/smoother/mld_z_jac_smoother_apply_vect.f90

Improve readability
stopcriterion
Salvatore Filippone 9 years ago
parent 0daf3db1f1
commit f951725fe3

@ -125,7 +125,7 @@ subroutine mld_c_jac_smoother_apply_vect(alpha,sm,x,beta,y,desc_data,trans,&
!!$ goto 9999 !!$ goto 9999
!!$ endif !!$ endif
!!$ !!$
!!$ else if (sweeps >= 1) then !!$ else if (sweeps >= 0) then
! !
! !
! Apply multiple sweeps of a block-Jacobi solver ! Apply multiple sweeps of a block-Jacobi solver

@ -125,7 +125,7 @@ subroutine mld_d_jac_smoother_apply_vect(alpha,sm,x,beta,y,desc_data,trans,&
!!$ goto 9999 !!$ goto 9999
!!$ endif !!$ endif
!!$ !!$
!!$ else if (sweeps >= 1) then !!$ else if (sweeps >= 0) then
! !
! !
! Apply multiple sweeps of a block-Jacobi solver ! Apply multiple sweeps of a block-Jacobi solver

@ -125,7 +125,7 @@ subroutine mld_s_jac_smoother_apply_vect(alpha,sm,x,beta,y,desc_data,trans,&
!!$ goto 9999 !!$ goto 9999
!!$ endif !!$ endif
!!$ !!$
!!$ else if (sweeps >= 1) then !!$ else if (sweeps >= 0) then
! !
! !
! Apply multiple sweeps of a block-Jacobi solver ! Apply multiple sweeps of a block-Jacobi solver

@ -125,7 +125,7 @@ subroutine mld_z_jac_smoother_apply_vect(alpha,sm,x,beta,y,desc_data,trans,&
!!$ goto 9999 !!$ goto 9999
!!$ endif !!$ endif
!!$ !!$
!!$ else if (sweeps >= 1) then !!$ else if (sweeps >= 0) then
! !
! !
! Apply multiple sweeps of a block-Jacobi solver ! Apply multiple sweeps of a block-Jacobi solver

Loading…
Cancel
Save