Changeset 14968
- Timestamp:
- 05/08/13 15:18:08 (12 years ago)
- Location:
- issm/trunk-jpl/src/c/modules
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/modules/ContourToMeshx/ContourToMeshx.cpp
r14965 r14968 25 25 double* in_nod; 26 26 double* in_elem; 27 in_nod = xNew<double>(nods);28 in_elem = xNew <double>(nel);27 in_nod = xNewZeroInit<double>(nods); 28 in_elem = xNewZeroInit<double>(nel); 29 29 30 30 /*initialize thread parameters: */ -
issm/trunk-jpl/src/c/modules/ContourToNodesx/ContourToNodesx.cpp
r14965 r14968 41 41 /*output: */ 42 42 IssmPDouble* flags=NULL; 43 flags=xNew <IssmPDouble>(nods);43 flags=xNewZeroInit<IssmPDouble>(nods); 44 44 45 45 /*Loop through all contours: */
Note:
See TracChangeset
for help on using the changeset viewer.