Changeset 3819


Ignore:
Timestamp:
05/18/10 13:55:06 (15 years ago)
Author:
Eric.Larour
Message:

neighboors should be list of pointers. sorry helene

Location:
issm/trunk/src/c/objects/Elements
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/objects/Elements/Penta.cpp

    r3818 r3819  
    208208        penta->matice=(Matice*)penta->hmatice.delivers();
    209209        penta->matpar=(Matpar*)penta->hmatpar.delivers();
    210         penta->neighbors=(Penta*)penta->hneighbors.deliverp();
     210        penta->neighbors=(Penta**)penta->hneighbors.deliverp();
    211211
    212212        return penta;
     
    229229        this->matice=(Matice*)this->hmatice.delivers();
    230230        this->matpar=(Matpar*)this->hmatpar.delivers();
    231         this->neighbors=(Penta*)this->hneighbors.deliverp();
     231        this->neighbors=(Penta**)this->hneighbors.deliverp();
    232232
    233233        /*point parameters to real dataset: */
  • issm/trunk/src/c/objects/Elements/Penta.h

    r3817 r3819  
    3232                Matice      *matice;       // 1 material ice
    3333                Matpar      *matpar;       // 1 material parameter
    34                 Penta       *neighbors;   // 2 neighbors: first one under, second one above
     34                Penta      **neighbors;   // 2 neighbors: first one under, second one above
    3535
    3636                Parameters  *parameters;   //pointer to solution parameters
Note: See TracChangeset for help on using the changeset viewer.