Changeset 14569


Ignore:
Timestamp:
04/15/13 11:27:14 (12 years ago)
Author:
Mathieu Morlighem
Message:

Cosmetics

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

Legend:

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

    r14512 r14569  
    3232        this->my_nodes=NULL;
    3333        this->my_vertices=NULL;
     34
    3435        this->singlenodetoelementconnectivity=NULL;
    3536        this->numbernodetoelementconnectivity=NULL;
     
    6667        this->my_nodes=NULL;
    6768        this->my_vertices=NULL;
     69
    6870        this->singlenodetoelementconnectivity=NULL;
    6971        this->numbernodetoelementconnectivity=NULL;
     
    12671269
    12681270        int my_rank;
    1269         int        lastindex,index;
    1270         int        record_length;
     1271        int lastindex,index;
     1272        int record_length;
    12711273
    12721274        /*recover my_rank:*/
  • issm/trunk-jpl/src/c/classes/IoModel.h

    r13623 r14569  
    2424                IssmDouble **data;   //this dataset holds temporary data, memory intensive.
    2525
    26                 /*This data needs to stay memory resident at all time, even if it's memory intensive: */
    27                 FILE *fid;                               //pointer to input file
     26                /*pointer to input file*/
     27                FILE *fid;
     28
     29                /*Partitioning*/
    2830                bool *my_elements;
    2931                bool *my_nodes;
    3032                int  *my_vertices;
     33
     34                /*Connectivity tables*/
    3135                int  *singlenodetoelementconnectivity;
    3236                int  *numbernodetoelementconnectivity;
    3337
    3438                /*Data to synchronize through low level object drivers: */
    35                 int nodecounter;         //keep track of how many nodes are being created in each analysis type
    36                 int loadcounter;         //keep track of how many loads are being created in each analysis type
    37                 int constraintcounter;   //keep track of how many constraints are being created in each analysis type
     39                int nodecounter;         //keep track of how many nodes are being created in each analysis
     40                int loadcounter;         //keep track of how many loads are being created in each analysis
     41                int constraintcounter;   //keep track of how many constraints are being created in each analysis
    3842
    3943                /*for AD mode: to keep track of our independent variables we fetch:*/
    40                 bool* independents;
    41                 DataSet* independent_objects;
     44                bool    *independents;
     45                DataSet *independent_objects;
    4246
    4347                /*Methods*/
Note: See TracChangeset for help on using the changeset viewer.