Changeset 20362


Ignore:
Timestamp:
03/27/16 10:02:21 (9 years ago)
Author:
Mathieu Morlighem
Message:

BUG: fixing Comm issue

Location:
issm/trunk-jpl/src/c
Files:
3 edited

Legend:

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

    r20345 r20362  
    735735                xDelete<int>(this->analysis_type_list);
    736736
    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();
    741741                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();
    746746        }
    747747
  • issm/trunk-jpl/src/c/classes/Params/GenericParam.h

    r19802 r20362  
    4646                void  Echo() {DeepEcho();};
    4747                int   Id(){ return -1; };
    48                 int   ObjectEnum() {return AdolcParamEnum;};
     48                int   ObjectEnum() {return GenericParamEnum;};
    4949
    5050                // the "copy"  has to implement the base class abstract function
  • issm/trunk-jpl/src/c/datastructures/DataSet.cpp

    r19631 r20362  
    122122
    123123                /*Go through our objects, and marshall them into the buffer: */
    124                 for ( obj=this->objects.begin() ; obj < this->objects.end(); obj++ ){
     124                for( obj=this->objects.begin() ; obj < this->objects.end(); obj++ ){
    125125                        obj_enum=(*obj)->ObjectEnum();
    126126                        MARSHALLING(obj_enum);
     
    241241                                this->AddObject(transparam);
    242242                        }
     243                        else if(obj_enum==GenericParamEnum){
     244                                /*Skip for now (we don't want to Marhsall Comms*/
     245                        }
    243246                        else if(obj_enum==MaticeEnum){
    244247                                Matice* matice=NULL;
Note: See TracChangeset for help on using the changeset viewer.