Changeset 23513


Ignore:
Timestamp:
12/06/18 20:02:32 (6 years ago)
Author:
Mathieu Morlighem
Message:

CHG: added epart to IoModel for element/vertices partitionning

Location:
issm/trunk-jpl/src/c/classes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/IoModel.cpp

    r23505 r23513  
    138138        this->my_edges=NULL;
    139139        this->my_vertices=NULL;
     140        this->epart=NULL;
    140141
    141142        this->domaintype=-1;
     
    202203        this->my_edges = NULL;
    203204        this->my_vertices = NULL;
     205        this->epart = NULL;
    204206
    205207        FindConstant(&this->domaintype,"md.mesh.domain_type");
     
    248250        xDelete<bool>(this->my_edges);
    249251        xDelete<bool>(this->my_vertices);
     252        xDelete<int>(this->epart);
    250253
    251254        xDelete<int>(this->elements);
  • issm/trunk-jpl/src/c/classes/IoModel.h

    r23505 r23513  
    6767                bool *my_edges;
    6868                bool *my_vertices;
     69                int  *epart;
    6970
    7071                /*Mesh properties and connectivity tables*/
Note: See TracChangeset for help on using the changeset viewer.