Changeset 19829
- Timestamp:
- 11/27/15 11:11:13 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/consistency/ismodelselfconsistent.js
r19787 r19829 6 6 7 7 //initialize consistency as true 8 md.priv ate.isconsistent=true;8 md.priv.isconsistent=true; 9 9 10 10 //Get solution and associated analyses 11 solution=md.private.solution; 11 solution=md.priv.solution; 12 if(typeof solution != 'number')throw Error('ismodelselfconsistent: did not provide solution type in the private class!'); 13 12 14 var analyses = AnalysisConfiguration(solution); 13 15 … … 30 32 31 33 //error message if mode is not consistent 32 if (md.priv ate.isconsistent==false){34 if (md.priv.isconsistent==false){ 33 35 throw Error('Model not consistent, see messages above'); 34 36 }
Note:
See TracChangeset
for help on using the changeset viewer.