Fix stupid off-by-one bug.

psblas3-type-indexed
Salvatore Filippone 18 years ago
parent f6655e698d
commit f929803172

@ -172,7 +172,7 @@ subroutine psb_dovrlm(x,desc_a,info,jx,ik,work,update)
goto 9999 goto 9999
end if end if
i=0 i=1
! switch on update type ! switch on update type
select case (iupdate) select case (iupdate)
case(psb_square_root_) case(psb_square_root_)
@ -375,7 +375,7 @@ subroutine psb_dovrlv(x,desc_a,info,work,update)
goto 9999 goto 9999
end if end if
i=0 i=1
! switch on update type ! switch on update type
select case (iupdate) select case (iupdate)
case(psb_square_root_) case(psb_square_root_)

@ -172,7 +172,7 @@ subroutine psb_zovrlm(x,desc_a,info,jx,ik,work,update)
goto 9999 goto 9999
end if end if
i=0 i=1
! switch on update type ! switch on update type
select case (iupdate) select case (iupdate)
case(psb_square_root_) case(psb_square_root_)
@ -376,7 +376,7 @@ subroutine psb_zovrlv(x,desc_a,info,work,update)
goto 9999 goto 9999
end if end if
i=0 i=1
! switch on update type ! switch on update type
select case (iupdate) select case (iupdate)
case(psb_square_root_) case(psb_square_root_)

Loading…
Cancel
Save