Changeset 21054
- Timestamp:
- 08/03/16 00:40:55 (9 years ago)
- Location:
- issm/trunk-jpl/src/m/solve
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/solve/solve.m
r21053 r21054 19 19 % - 'DamageEvolutionSolution' or 'da' 20 20 % - 'GiaSolution' or 'gi' 21 % - 'SealevelriseSolution' or 'sl' 21 22 % 22 23 % extra options: … … 59 60 elseif strcmpi(solutionstring,'gi') || strcmpi(solutionstring,'GiaSolution') || strcmpi(solutionstring,'Gia') 60 61 solutionstring = 'GiaSolution'; 62 elseif strcmpi(solutionstring,'sl') || strcmpi(solutionstring,'SealevelriseSolution') || strcmpi(solutionstring,'Sealevelrise') 63 solutionstring = 'SealevelriseSolution'; 61 64 else 62 65 error(['solutionstring ' solutionstring ' not supported!']); -
issm/trunk-jpl/src/m/solve/solve.py
r21053 r21054 32 32 - 'DamageEvolutionSolution' or 'da' 33 33 - 'GiaSolution' or 'gi' 34 34 - 'SealevelriseSolution' or 'sl' 35 35 36 extra options: 36 37 - loadonly : does not solve. only load results … … 67 68 solutionstring = 'DamageEvolutionSolution'; 68 69 elif solutionstring.lower() == 'gi' or solutionstring.lower() == 'giasolution' or solutionstring.lower() == 'gia': 70 solutionstring = 'GiaSolution'; 71 elif solutionstring.lower() == 'sl' or solutionstring.lower() == 'sealevelrisesolution' or solutionstring.lower() == 'sealevelrise': 69 72 solutionstring = 'GiaSolution'; 70 73 else:
Note:
See TracChangeset
for help on using the changeset viewer.