Changeset 11936 for issm/trunk-jpl/src/c/objects/Numerics/Matrix.cpp
- Timestamp:
- 04/05/12 14:50:41 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/objects/Numerics/Matrix.cpp
r11861 r11936 68 68 int i; 69 69 70 70 71 int* idxm=(int*)xmalloc(M*sizeof(int)); 71 72 int* idxn=(int*)xmalloc(N*sizeof(int)); … … 275 276 } 276 277 /*}}}*/ 278 /*FUNCTION Matrix::Convert{{{1*/ 279 void Matrix::Convert(MatrixType type){ 280 281 #ifdef _HAVE_PETSC_ 282 MatConvert(this->matrix,ISSMToPetscMatrixType(type),MAT_REUSE_MATRIX,&this->matrix); 283 #else 284 this->matrix->Convert(type); 285 #endif 286 } 287 /*}}}*/
Note:
See TracChangeset
for help on using the changeset viewer.