Changeset 464
- Timestamp:
- 05/18/09 09:33:19 (16 years ago)
- Location:
- issm/trunk/src/c
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/io/SerialFetchData.cpp
r281 r464 27 27 int outdataset_size; 28 28 29 double* outmatrix ;30 Mat outpetscmatrix ;29 double* outmatrix=NULL; 30 Mat outpetscmatrix=NULL; 31 31 double* outmatrix_workspace=NULL;; 32 32 int outmatrix_rows,outmatrix_cols; 33 33 int petsc; 34 34 35 double* outvector ;36 Vec outpetscvector ;35 double* outvector=NULL; 36 Vec outpetscvector=NULL; 37 37 double* outvector_workspace=NULL; 38 38 int outvector_rows; -
issm/trunk/src/c/io/SerialWriteData.cpp
r1 r464 32 32 33 33 /*Matrix: */ 34 Mat matrix ;34 Mat matrix=NULL; 35 35 MatType type; 36 36 37 37 /*Vector: */ 38 Vec vector ;38 Vec vector=NULL; 39 39 40 40 /*Scalar: */ -
issm/trunk/src/c/parallel/CreateFemModel.cpp
r448 r464 13 13 14 14 /*Model output: */ 15 DataSet* elements ;16 DataSet* nodes ;17 DataSet* constraints ;18 DataSet* loads ;19 DataSet* materials ;20 DataSet* parameters ;21 Vec partition ;22 Vec tpartition ;23 Vec yg ;24 Mat Rmg ;25 Mat Gmn ;26 NodeSets* nodesets ;27 Vec ys ;28 Vec ys0 ;15 DataSet* elements=NULL; 16 DataSet* nodes=NULL; 17 DataSet* constraints=NULL; 18 DataSet* loads=NULL; 19 DataSet* materials=NULL; 20 DataSet* parameters=NULL; 21 Vec partition=NULL; 22 Vec tpartition=NULL; 23 Vec yg=NULL; 24 Mat Rmg=NULL; 25 Mat Gmn=NULL; 26 NodeSets* nodesets=NULL; 27 Vec ys=NULL; 28 Vec ys0=NULL; 29 29 30 30 /*intermediary: */ … … 92 92 femmodel->ys=ys; 93 93 femmodel->ys0=ys0; 94 95 96 94 } -
issm/trunk/src/c/parallel/diagnostic_core_nonlinear.cpp
r434 r464 33 33 int numberofnodes; 34 34 35 Vec dug ;35 Vec dug=NULL; 36 36 double ndu,nduinf,nu; 37 37 -
issm/trunk/src/c/toolkits/petsc/patches/MatMultPatch.cpp
r1 r464 23 23 24 24 int m,n; 25 Vec X_rel ;25 Vec X_rel=NULL; 26 26 27 27 if (MatMultCompatible(A,X)){
Note:
See TracChangeset
for help on using the changeset viewer.