Changeset 23604


Ignore:
Timestamp:
01/06/19 07:21:59 (6 years ago)
Author:
Mathieu Morlighem
Message:

BUG: fixed AD

Location:
issm/trunk-jpl/src/c/toolkits
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/toolkits/issm/IssmAbsVec.h

    r23602 r23604  
    3737                virtual void GetSize(int* pM)=0;
    3838                virtual void GetLocalSize(int* pM)=0;
    39                 virtual void GetLocalVector(double** pvector,int** pindices)=0;
     39                virtual void GetLocalVector(doubletype** pvector,int** pindices)=0;
    4040                virtual IssmAbsVec<doubletype>* Duplicate(void)=0;
    4141                virtual void Set(doubletype value)=0;
  • issm/trunk-jpl/src/c/toolkits/issm/IssmSeqVec.h

    r23602 r23604  
    143143                        *pM=this->M;
    144144                }/*}}}*/
    145                 void GetLocalVector(double** pvector,int** pindices){/*{{{*/
     145                void GetLocalVector(doubletype** pvector,int** pindices){/*{{{*/
    146146                        _error_("not implemented");
    147147                } /*}}}*/
  • issm/trunk-jpl/src/c/toolkits/issm/IssmVec.h

    r23602 r23604  
    153153                }
    154154                /*}}}*/
    155                 void GetLocalVector(double** pvector,int** pindices){/*{{{*/
     155                void GetLocalVector(doubletype** pvector,int** pindices){/*{{{*/
    156156                        vector->GetLocalVector(pvector,pindices);
    157157                } /*}}}*/
  • issm/trunk-jpl/src/c/toolkits/objects/Vector.h

    r23602 r23604  
    217217                }
    218218                /*}}}*/
    219                 void GetLocalVector(double** pvector,int** pindices){_assert_(this);/*{{{*/
     219                void GetLocalVector(doubletype** pvector,int** pindices){_assert_(this);/*{{{*/
    220220
    221221                        if(type==PetscVecType){
     
    242242
    243243                        return output;
    244 
    245                 }
    246                 /*}}}*/
     244                } /*}}}*/
    247245                void Set(doubletype value){_assert_(this);/*{{{*/
    248246
  • issm/trunk-jpl/src/c/toolkits/petsc/objects/PetscVec.cpp

    r23602 r23604  
    115115}
    116116/*}}}*/
    117 void PetscVec::GetLocalVector(double** pvector,int** pindices){/*{{{*/
     117void PetscVec::GetLocalVector(IssmDouble** pvector,int** pindices){/*{{{*/
    118118
    119119        _assert_(this->vector);
     
    144144        for(int i=0;i<range;i++) indices[i]=lower_row+i;
    145145        /*Get vector*/
    146         IssmDouble* values =xNew<double>(range);
     146        IssmDouble* values =xNew<IssmDouble>(range);
    147147        VecGetValues(this->vector,range,indices,values);
    148148
  • issm/trunk-jpl/src/c/toolkits/petsc/objects/PetscVec.h

    r23602 r23604  
    4545                void        GetSize(int* pM);
    4646                void        GetLocalSize(int* pM);
    47                 void        GetLocalVector(double** pvector,int** pindices);
     47                void        GetLocalVector(IssmDouble** pvector,int** pindices);
    4848                PetscVec*   Duplicate(void);
    4949                void        Set(IssmDouble value);
Note: See TracChangeset for help on using the changeset viewer.