Changeset 4367
- Timestamp:
- 06/30/10 15:58:39 (15 years ago)
- Location:
- issm/trunk/src/c
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/modules/Gradjx/Gradjx.cpp
r4218 r4367 26 26 numberofvertices=vertices->NumberOfVertices(); 27 27 28 /*Allocate gradient: */ 29 gradient=NewVec(numberofvertices); 30 28 31 /*Compute gradients: */ 29 32 for (i=0;i<elements->Size();i++){ -
issm/trunk/src/c/objects/Elements/Penta.cpp
r4358 r4367 996 996 997 997 /*Do nothing if we don't find it: */ 998 if(!input) return;998 if(!input) return; 999 999 1000 1000 /*Constrain input using cm_min and cm_max: */ … … 1045 1045 /*Make a copy of the original input: */ 1046 1046 original=(Input*)this->inputs->GetInput(original_enum); 1047 if(!original)ISSMERROR(" could not find old input with enum: %s",EnumAsString(original_enum)); 1047 1048 copy=(Input*)original->copy(); 1048 1049 … … 1061 1062 /*Make a copy of the original input: */ 1062 1063 input=(Input*)this->inputs->GetInput(enum_type); 1064 if(!input)ISSMERROR(" could not find old input with enum: %s",EnumAsString(enum_type)); 1063 1065 1064 1066 /*Scale: */ -
issm/trunk/src/c/objects/Elements/Tria.cpp
r4363 r4367 1371 1371 1372 1372 /*Do nothing if we don't find it: */ 1373 if(!input) return;1373 if(!input) return; 1374 1374 1375 1375 /*Constrain input using cm_min and cm_max: */ … … 1435 1435 /*Make a copy of the original input: */ 1436 1436 original=(Input*)this->inputs->GetInput(original_enum); 1437 if(!original)ISSMERROR(" could not find old input with enum: %s",EnumAsString(original_enum)); 1437 1438 copy=(Input*)original->copy(); 1438 1439 … … 1451 1452 /*Make a copy of the original input: */ 1452 1453 input=(Input*)this->inputs->GetInput(enum_type); 1454 if(!input)ISSMERROR(" could not find old input with enum: %s",EnumAsString(enum_type)); 1453 1455 1454 1456 /*Scale: */
Note:
See TracChangeset
for help on using the changeset viewer.