From ba72faee7d06ec6a7de4d7c2b4b9646e0675de32 Mon Sep 17 00:00:00 2001 From: Salvatore Filippone Date: Sat, 19 Jan 2019 14:56:01 +0000 Subject: [PATCH] In CSCNV we should call b%set_asb(), not b%asb() --- base/serial/impl/psb_c_mat_impl.F90 | 4 ++-- base/serial/impl/psb_d_mat_impl.F90 | 4 ++-- base/serial/impl/psb_s_mat_impl.F90 | 4 ++-- base/serial/impl/psb_z_mat_impl.F90 | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/base/serial/impl/psb_c_mat_impl.F90 b/base/serial/impl/psb_c_mat_impl.F90 index c48e796f..7d50808f 100644 --- a/base/serial/impl/psb_c_mat_impl.F90 +++ b/base/serial/impl/psb_c_mat_impl.F90 @@ -1201,7 +1201,7 @@ subroutine psb_c_cscnv(a,b,info,type,mold,upd,dupl) call move_alloc(altmp,b%a) call b%trim() - call b%asb() + call b%set_asb() call psb_erractionrestore(err_act) return @@ -1293,8 +1293,8 @@ subroutine psb_c_cscnv_ip(a,info,type,mold,dupl) end if call move_alloc(altmp,a%a) - call a%set_asb() call a%trim() + call a%set_asb() call psb_erractionrestore(err_act) return diff --git a/base/serial/impl/psb_d_mat_impl.F90 b/base/serial/impl/psb_d_mat_impl.F90 index 410fc593..21031517 100644 --- a/base/serial/impl/psb_d_mat_impl.F90 +++ b/base/serial/impl/psb_d_mat_impl.F90 @@ -1201,7 +1201,7 @@ subroutine psb_d_cscnv(a,b,info,type,mold,upd,dupl) call move_alloc(altmp,b%a) call b%trim() - call b%asb() + call b%set_asb() call psb_erractionrestore(err_act) return @@ -1293,8 +1293,8 @@ subroutine psb_d_cscnv_ip(a,info,type,mold,dupl) end if call move_alloc(altmp,a%a) - call a%set_asb() call a%trim() + call a%set_asb() call psb_erractionrestore(err_act) return diff --git a/base/serial/impl/psb_s_mat_impl.F90 b/base/serial/impl/psb_s_mat_impl.F90 index a011aabf..e14842c4 100644 --- a/base/serial/impl/psb_s_mat_impl.F90 +++ b/base/serial/impl/psb_s_mat_impl.F90 @@ -1201,7 +1201,7 @@ subroutine psb_s_cscnv(a,b,info,type,mold,upd,dupl) call move_alloc(altmp,b%a) call b%trim() - call b%asb() + call b%set_asb() call psb_erractionrestore(err_act) return @@ -1293,8 +1293,8 @@ subroutine psb_s_cscnv_ip(a,info,type,mold,dupl) end if call move_alloc(altmp,a%a) - call a%set_asb() call a%trim() + call a%set_asb() call psb_erractionrestore(err_act) return diff --git a/base/serial/impl/psb_z_mat_impl.F90 b/base/serial/impl/psb_z_mat_impl.F90 index d45ee93f..61615691 100644 --- a/base/serial/impl/psb_z_mat_impl.F90 +++ b/base/serial/impl/psb_z_mat_impl.F90 @@ -1201,7 +1201,7 @@ subroutine psb_z_cscnv(a,b,info,type,mold,upd,dupl) call move_alloc(altmp,b%a) call b%trim() - call b%asb() + call b%set_asb() call psb_erractionrestore(err_act) return @@ -1293,8 +1293,8 @@ subroutine psb_z_cscnv_ip(a,info,type,mold,dupl) end if call move_alloc(altmp,a%a) - call a%set_asb() call a%trim() + call a%set_asb() call psb_erractionrestore(err_act) return