Changeset 20362
- Timestamp:
- 03/27/16 10:02:21 (9 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/FemModel.cpp
r20345 r20362 735 735 xDelete<int>(this->analysis_type_list); 736 736 737 this->profiler = new Profiler();738 this->loads = new Loads();739 this->materials = new Materials();740 this->parameters = new Parameters();737 this->profiler = new Profiler(); 738 this->loads = new Loads(); 739 this->materials = new Materials(); 740 this->parameters = new Parameters(); 741 741 this->constraints = new Constraints(); 742 this->results = new Results();743 this->nodes = new Nodes();744 this->vertices = new Vertices();745 this->elements = new Elements();742 this->results = new Results(); 743 this->nodes = new Nodes(); 744 this->vertices = new Vertices(); 745 this->elements = new Elements(); 746 746 } 747 747 -
issm/trunk-jpl/src/c/classes/Params/GenericParam.h
r19802 r20362 46 46 void Echo() {DeepEcho();}; 47 47 int Id(){ return -1; }; 48 int ObjectEnum() {return AdolcParamEnum;};48 int ObjectEnum() {return GenericParamEnum;}; 49 49 50 50 // the "copy" has to implement the base class abstract function -
issm/trunk-jpl/src/c/datastructures/DataSet.cpp
r19631 r20362 122 122 123 123 /*Go through our objects, and marshall them into the buffer: */ 124 for 124 for( obj=this->objects.begin() ; obj < this->objects.end(); obj++ ){ 125 125 obj_enum=(*obj)->ObjectEnum(); 126 126 MARSHALLING(obj_enum); … … 241 241 this->AddObject(transparam); 242 242 } 243 else if(obj_enum==GenericParamEnum){ 244 /*Skip for now (we don't want to Marhsall Comms*/ 245 } 243 246 else if(obj_enum==MaticeEnum){ 244 247 Matice* matice=NULL;
Note:
See TracChangeset
for help on using the changeset viewer.