Changeset 14668
- Timestamp:
- 04/19/13 14:58:30 (12 years ago)
- Location:
- issm/trunk-jpl/src/c/classes/matrix
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/matrix/Matrix.h
r14656 r14668 265 265 /*}}}*/ 266 266 /*FUNCTION Duplicate{{{*/ 267 Matrix * Duplicate(void){268 269 Matrix * output=new Matrix();267 Matrix<doubletype>* Duplicate(void){ 268 269 Matrix<doubletype>* output=new Matrix<doubletype>(); 270 270 271 271 if(type==PetscMatType){ -
issm/trunk-jpl/src/c/classes/matrix/Vector.h
r14656 r14668 225 225 /*}}}*/ 226 226 /*FUNCTION Duplicate{{{*/ 227 Vector * Duplicate(void){_assert_(this);228 229 Vector * output=NULL;227 Vector<doubletype>* Duplicate(void){_assert_(this); 228 229 Vector<doubletype>* output=NULL; 230 230 231 output=new Vector ();231 output=new Vector<doubletype>(); 232 232 233 233 if(type==PetscVecType){
Note:
See TracChangeset
for help on using the changeset viewer.