Changeset 12496
- Timestamp:
- 06/21/12 10:19:03 (13 years ago)
- Location:
- issm/trunk-jpl/src/modules
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/modules/Chaco/Chaco.cpp
r12068 r12496 42 42 43 43 #ifndef _HAVE_CHACO_ //only works if dakota library has been compiled in. 44 _error_(" 44 _error_("Chaco not available! Cannot carry out Chaco partitioning!"); 45 45 #endif 46 46 -
issm/trunk-jpl/src/modules/ContourToMesh/ContourToMesh.cpp
r12127 r12496 47 47 if(nlhs!=1 && nlhs!=2){ 48 48 ContourToMeshUsage(); 49 _error_(" 49 _error_("usage. See above"); 50 50 } 51 51 #endif … … 53 53 if(nrhs!=NRHS){ 54 54 ContourToMeshUsage(); 55 _error_(" 55 _error_("usage. See above"); 56 56 } 57 57 … … 82 82 WriteData(PLHS1,in_elem); 83 83 } 84 else _error_(" 84 else _error_("wrong interpolation type"); 85 85 86 86 /*end module: */ -
issm/trunk-jpl/src/modules/EnumToString/EnumToString.cpp
r11933 r12496 12 12 /*checks on arguments on the matlab side: */ 13 13 if(nrhs!=NRHS){ 14 EnumToStringUsage(); _error_(" 14 EnumToStringUsage(); _error_("usage. See above"); 15 15 } 16 16 -
issm/trunk-jpl/src/modules/InterpFromGridToMesh/InterpFromGridToMesh.cpp
r11933 r12496 46 46 if((nlhs!=NLHS) || (nrhs!=6 && nrhs!=7)){ 47 47 InterpFromGridToMeshUsage(); 48 _error_(" 48 _error_("usage. See above"); 49 49 } 50 50 -
issm/trunk-jpl/src/modules/MeshProfileIntersection/MeshProfileIntersection.cpp
r12060 r12496 54 54 //index 55 55 FetchData(&double_index,&nel,&dummy,INDEX); 56 if(dummy!=3 && dummy!=6)_error_(" 56 if(dummy!=3 && dummy!=6)_error_("element triangulation should be of 3 or 6 column width!"); 57 57 index=(int*)xmalloc(nel*3*sizeof(int)); 58 58 for(i=0;i<nel;i++){ -
issm/trunk-jpl/src/modules/Scotch/Scotch.cpp
r6412 r12496 25 25 26 26 #ifndef _HAVE_SCOTCH_ //only works if scotch library has been compiled in. 27 _error_(" 27 _error_("Scotch not available! Cannot carry out Scotch partitioning!"); 28 28 #else 29 29 -
issm/trunk-jpl/src/modules/Shp2Kml/Shp2Kml.cpp
r12049 r12496 25 25 26 26 #ifndef _HAVE_SHAPELIB_ //only works if shapelib library has been compiled in. 27 _error_(" 27 _error_("Shapelib not available! Cannot carry out shp file translation!"); 28 28 #endif 29 29 -
issm/trunk-jpl/src/modules/StringToEnum/StringToEnum.cpp
r11933 r12496 12 12 /*checks on arguments on the matlab side: */ 13 13 if(nrhs!=NRHS){ 14 StringToEnumUsage(); _error_(" 14 StringToEnumUsage(); _error_("usage. See above"); 15 15 } 16 16
Note:
See TracChangeset
for help on using the changeset viewer.