Changeset 13255
- Timestamp:
- 09/04/12 17:49:35 (13 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/bamg/Geometry.cpp
r13036 r13255 183 183 if(verbose>5) _printLine_(" processing hVertices"); 184 184 for (i=0;i< nbv;i++){ 185 if (!xIsNan<Issm Double>(bamgopts->hVertices[i])){185 if (!xIsNan<IssmPDouble>(bamgopts->hVertices[i])){ 186 186 vertices[i].m=Metric((double)bamgopts->hVertices[i]); 187 187 } -
issm/trunk-jpl/src/c/modules/Bamgx/Bamgx.cpp
r12832 r13255 119 119 if (verbosity>1) _printLine_(" Merging Metric with hVertices..."); 120 120 for (i=0;i<BTh.nbv;i++){ 121 if (!xIsNan<Issm Double>(bamgopts->hVertices[i])){121 if (!xIsNan<IssmPDouble>(bamgopts->hVertices[i])){ 122 122 BTh[i].m=Metric((float)bamgopts->hVertices[i]); 123 123 } … … 129 129 if (verbosity>1) _printLine_(" Merging Metric with hminVertices..."); 130 130 for (i=0;i<BTh.nbv;i++){ 131 if (!xIsNan<Issm Double>(bamgopts->hminVertices[i])){131 if (!xIsNan<IssmPDouble>(bamgopts->hminVertices[i])){ 132 132 Metric M=BTh.vertices[i].m; 133 133 EigenMetric Vp(M/coef); … … 142 142 if (verbosity>1) _printLine_(" Merging Metric with hmaxVertices..."); 143 143 for (i=0;i<BTh.nbv;i++){ 144 if (!xIsNan<Issm Double>(bamgopts->hmaxVertices[i])){144 if (!xIsNan<IssmPDouble>(bamgopts->hmaxVertices[i])){ 145 145 Metric M=BTh.vertices[i].m; 146 146 EigenMetric Vp(M/coef);
Note:
See TracChangeset
for help on using the changeset viewer.