diff --git a/docs/html/index.html b/docs/html/index.html index af923e1e..761ca5d7 100644 --- a/docs/html/index.html +++ b/docs/html/index.html @@ -128,7 +128,7 @@ Mar. 31, 2016
mld_ml_prec_bld
.
+ the routine mld_smoothers_bld
.
mld_precaply
. When using the PSBLAS Krylov solvers,
diff --git a/docs/html/node15.html b/docs/html/node15.html
index f159067a..050a0285 100644
--- a/docs/html/node15.html
+++ b/docs/html/node15.html
@@ -129,7 +129,7 @@ Setup and application of the default multi-level Schwarz preconditioner.
!
! build the preconditioner
call mld_hierarchy_bld(A,desc_A,P,info)
- call mld_ml_prec_bld(A,desc_A,P,info)
+ call mld_smoothers_bld(A,desc_A,P,info)
!
! set the solver parameters and the initial guess
@@ -219,13 +219,13 @@ Setup of a hybrid three-level Schwarz preconditioner.
! a coarsest matrix replicated on the processors, and the
! LU factorization from UMFPACK as coarse-level solver
call mld_precinit(P,'ML',info)
- call mld_hierarchy_bld(A,desc_A,P,info)
-
call_mld_precset(P,'SMOOTHER_TYPE','BJAC',info)
call_mld_precset(P,'SMOOTHER_POS,'POST'w,info)
call mld_precset(P,'COARSE_MAT','REPL',info)
call mld_precset(P,'COARSE_SOLVE','UMF',info)
- call mld_ml_prec_bld(A,desc_A,P,info)
+ call mld_hierarchy_bld(A,desc_A,P,info)
+
+ call mld_smoothers_bld(A,desc_A,P,info)
... ...
@@ -256,12 +256,11 @@ Setup of a hybrid three-level Schwarz preconditioner.
! multifrontal solver in MUMPS as coarse-level solver
call mld_precinit(P,'ML',info,nlev=3)
- call mld_hierarchy_bld(A,desc_A,P,info)
-
call mld_precset(P,mld_smoother_type_,'BJAC',info)
call mld_precset(P,mld_coarse_mat_,'REPL',info)
call mld_precset(P,mld_coarse_solve_,'MUMPS',info)
- call mld_ml_prec_bld(A,desc_A,P,info)
+ call mld_hierarchy_bld(A,desc_A,P,info)
+ call mld_smoothers_bld(A,desc_A,P,info)
... ...
@@ -291,11 +290,11 @@ Setup of an additive three-level Schwarz preconditioner.
! post-smoother, and 5 block-Jacobi sweeps (with UMFPACK LU
! on the blocks) as distributed coarsest-level solver
call mld_precinit(P,'ML',info,nlev=3)
- call mld_ml_prec_bld(A,desc_A,P,info)
call mld_precset(P,'ML_TYPE','ADD',info)
call_mld_precset(P,'SMOOTHER_POS','TWOSIDE',info)
call mld_precset(P,'COARSE_SWEEPS',5,info)
- call mld_ml_prec_bld(A,desc_A,P,info)
+ call mld_hierarchy_bld(A,desc_A,P,info)
+ call mld_smoothers_bld(A,desc_A,P,info)
... ...
diff --git a/docs/html/node16.html b/docs/html/node16.html
index c2fd0da9..b21ea8b1 100644
--- a/docs/html/node16.html
+++ b/docs/html/node16.html
@@ -122,7 +122,7 @@ A description of each routine is given in the remainder of this section.
mld_precset
For multilevel preconditioner this routine is supported for backward
compatibility, but we recommend to use the routines of
-Sec. 6.4 and 6.5.
+Sec. 6.4 and 6.5.
Arguments
diff --git a/docs/html/node2.html b/docs/html/node2.html
index 43a45436..ac2f2262 100644
--- a/docs/html/node2.html
+++ b/docs/html/node2.html
@@ -100,7 +100,7 @@ Contents
mld_ml_prec_bld(a,desc_a,p,info)
+mld_smoothers_bld(a,desc_a,p,info)
-The translation was initiated by Salvatore Filippone on 2016-06-09
+The translation was initiated by Salvatore Filippone on 2016-10-04