source: issm/trunk-jpl/src/m/solvers/issmgslsolver.m

Last change on this file was 16191, checked in by Eric.Larour, 12 years ago

CHG: adding gsl and mumps issm solvers

File size: 448 bytes
RevLine 
[16191]1function issmoptions=issmgslsolver(varargin)
2%ISSMSOLVER -
3%
4% Usage:
5% options=issmsolver;
6
7%retrieve options provided in varargin
8options=pairoptions(varargin{:});
9issmoptions=struct();
10
11%default issmoptions options
12issmoptions.toolkit='issm';
13issmoptions.mat_type=getfieldvalue(options,'mat_type','dense');
14issmoptions.vec_type=getfieldvalue(options,'vec_type','seq');
15issmoptions.solver_type=getfieldvalue(options,'solver_type','gsl');
Note: See TracBrowser for help on using the repository browser.