Changeset 15419


Ignore:
Timestamp:
07/03/13 16:06:15 (12 years ago)
Author:
Mathieu Morlighem
Message:

CHG: elements and edges are now permanent fields for IoModel

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

Legend:

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

    r15321 r15419  
    3131        this->my_vertices=NULL;
    3232
     33        this->elements=NULL;
     34        this->edges=NULL;
    3335        this->singlenodetoelementconnectivity=NULL;
    3436        this->numbernodetoelementconnectivity=NULL;
     
    6668        this->my_vertices=NULL;
    6769
     70        FetchData(&this->dim,MeshDimensionEnum);
     71        this->elements=NULL;
     72        this->edges=NULL;
    6873        this->singlenodetoelementconnectivity=NULL;
    6974        this->numbernodetoelementconnectivity=NULL;
  • issm/trunk-jpl/src/c/classes/IoModel.h

    r14960 r15419  
    3131                int  *my_vertices;
    3232
    33                 /*Connectivity tables*/
     33                /*Mesh properties and connectivity tables*/
     34                int   dim;
     35                int  *elements;
     36                int  *edges;
    3437                int  *singlenodetoelementconnectivity;
    3538                int  *numbernodetoelementconnectivity;
Note: See TracChangeset for help on using the changeset viewer.