Changeset 4137
- Timestamp:
- 06/22/10 18:39:29 (15 years ago)
- Location:
- issm/trunk/src/c
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk/src/c/modules/VerticesDofx/VerticesDofx.cpp ¶
r4063 r4137 25 25 DofVec* tpartition=NULL; 26 26 27 if(*ppartition) return; //do not create partition vector twice! we only have on set of vertices27 if(*ppartition) return; //do not create partition vector twice! we only have on set of vertices 28 28 29 29 /*Initialize dofvecs: */ -
TabularUnified issm/trunk/src/c/objects/FemModel.cpp ¶
r4122 r4137 32 32 this->analysis_counter=nummodels-1; //point to last analysis_type carried out. 33 33 this->results=new DataSet(); //not initialized by CreateDataSets 34 this->partition=NULL; 35 this->tpartition=NULL; 34 36 35 37 /*Dynamically allocate whatever is a list of length nummodels: */ … … 60 62 61 63 _printf_(" create degrees of freedom\n"); 62 VerticesDofx( 64 VerticesDofx(&partition,&tpartition,vertices,parameters); 63 65 NodesDofx(nodes,parameters); 64 66 … … 116 118 117 119 /*Delete dynamically allocated arrays: */ 118 delete m_Rmg;119 delete m_Gmn;120 delete m_nodesets;121 delete m_yg;122 delete m_ys;120 xfree((void**)&m_Rmg); 121 xfree((void**)&m_Gmn); 122 xfree((void**)&m_nodesets); 123 xfree((void**)&m_yg); 124 xfree((void**)&m_ys); 123 125 124 126 } -
TabularUnified issm/trunk/src/c/objects/Hook.cpp ¶
r3791 r4137 92 92 } 93 93 /*}}}*/ 94 /*FUNCTION Hook:: Hook(Hook* input) {{{1*/94 /*FUNCTION Hook::copy(Hook* input) {{{1*/ 95 95 void Hook::copy(Hook* input){ 96 96
Note:
See TracChangeset
for help on using the changeset viewer.