Changeset 5986 for issm/trunk/src/c/objects/Elements/Tria.cpp
- Timestamp:
- 09/23/10 11:58:43 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/Elements/Tria.cpp
r5946 r5986 3473 3473 /*Initialize Element vector and return if necessary*/ 3474 3474 if(IsOnWater()) return NULL; 3475 ElementVector* pe= NewElementVector(nodes,NUMVERTICES,this->parameters);3475 ElementVector* pe=new ElementVector(nodes,NUMVERTICES,this->parameters); 3476 3476 3477 3477 /*Retrieve all inputs and parameters*/ … … 3517 3517 /*Initialize Element vector and return if necessary*/ 3518 3518 if(IsOnWater()) return NULL; 3519 ElementVector* pe= NewElementVector(nodes,NUMVERTICES,this->parameters);3519 ElementVector* pe=new ElementVector(nodes,NUMVERTICES,this->parameters); 3520 3520 3521 3521 /*Retrieve all inputs and parameters*/ … … 3561 3561 /*Initialize Element vector and return if necessary*/ 3562 3562 if(IsOnWater()) return NULL; 3563 ElementVector* pe= NewElementVector(nodes,NUMVERTICES,this->parameters);3563 ElementVector* pe=new ElementVector(nodes,NUMVERTICES,this->parameters); 3564 3564 3565 3565 /*Retrieve all inputs and parameters*/ … … 3606 3606 /*Initialize Element vector and return if necessary*/ 3607 3607 if(IsOnWater()) return NULL; 3608 ElementVector* pe= NewElementVector(nodes,NUMVERTICES,this->parameters);3608 ElementVector* pe=new ElementVector(nodes,NUMVERTICES,this->parameters); 3609 3609 3610 3610 /*Retrieve all inputs and parameters*/ … … 3667 3667 /*Initialize Element vector and return if necessary*/ 3668 3668 if(IsOnWater()) return NULL; 3669 ElementVector* pe= NewElementVector(nodes,NUMVERTICES,this->parameters,MacAyealApproximationEnum);3669 ElementVector* pe=new ElementVector(nodes,NUMVERTICES,this->parameters,MacAyealApproximationEnum); 3670 3670 3671 3671 /*Retrieve all inputs and parameters*/ … … 3732 3732 /*Initialize Element vector and return if necessary*/ 3733 3733 if(IsOnWater()) return NULL; 3734 ElementVector* pe= NewElementVector(nodes,NUMVERTICES,this->parameters);3734 ElementVector* pe=new ElementVector(nodes,NUMVERTICES,this->parameters); 3735 3735 3736 3736 /*Retrieve all inputs and parameters*/ … … 3786 3786 /*Initialize Element vector and return if necessary*/ 3787 3787 if(IsOnWater()) return NULL; 3788 ElementVector* pe= NewElementVector(nodes,NUMVERTICES,this->parameters);3788 ElementVector* pe=new ElementVector(nodes,NUMVERTICES,this->parameters); 3789 3789 3790 3790 /*Retrieve all inputs and parameters*/ … … 3967 3967 /*Initialize Element vector and return if necessary*/ 3968 3968 if(IsOnWater()) return NULL; 3969 ElementVector* pe= NewElementVector(nodes,NUMVERTICES,this->parameters,StokesApproximationEnum);3969 ElementVector* pe=new ElementVector(nodes,NUMVERTICES,this->parameters,StokesApproximationEnum); 3970 3970 3971 3971 /*Retrieve all inputs and parameters*/ … … 4137 4137 /*Initialize Element vector and return if necessary*/ 4138 4138 if(IsOnWater()) return NULL; 4139 ElementVector* pe= NewElementVector(nodes,NUMVERTICES,this->parameters);4139 ElementVector* pe=new ElementVector(nodes,NUMVERTICES,this->parameters); 4140 4140 4141 4141 /*Retrieve all inputs and parameters*/ … … 4204 4204 /*Initialize Element vector and return if necessary*/ 4205 4205 if(IsOnWater()) return NULL; 4206 ElementVector* pe= NewElementVector(nodes,NUMVERTICES,this->parameters);4206 ElementVector* pe=new ElementVector(nodes,NUMVERTICES,this->parameters); 4207 4207 4208 4208 /*Retrieve all inputs and parameters*/ … … 4250 4250 /*Initialize Element vector and return if necessary*/ 4251 4251 if(IsOnWater()) return NULL; 4252 ElementVector* pe= NewElementVector(nodes,NUMVERTICES,this->parameters);4252 ElementVector* pe=new ElementVector(nodes,NUMVERTICES,this->parameters); 4253 4253 4254 4254 /*Retrieve all inputs and parameters*/ … … 4297 4297 /*Initialize Element vector and return if necessary*/ 4298 4298 if(IsOnWater()) return NULL; 4299 ElementVector* pe= NewElementVector(nodes,NUMVERTICES,this->parameters);4299 ElementVector* pe=new ElementVector(nodes,NUMVERTICES,this->parameters); 4300 4300 4301 4301 /*Retrieve all inputs and parameters*/ … … 4352 4352 /*Initialize Element vector and return if necessary*/ 4353 4353 if(IsOnWater()) return NULL; 4354 ElementVector* pe= NewElementVector(nodes,NUMVERTICES,this->parameters);4354 ElementVector* pe=new ElementVector(nodes,NUMVERTICES,this->parameters); 4355 4355 4356 4356 /*Retrieve all inputs and parameters*/ … … 4410 4410 /*Initialize Element vector and return if necessary*/ 4411 4411 if(IsOnWater()) return NULL; 4412 ElementVector* pe= NewElementVector(nodes,NUMVERTICES,this->parameters);4412 ElementVector* pe=new ElementVector(nodes,NUMVERTICES,this->parameters); 4413 4413 4414 4414 /*Retrieve all inputs and parameters*/
Note:
See TracChangeset
for help on using the changeset viewer.