Changeset 12360


Ignore:
Timestamp:
06/04/12 12:09:53 (13 years ago)
Author:
utke
Message:

IssmDouble type change

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/objects/DofIndexing.cpp

    r12014 r12360  
    5353                this->f_set=(bool*)xmalloc(this->gsize*sizeof(bool));
    5454                this->s_set=(bool*)xmalloc(this->gsize*sizeof(bool));
    55                 this->svalues=(double*)xmalloc(this->gsize*sizeof(int));
     55                this->svalues=xNew<IssmDouble>(this->gsize);
    5656                if(in->doftype)this->doftype=(int*)xmalloc(this->gsize*sizeof(int));
    5757                this->gdoflist=(int*)xmalloc(this->gsize*sizeof(int));
     
    7070                memcpy(this->f_set,in->f_set,this->gsize*sizeof(bool));
    7171                memcpy(this->s_set,in->s_set,this->gsize*sizeof(bool));
    72                 memcpy(this->svalues,in->svalues,this->gsize*sizeof(double));
     72                xMemCpy<IssmDouble>(this->svalues,in->svalues,this->gsize);
    7373                if(this->doftype)memcpy(this->doftype,in->doftype,this->gsize*sizeof(int));
    7474                memcpy(this->gdoflist,in->gdoflist,this->gsize*sizeof(int));
     
    8484        xfree((void**)&f_set);
    8585        xfree((void**)&s_set);
    86         xfree((void**)&svalues);
     86        xDelete<IssmDouble>(svalues);
    8787        xfree((void**)&doftype);
    8888        xfree((void**)&gdoflist);
     
    104104                this->f_set=(bool*)xmalloc(this->gsize*sizeof(bool));
    105105                this->s_set=(bool*)xmalloc(this->gsize*sizeof(bool));
    106                 this->svalues=(double*)xmalloc(this->gsize*sizeof(double));
     106                this->svalues=xNew<IssmDouble>(this->gsize);
    107107                if(in_doftype)this->doftype=(int*)xmalloc(this->gsize*sizeof(int));
    108108                this->gdoflist=(int*)xmalloc(this->gsize*sizeof(int));
Note: See TracChangeset for help on using the changeset viewer.