Changeset 7032 for issm/trunk
- Timestamp:
- 01/12/11 10:24:36 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/model/solvers/mumpsoptions.m
r6860 r7032 9 9 10 10 %default mumps options 11 PETSC_VERSION=petscversion(); 12 if PETSC_VERSION==2, 11 if petscversion==2, 13 12 options={{'mat_type','aijmumps'},{'ksp_type','preonly'},{'pc_type','lu'},{'mat_mumps_icntl_14',120},{'pc_factor_shift_positive_definite','true'}}; 14 13 end 15 if PETSC_VERSION==3,14 if petscversion==3, 16 15 options={{'mat_type','mpiaij'},{'ksp_type','preonly'},{'pc_type','lu'},{'pc_factor_mat_solver_package','mumps'},{'mat_mumps_icntl_14',120},{'pc_factor_shift_positive_definite','true'}}; 17 18 16 end 19 17
Note:
See TracChangeset
for help on using the changeset viewer.