Changeset 11760


Ignore:
Timestamp:
03/20/12 16:52:58 (13 years ago)
Author:
Eric.Larour
Message:

More robuts Solverx

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  
    4343                /*Create vector out of petsc vector: */
    4444                uf=new Vector(uf_vector);
     45
     46                /*Free ressources: */
     47                VecFree(&uf_vector);
    4548        #else
    4649                #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
    4860                #else
    49                         _error_("not supported yet!");
     61                        _error_("GSL support not compiled in!");
    5062                #endif
    5163        #endif
  • issm/trunk-jpl/src/c/modules/Solverx/SolverxGsl.cpp

    r11726 r11760  
    2424        SeqVec*        uf               = NULL;
    2525
    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       
    2927        /*GSL Matrices and vectors: */
    3028        gsl_matrix_view m;
     
    3331        gsl_permutation* p=NULL;
    3432       
     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
    3537        /*Intermediary: */
    3638        int M,N,N2,s;
     
    6163        gsl_permutation_free (p);
    6264        gsl_vector_free (x);
     65
    6366        delete KffCopy;
     67
    6468
    6569        /*Assign output pointers:*/
Note: See TracChangeset for help on using the changeset viewer.