Changeset 11941
- Timestamp:
- 04/05/12 14:52:58 (13 years ago)
- Location:
- issm/trunk-jpl/src/c/toolkits
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/toolkits/issm/SeqMat.cpp
r11861 r11941 251 251 } 252 252 /*}}}*/ 253 /*FUNCTION SeqMat::Convert{{{1*/ 254 void SeqMat::Convert(MatrixType type){ 255 256 /*do nothing*/ 257 258 } 259 /*}}}*/ -
issm/trunk-jpl/src/c/toolkits/issm/SeqMat.h
r11861 r11941 51 51 double* ToSerial(void); 52 52 void SetValues(int m,int* idxm,int n,int* idxn,double* values,InsMode mode); 53 void Convert(MatrixType type); 53 54 /*}}}*/ 54 55 -
issm/trunk-jpl/src/c/toolkits/petsc/patches/petscpatches.h
r11861 r11941 49 49 InsertMode ISSMToPetscInsertMode(InsMode mode); 50 50 NormType ISSMToPetscNormMode(NormMode mode); 51 MatType ISSMToPetscMatrixType(MatrixType type); 51 52 52 53 #endif -
issm/trunk-jpl/src/c/toolkits/toolkitsenums.h
r11695 r11941 14 14 typedef enum {INS_VAL, ADD_VAL} InsMode; 15 15 typedef enum {NORM_INF,NORM_TWO} NormMode; 16 typedef enum {DENSE_SEQUENTIAL,SPARSE_SEQUENTIAL} MatrixType; 16 17 17 18 #endif
Note:
See TracChangeset
for help on using the changeset viewer.