Changeset 11760
- Timestamp:
- 03/20/12 16:52:58 (13 years ago)
- Location:
- issm/trunk-jpl/src/c/modules/Solverx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/modules/Solverx/Solverx.cpp
r11737 r11760 43 43 /*Create vector out of petsc vector: */ 44 44 uf=new Vector(uf_vector); 45 46 /*Free ressources: */ 47 VecFree(&uf_vector); 45 48 #else 46 49 #ifdef _HAVE_GSL_ 47 SolverxGsl(&uf->vector,Kff->matrix,pf->vector); 50 SeqVec* uf_vector=NULL; 51 52 SolverxGsl(&uf_vector,Kff->matrix,pf->vector); 53 54 /*Create vector out of SeqVec vector: */ 55 uf=new Vector(uf_vector); 56 57 /*Free ressources: */ 58 delete uf_vector; 59 48 60 #else 49 _error_(" not supported yet!");61 _error_("GSL support not compiled in!"); 50 62 #endif 51 63 #endif -
issm/trunk-jpl/src/c/modules/Solverx/SolverxGsl.cpp
r11726 r11760 24 24 SeqVec* uf = NULL; 25 25 26 /*We are going to do an in place LU decomp, so we need to save the matrix with its original structure: */ 27 KffCopy=Kff->Duplicate(); 28 26 29 27 /*GSL Matrices and vectors: */ 30 28 gsl_matrix_view m; … … 33 31 gsl_permutation* p=NULL; 34 32 33 /*We are going to do an in place LU decomp, so we need to save the matrix with its original structure: */ 34 KffCopy=Kff->Duplicate(); 35 36 35 37 /*Intermediary: */ 36 38 int M,N,N2,s; … … 61 63 gsl_permutation_free (p); 62 64 gsl_vector_free (x); 65 63 66 delete KffCopy; 67 64 68 65 69 /*Assign output pointers:*/
Note:
See TracChangeset
for help on using the changeset viewer.