Changeset 22758 for issm/trunk/src/c/classes/Params/IntVecParam.cpp
- Timestamp:
- 05/10/18 10:24:27 (7 years ago)
- Location:
- issm/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk
- Property svn:mergeinfo changed
-
issm/trunk/src
- Property svn:mergeinfo changed
-
issm/trunk/src/c
- Property svn:ignore
-
old new 20 20 kriging 21 21 issm_slr 22 issm_ocean 23 lnb_param.mod 24 lovenb_sub.mod 25 model.mod 26 util.mod
-
- Property svn:ignore
-
issm/trunk/src/c/classes/Params/IntVecParam.cpp
r21341 r22758 58 58 /*}}}*/ 59 59 void IntVecParam::DeepEcho(void){/*{{{*/ 60 61 int i; 62 63 _printf_("IntVecParam:\n"); 64 _printf_(" enum: " << this->enum_type << " (" << EnumToStringx(this->enum_type) << ")\n"); 65 _printf_(" vector size: " << this->M << "\n"); 66 for(i=0;i<this->M;i++){ 67 _printf_(i << " " << this->values[i] << "\n"); 68 } 60 _printf_(setw(22)<<" IntVecParam "<<setw(35)<<left<<EnumToStringx(this->enum_type)<<" ["); 61 for(int i=0;i<this->M;i++) _printf_(" "<<this->values[i]); 62 _printf_("]\n"); 69 63 } 70 64 /*}}}*/ 71 65 void IntVecParam::Echo(void){/*{{{*/ 72 66 73 _printf_("IntVecParam:\n"); 74 _printf_(" enum: " << this->enum_type << " (" << EnumToStringx(this->enum_type) << ")\n"); 75 _printf_(" vector size: " << this->M << "\n"); 76 67 this->DeepEcho(); 77 68 } 78 69 /*}}}*/
Note:
See TracChangeset
for help on using the changeset viewer.