Changeset 20732
- Timestamp:
- 06/14/16 09:39:43 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/shared/Matrix/MatrixUtils.cpp
r20731 r20732 57 57 /*Depending on the size of incoming matrices, we might need to use a dynamic allocation*/ 58 58 if(idima*idimc>600){ 59 IssmDouble *dtemp_dynamic=xNew<IssmDouble>(idima*idimc);60 dtemp = dtemp_dynamic;59 dtemp_dynamic = xNew<IssmDouble>(idima*idimc); 60 dtemp = dtemp_dynamic; 61 61 } 62 62 else{
Note:
See TracChangeset
for help on using the changeset viewer.