Ignore:
Timestamp:
02/17/12 12:01:12 (13 years ago)
Author:
Eric.Larour
Message:

Fixed issues with the MUMPS solver. Up to now, we never checked that the MUMPS
solver had been compiled. Now added this check in Solverx.cpp.
Also worked on the default solvers if MUMPS is not available -> solver.m and model.m and ismumps.m

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/classes/model/model.m

    r11139 r11466  
    404404                         md.settings         = settings();
    405405                         md.solver           = solver();
    406                          md.solver           = addoptions(md.solver,DiagnosticVertAnalysisEnum,mumpsoptions);
     406                         if ismumps,
     407                                 md.solver           = addoptions(md.solver,DiagnosticVertAnalysisEnum,mumpsoptions);
     408                         else
     409                                 md.solver           = addoptions(md.solver,DiagnosticVertAnalysisEnum,iluasmoptions);
     410                         end
    407411                         md.cluster          = none();
    408412                         md.balancethickness = balancethickness();
Note: See TracChangeset for help on using the changeset viewer.