module mld_c_ilu_fact_mod use mld_c_base_solver_mod interface mld_ilu0_fact subroutine mld_cilu0_fact(ialg,a,l,u,d,info,blck,upd) import psb_cspmat_type, psb_spk_ integer, intent(in) :: ialg integer, intent(out) :: info type(psb_cspmat_type),intent(in) :: a type(psb_cspmat_type),intent(inout) :: l,u type(psb_cspmat_type),intent(in), optional, target :: blck character, intent(in), optional :: upd complex(psb_spk_), intent(inout) :: d(:) end subroutine mld_cilu0_fact end interface interface mld_iluk_fact subroutine mld_ciluk_fact(fill_in,ialg,a,l,u,d,info,blck) import psb_cspmat_type, psb_spk_ integer, intent(in) :: fill_in,ialg integer, intent(out) :: info type(psb_cspmat_type),intent(in) :: a type(psb_cspmat_type),intent(inout) :: l,u type(psb_cspmat_type),intent(in), optional, target :: blck complex(psb_spk_), intent(inout) :: d(:) end subroutine mld_ciluk_fact end interface interface mld_ilut_fact subroutine mld_cilut_fact(fill_in,thres,a,l,u,d,info,blck,iscale) import psb_cspmat_type, psb_spk_ integer, intent(in) :: fill_in real(psb_spk_), intent(in) :: thres integer, intent(out) :: info type(psb_cspmat_type),intent(in) :: a type(psb_cspmat_type),intent(inout) :: l,u complex(psb_spk_), intent(inout) :: d(:) type(psb_cspmat_type),intent(in), optional, target :: blck integer, intent(in), optional :: iscale end subroutine mld_cilut_fact end interface end module mld_c_ilu_fact_mod