Changeset 4352
- Timestamp:
- 06/30/10 13:20:25 (15 years ago)
- Location:
- issm/trunk/src/c/objects/Params
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Params/DoubleMatParam.cpp
r4248 r4352 163 163 164 164 /*Assign output pointers:*/ 165 *pM=M;166 *pN=N;165 if(pM) *pM=M; 166 if(pN) *pN=N; 167 167 *pdoublearray=output; 168 168 } -
issm/trunk/src/c/objects/Params/DoubleVecParam.cpp
r4248 r4352 151 151 int M; 152 152 153 154 153 M=this->M; 155 154 output=(double*)xmalloc(M*sizeof(double)); … … 157 156 158 157 /*Assign output pointers:*/ 159 *pM=M;158 if(pM) *pM=M; 160 159 *pdoublearray=output; 161 160 }
Note:
See TracChangeset
for help on using the changeset viewer.