psblas-3:

Changelog
 base/tools/psb_ccdbldext.F90
 base/tools/psb_dcdbldext.F90
 base/tools/psb_scdbldext.F90
 base/tools/psb_zcdbldext.F90

Fix bug in cdbldext: must call indxmap%reinit.
psblas-3.4-maint
Salvatore Filippone 10 years ago
parent 88bbc06e06
commit cb5db361e1

@ -1,5 +1,7 @@
Changelog. A lot less detailed than usual, at least for past
history.
2015/07/17: Fix cdbldext.
2015/07/10: Begin integration of multivectors.
2015/04/25: New optional args in V%set.
2015/04/14: New absval method for vectors.

@ -177,8 +177,9 @@ Subroutine psb_ccdbldext(a,desc_a,novr,desc_ov,info, extype)
! in a separate method.
call psb_cd_switch_ovl_indxmap(desc_ov,info)
end if
call psb_cd_set_ovl_bld(desc_ov,info)
if (info == 0) call desc_ov%indxmap%reinit(info)
if (info == 0) call psb_cd_set_ovl_bld(desc_ov,info)
if (info /= 0) goto 9999
If (debug_level >= psb_debug_outer_)then
Write(debug_unit,*) me,' ',trim(name),&

@ -177,8 +177,9 @@ Subroutine psb_dcdbldext(a,desc_a,novr,desc_ov,info, extype)
! in a separate method.
call psb_cd_switch_ovl_indxmap(desc_ov,info)
end if
call psb_cd_set_ovl_bld(desc_ov,info)
if (info == 0) call desc_ov%indxmap%reinit(info)
if (info == 0) call psb_cd_set_ovl_bld(desc_ov,info)
if (info /= 0) goto 9999
If (debug_level >= psb_debug_outer_)then
Write(debug_unit,*) me,' ',trim(name),&

@ -177,8 +177,9 @@ Subroutine psb_scdbldext(a,desc_a,novr,desc_ov,info, extype)
! in a separate method.
call psb_cd_switch_ovl_indxmap(desc_ov,info)
end if
call psb_cd_set_ovl_bld(desc_ov,info)
if (info == 0) call desc_ov%indxmap%reinit(info)
if (info == 0) call psb_cd_set_ovl_bld(desc_ov,info)
if (info /= 0) goto 9999
If (debug_level >= psb_debug_outer_)then
Write(debug_unit,*) me,' ',trim(name),&

@ -177,8 +177,9 @@ Subroutine psb_zcdbldext(a,desc_a,novr,desc_ov,info, extype)
! in a separate method.
call psb_cd_switch_ovl_indxmap(desc_ov,info)
end if
call psb_cd_set_ovl_bld(desc_ov,info)
if (info == 0) call desc_ov%indxmap%reinit(info)
if (info == 0) call psb_cd_set_ovl_bld(desc_ov,info)
if (info /= 0) goto 9999
If (debug_level >= psb_debug_outer_)then
Write(debug_unit,*) me,' ',trim(name),&

Loading…
Cancel
Save