|
|
@ -2,15 +2,15 @@ module psb_realloc_mod
|
|
|
|
implicit none
|
|
|
|
implicit none
|
|
|
|
|
|
|
|
|
|
|
|
Interface psb_realloc
|
|
|
|
Interface psb_realloc
|
|
|
|
module procedure psb_dreallocate1i
|
|
|
|
module procedure psb_dreallocate1i
|
|
|
|
module procedure psb_dreallocate2i
|
|
|
|
module procedure psb_dreallocate2i
|
|
|
|
module procedure psb_dreallocate2i1d
|
|
|
|
module procedure psb_dreallocate2i1d
|
|
|
|
module procedure psb_dreallocate1d
|
|
|
|
module procedure psb_dreallocate1d
|
|
|
|
module procedure psb_dreallocated2
|
|
|
|
module procedure psb_dreallocated2
|
|
|
|
end Interface
|
|
|
|
end Interface
|
|
|
|
|
|
|
|
|
|
|
|
Interface psb_realloc1it
|
|
|
|
Interface psb_realloc1it
|
|
|
|
module procedure psb_dreallocate1it
|
|
|
|
module procedure psb_dreallocate1it
|
|
|
|
end Interface
|
|
|
|
end Interface
|
|
|
|
|
|
|
|
|
|
|
|
Contains
|
|
|
|
Contains
|
|
|
@ -32,45 +32,45 @@ Contains
|
|
|
|
call psb_erractionsave(err_act)
|
|
|
|
call psb_erractionsave(err_act)
|
|
|
|
|
|
|
|
|
|
|
|
if(psb_get_errstatus().ne.0) return
|
|
|
|
if(psb_get_errstatus().ne.0) return
|
|
|
|
info=0
|
|
|
|
info=0
|
|
|
|
if (associated(rrax)) then
|
|
|
|
if (associated(rrax)) then
|
|
|
|
dim=size(rrax)
|
|
|
|
dim=size(rrax)
|
|
|
|
If (dim /= len) Then
|
|
|
|
If (dim /= len) Then
|
|
|
|
Allocate(tmp(len),stat=info)
|
|
|
|
Allocate(tmp(len),stat=info)
|
|
|
|
if (info /= 0) then
|
|
|
|
if (info /= 0) then
|
|
|
|
err=4000
|
|
|
|
err=4000
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
goto 9999
|
|
|
|
goto 9999
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
!!$ write(0,*) 'IA: copying ',len,dim
|
|
|
|
!!$ write(0,*) 'IA: copying ',len,dim
|
|
|
|
if (.true.) then
|
|
|
|
if (.true.) then
|
|
|
|
do i=1, min(len,dim)
|
|
|
|
do i=1, min(len,dim)
|
|
|
|
tmp(i)=rrax(i)
|
|
|
|
tmp(i)=rrax(i)
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
else
|
|
|
|
else
|
|
|
|
tmp(1:min(len,dim))=rrax(1:min(len,dim))
|
|
|
|
tmp(1:min(len,dim))=rrax(1:min(len,dim))
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
!!$ write(0,*) 'IA: copying done'
|
|
|
|
!!$ write(0,*) 'IA: copying done'
|
|
|
|
Deallocate(rrax,stat=info)
|
|
|
|
Deallocate(rrax,stat=info)
|
|
|
|
if (info /= 0) then
|
|
|
|
if (info /= 0) then
|
|
|
|
err=4000
|
|
|
|
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
rrax=>tmp
|
|
|
|
|
|
|
|
End If
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
!!$ write(0,*) 'IA: allocating ',len
|
|
|
|
|
|
|
|
allocate(rrax(len),stat=info)
|
|
|
|
|
|
|
|
if (info /= 0) then
|
|
|
|
|
|
|
|
err=4000
|
|
|
|
err=4000
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
goto 9999
|
|
|
|
goto 9999
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
|
|
|
|
rrax=>tmp
|
|
|
|
|
|
|
|
End If
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
!!$ write(0,*) 'IA: allocating ',len
|
|
|
|
|
|
|
|
allocate(rrax(len),stat=info)
|
|
|
|
|
|
|
|
if (info /= 0) then
|
|
|
|
|
|
|
|
err=4000
|
|
|
|
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
end if
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
if (present(pad)) then
|
|
|
|
if (present(pad)) then
|
|
|
|
!!$ write(0,*) 'IA: padding'
|
|
|
|
!!$ write(0,*) 'IA: padding'
|
|
|
|
rrax(dim+1:len) = pad
|
|
|
|
rrax(dim+1:len) = pad
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
@ -80,9 +80,9 @@ Contains
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
|
|
|
|
|
|
|
|
if (err_act.eq.act_ret) then
|
|
|
|
if (err_act.eq.act_ret) then
|
|
|
|
return
|
|
|
|
return
|
|
|
|
else
|
|
|
|
else
|
|
|
|
call psb_error()
|
|
|
|
call psb_error()
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
return
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
@ -111,44 +111,44 @@ Contains
|
|
|
|
call psb_erractionsave(err_act)
|
|
|
|
call psb_erractionsave(err_act)
|
|
|
|
|
|
|
|
|
|
|
|
if (associated(rrax)) then
|
|
|
|
if (associated(rrax)) then
|
|
|
|
dim=size(rrax)
|
|
|
|
dim=size(rrax)
|
|
|
|
|
|
|
|
|
|
|
|
If (dim /= len) Then
|
|
|
|
If (dim /= len) Then
|
|
|
|
Allocate(tmp(len),stat=info)
|
|
|
|
Allocate(tmp(len),stat=info)
|
|
|
|
if (info /= 0) then
|
|
|
|
if (info /= 0) then
|
|
|
|
err=4000
|
|
|
|
err=4000
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
goto 9999
|
|
|
|
goto 9999
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
m = min(dim,len)
|
|
|
|
m = min(dim,len)
|
|
|
|
!!$ write(0,*) 'DA: copying ',min(len,dim)
|
|
|
|
!!$ write(0,*) 'DA: copying ',min(len,dim)
|
|
|
|
if (.true.) then
|
|
|
|
if (.true.) then
|
|
|
|
do i=1,m
|
|
|
|
do i=1,m
|
|
|
|
tmp(i) = rrax(i)
|
|
|
|
tmp(i) = rrax(i)
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
else
|
|
|
|
else
|
|
|
|
tmp(1:m) = rrax(1:m)
|
|
|
|
tmp(1:m) = rrax(1:m)
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
!!$ write(0,*) 'DA: copying done ',m
|
|
|
|
!!$ write(0,*) 'DA: copying done ',m
|
|
|
|
Deallocate(rrax,stat=info)
|
|
|
|
Deallocate(rrax,stat=info)
|
|
|
|
if (info /= 0) then
|
|
|
|
if (info /= 0) then
|
|
|
|
err=4000
|
|
|
|
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
rrax=>tmp
|
|
|
|
|
|
|
|
End If
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
dim = 0
|
|
|
|
|
|
|
|
Allocate(rrax(len),stat=info)
|
|
|
|
|
|
|
|
if (info /= 0) then
|
|
|
|
|
|
|
|
err=4000
|
|
|
|
err=4000
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
goto 9999
|
|
|
|
goto 9999
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
|
|
|
|
rrax=>tmp
|
|
|
|
|
|
|
|
End If
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
dim = 0
|
|
|
|
|
|
|
|
Allocate(rrax(len),stat=info)
|
|
|
|
|
|
|
|
if (info /= 0) then
|
|
|
|
|
|
|
|
err=4000
|
|
|
|
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
end if
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
if (present(pad)) then
|
|
|
|
if (present(pad)) then
|
|
|
|
rrax(dim+1:len) = pad
|
|
|
|
rrax(dim+1:len) = pad
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
return
|
|
|
|
return
|
|
|
@ -157,9 +157,9 @@ Contains
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
|
|
|
|
|
|
|
|
if (err_act.eq.act_ret) then
|
|
|
|
if (err_act.eq.act_ret) then
|
|
|
|
return
|
|
|
|
return
|
|
|
|
else
|
|
|
|
else
|
|
|
|
call psb_error()
|
|
|
|
call psb_error()
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
return
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
@ -184,44 +184,44 @@ Contains
|
|
|
|
call psb_erractionsave(err_act)
|
|
|
|
call psb_erractionsave(err_act)
|
|
|
|
|
|
|
|
|
|
|
|
if (associated(rrax)) then
|
|
|
|
if (associated(rrax)) then
|
|
|
|
dim=size(rrax,1)
|
|
|
|
dim=size(rrax,1)
|
|
|
|
|
|
|
|
|
|
|
|
If (dim /= len1) Then
|
|
|
|
If (dim /= len1) Then
|
|
|
|
Allocate(tmp(len1,len2),stat=info)
|
|
|
|
Allocate(tmp(len1,len2),stat=info)
|
|
|
|
if (info /= 0) then
|
|
|
|
if (info /= 0) then
|
|
|
|
err=4000
|
|
|
|
err=4000
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
goto 9999
|
|
|
|
goto 9999
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
m = min(dim,len1)
|
|
|
|
m = min(dim,len1)
|
|
|
|
!!$ write(0,*) 'DA: copying ',min(len,dim)
|
|
|
|
!!$ write(0,*) 'DA: copying ',min(len,dim)
|
|
|
|
if (.true.) then
|
|
|
|
if (.true.) then
|
|
|
|
do i=1,m
|
|
|
|
do i=1,m
|
|
|
|
tmp(i,:) = rrax(i,:)
|
|
|
|
tmp(i,:) = rrax(i,:)
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
else
|
|
|
|
else
|
|
|
|
tmp(1:m,:) = rrax(1:m,:)
|
|
|
|
tmp(1:m,:) = rrax(1:m,:)
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
!!$ write(0,*) 'DA: copying done ',m
|
|
|
|
!!$ write(0,*) 'DA: copying done ',m
|
|
|
|
Deallocate(rrax,stat=info)
|
|
|
|
Deallocate(rrax,stat=info)
|
|
|
|
if (info /= 0) then
|
|
|
|
if (info /= 0) then
|
|
|
|
err=4000
|
|
|
|
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
rrax=>tmp
|
|
|
|
|
|
|
|
End If
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
dim = 0
|
|
|
|
|
|
|
|
Allocate(rrax(len1,len2),stat=info)
|
|
|
|
|
|
|
|
if (info /= 0) then
|
|
|
|
|
|
|
|
err=4000
|
|
|
|
err=4000
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
goto 9999
|
|
|
|
goto 9999
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
|
|
|
|
rrax=>tmp
|
|
|
|
|
|
|
|
End If
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
dim = 0
|
|
|
|
|
|
|
|
Allocate(rrax(len1,len2),stat=info)
|
|
|
|
|
|
|
|
if (info /= 0) then
|
|
|
|
|
|
|
|
err=4000
|
|
|
|
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
end if
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
if (present(pad)) then
|
|
|
|
if (present(pad)) then
|
|
|
|
rrax(dim+1:len1,:) = pad
|
|
|
|
rrax(dim+1:len1,:) = pad
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
return
|
|
|
|
return
|
|
|
@ -230,9 +230,9 @@ Contains
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
|
|
|
|
|
|
|
|
if (err_act.eq.act_ret) then
|
|
|
|
if (err_act.eq.act_ret) then
|
|
|
|
return
|
|
|
|
return
|
|
|
|
else
|
|
|
|
else
|
|
|
|
call psb_error()
|
|
|
|
call psb_error()
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
return
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
@ -254,18 +254,18 @@ Contains
|
|
|
|
call psb_erractionsave(err_act)
|
|
|
|
call psb_erractionsave(err_act)
|
|
|
|
|
|
|
|
|
|
|
|
if(psb_get_errstatus().ne.0) return
|
|
|
|
if(psb_get_errstatus().ne.0) return
|
|
|
|
info=0
|
|
|
|
info=0
|
|
|
|
call psb_dreallocate1i(len,rrax,info,pad=pad)
|
|
|
|
call psb_dreallocate1i(len,rrax,info,pad=pad)
|
|
|
|
if (info /= 0) then
|
|
|
|
if (info /= 0) then
|
|
|
|
err=4000
|
|
|
|
err=4000
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
goto 9999
|
|
|
|
goto 9999
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
call psb_dreallocate1i(len,y,info,pad=pad)
|
|
|
|
call psb_dreallocate1i(len,y,info,pad=pad)
|
|
|
|
if (info /= 0) then
|
|
|
|
if (info /= 0) then
|
|
|
|
err=4000
|
|
|
|
err=4000
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
goto 9999
|
|
|
|
goto 9999
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
return
|
|
|
|
return
|
|
|
@ -274,9 +274,9 @@ Contains
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
|
|
|
|
|
|
|
|
if (err_act.eq.act_ret) then
|
|
|
|
if (err_act.eq.act_ret) then
|
|
|
|
return
|
|
|
|
return
|
|
|
|
else
|
|
|
|
else
|
|
|
|
call psb_error()
|
|
|
|
call psb_error()
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
return
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
@ -302,21 +302,21 @@ Contains
|
|
|
|
info = 0
|
|
|
|
info = 0
|
|
|
|
call psb_dreallocate1i(len,rrax,info)
|
|
|
|
call psb_dreallocate1i(len,rrax,info)
|
|
|
|
if (info /= 0) then
|
|
|
|
if (info /= 0) then
|
|
|
|
err=4000
|
|
|
|
err=4000
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
goto 9999
|
|
|
|
goto 9999
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
call psb_dreallocate1i(len,y,info)
|
|
|
|
call psb_dreallocate1i(len,y,info)
|
|
|
|
if (info /= 0) then
|
|
|
|
if (info /= 0) then
|
|
|
|
err=4000
|
|
|
|
err=4000
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
goto 9999
|
|
|
|
goto 9999
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
call psb_dreallocate1d(len,z,info)
|
|
|
|
call psb_dreallocate1d(len,z,info)
|
|
|
|
if (info /= 0) then
|
|
|
|
if (info /= 0) then
|
|
|
|
err=4000
|
|
|
|
err=4000
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
goto 9999
|
|
|
|
goto 9999
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
return
|
|
|
|
return
|
|
|
@ -325,9 +325,9 @@ Contains
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
|
|
|
|
|
|
|
|
if (err_act.eq.act_ret) then
|
|
|
|
if (err_act.eq.act_ret) then
|
|
|
|
return
|
|
|
|
return
|
|
|
|
else
|
|
|
|
else
|
|
|
|
call psb_error()
|
|
|
|
call psb_error()
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
return
|
|
|
|
return
|
|
|
|
End Subroutine psb_dreallocate2i1d
|
|
|
|
End Subroutine psb_dreallocate2i1d
|
|
|
@ -349,38 +349,38 @@ Contains
|
|
|
|
call psb_erractionsave(err_act)
|
|
|
|
call psb_erractionsave(err_act)
|
|
|
|
|
|
|
|
|
|
|
|
if(psb_get_errstatus().ne.0) return
|
|
|
|
if(psb_get_errstatus().ne.0) return
|
|
|
|
info=0
|
|
|
|
info=0
|
|
|
|
if (associated(rrax)) then
|
|
|
|
if (associated(rrax)) then
|
|
|
|
dim=size(rrax)
|
|
|
|
dim=size(rrax)
|
|
|
|
If (dim /= len) Then
|
|
|
|
If (dim /= len) Then
|
|
|
|
Allocate(tmp(len),stat=info)
|
|
|
|
Allocate(tmp(len),stat=info)
|
|
|
|
if (info /= 0) then
|
|
|
|
if (info /= 0) then
|
|
|
|
err=4000
|
|
|
|
err=4000
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
goto 9999
|
|
|
|
goto 9999
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
!!$ write(0,*) 'IA: copying ',min(len,dim)
|
|
|
|
!!$ write(0,*) 'IA: copying ',min(len,dim)
|
|
|
|
tmp(1:min(len,dim))=rrax(1:min(len,dim))
|
|
|
|
tmp(1:min(len,dim))=rrax(1:min(len,dim))
|
|
|
|
!!$ write(0,*) 'IA: copying done'
|
|
|
|
!!$ write(0,*) 'IA: copying done'
|
|
|
|
Deallocate(rrax,stat=info)
|
|
|
|
Deallocate(rrax,stat=info)
|
|
|
|
if (info /= 0) then
|
|
|
|
if (info /= 0) then
|
|
|
|
err=4000
|
|
|
|
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
end if
|
|
|
|
|
|
|
|
rrax=>tmp
|
|
|
|
|
|
|
|
End If
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
allocate(rrax(len),stat=info)
|
|
|
|
|
|
|
|
if (info /= 0) then
|
|
|
|
|
|
|
|
err=4000
|
|
|
|
err=4000
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
goto 9999
|
|
|
|
goto 9999
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
|
|
|
|
rrax=>tmp
|
|
|
|
|
|
|
|
End If
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
allocate(rrax(len),stat=info)
|
|
|
|
|
|
|
|
if (info /= 0) then
|
|
|
|
|
|
|
|
err=4000
|
|
|
|
|
|
|
|
call psb_errpush(err,name)
|
|
|
|
|
|
|
|
goto 9999
|
|
|
|
|
|
|
|
end if
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
if (present(pad)) then
|
|
|
|
if (present(pad)) then
|
|
|
|
!!$ write(0,*) 'IA: padding'
|
|
|
|
!!$ write(0,*) 'IA: padding'
|
|
|
|
rrax(dim+1:len) = pad
|
|
|
|
rrax(dim+1:len) = pad
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
return
|
|
|
|
return
|
|
|
@ -389,9 +389,9 @@ Contains
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
call psb_erractionrestore(err_act)
|
|
|
|
|
|
|
|
|
|
|
|
if (err_act.eq.act_ret) then
|
|
|
|
if (err_act.eq.act_ret) then
|
|
|
|
return
|
|
|
|
return
|
|
|
|
else
|
|
|
|
else
|
|
|
|
call psb_error()
|
|
|
|
call psb_error()
|
|
|
|
end if
|
|
|
|
end if
|
|
|
|
return
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|