Changeset 22555


Ignore:
Timestamp:
03/17/18 21:53:59 (7 years ago)
Author:
Mathieu Morlighem
Message:

CHG: slight increase in run speed

File:
1 edited

Legend:

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

    r22522 r22555  
    3232
    3333        _assert_(in_input);
    34 
    35         /*Delete input if it already exists*/
    36         this->DeleteInput(in_input->InstanceEnum());
    37 
    38         /*Now add new input to the dataset*/
     34        int enum_name = in_input->InstanceEnum();
     35
     36        /*Go through current inputs*/
     37        int size = this->Size();
     38        for(int i=0;i<size;i++){
     39                Input* input=xDynamicCast<Input*>(this->objects[i]);
     40
     41                /*If it's already there, remove it and replace it with in_input*/
     42                if(input->InstanceEnum()==enum_name){
     43                        delete input;
     44                        this->objects[i] = in_input;
     45                        return 1;
     46                }
     47        }
     48
     49        /*It is new, add input to the dataset*/
    3950        this->AddObject(in_input);
    4051
     
    4758        this->DeleteInput(newenumtype);
    4859
    49         /*Now get old input and change its enum (do not error out if not found)*/
    50         Input* input=this->GetInput(oldenumtype);
    51         if(input) input->ChangeEnum(newenumtype);
     60        /*Go through current inputs*/
     61        int size = this->Size();
     62        for(int i=0;i<size;i++){
     63                Input* input=xDynamicCast<Input*>(this->objects[i]);
     64
     65                /*If it's already there, remove it and replace it with in_input*/
     66                if(input->InstanceEnum()==oldenumtype){
     67                        input->ChangeEnum(newenumtype);
     68                        return;
     69                }
     70        }
    5271}/*}}}*/
    5372void Inputs::Configure(Parameters* parameters){/*{{{*/
Note: See TracChangeset for help on using the changeset viewer.