Minor README tweak. Changed DESCR printout to omit ordering if NATURAL.

stopcriterion
Salvatore Filippone 7 years ago
parent f493b7064e
commit 449e73bbb4

@ -54,12 +54,13 @@ TO COMPILE
2. Tweak Make.inc if you are not satisfied. 2. Tweak Make.inc if you are not satisfied.
3. make; 3. make;
4. Go into the test subdirectory and build the examples of your choice. 4. Go into the test subdirectory and build the examples of your choice.
5. (if desired): make install
NOTES NOTES
- The single precision version is supported only by MUMPS and SuperLU; - The single precision version is supported only by MUMPS and SuperLU;
thus, even if you specify at configure to use UMFPACK or SuperLU_Dist, thus, even if you specify at configure time to use UMFPACK or SuperLU_Dist,
the corresponding preconditioner options will be available only from the corresponding preconditioner options will be available only from
the double precision version. the double precision version.

@ -560,7 +560,8 @@ contains
write(iout,*) ' parallel algorithm: ',& write(iout,*) ' parallel algorithm: ',&
& par_aggr_alg_names(pm%par_aggr_alg) & par_aggr_alg_names(pm%par_aggr_alg)
if (pm%par_aggr_alg /= mld_ext_aggr_) then if (pm%par_aggr_alg /= mld_ext_aggr_) then
write(iout,*) ' with initial ordering: ',& if ( pm%aggr_ord /= mld_aggr_ord_nat_) &
& write(iout,*) ' with initial ordering: ',&
& ord_names(pm%aggr_ord) & ord_names(pm%aggr_ord)
write(iout,*) ' Aggregation prolongator: ', & write(iout,*) ' Aggregation prolongator: ', &
& aggr_prols(pm%aggr_prol) & aggr_prols(pm%aggr_prol)

Loading…
Cancel
Save