Changeset 28157
- Timestamp:
- 03/15/24 11:21:08 (13 months ago)
- Location:
- issm/trunk-jpl/src/c/classes/Elements
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/Elements/Penta.cpp
r28155 r28157 1438 1438 1439 1439 bool floating=true; 1440 int point , i;1440 int point; 1441 1441 const IssmPDouble epsilon= 1.e-15; 1442 1442 IssmDouble gl[NUMVERTICES]; … … 1447 1447 1448 1448 /*Determine where to apply sub-element melt using intrusion distance*/ 1449 for (i; i<NUMVERTICES; i++){1449 for(int i=0; i<NUMVERTICES; i++){ 1450 1450 gl[i] -= intrusion_distance; 1451 1451 } -
issm/trunk-jpl/src/c/classes/Elements/Tria.cpp
r28155 r28157 2057 2057 2058 2058 bool floating=true; 2059 int point , i;2059 int point; 2060 2060 const IssmPDouble epsilon= 1.e-15; 2061 2061 IssmDouble gl[NUMVERTICES]; … … 2066 2066 2067 2067 /*Determine where to apply sub-element melt using intrusion distance*/ 2068 for (i; i<NUMVERTICES; i++){2068 for(int i=0; i<NUMVERTICES; i++){ 2069 2069 gl[i] -= intrusion_distance; 2070 2070 }
Note:
See TracChangeset
for help on using the changeset viewer.