Ignore:
Timestamp:
06/17/10 11:06:40 (15 years ago)
Author:
Eric.Larour
Message:

Split results between element results and external results.
element results are held in the Results* dataset of each element.
external results are held in the femmodel->Results* dataset, and hold anything that cannot fit in the elements.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/objects/Inputs/DoubleInput.cpp

    r4048 r4050  
    175175/*}}}*/
    176176/*FUNCTION DoubleInput::SpawnResult{{{1*/
    177 Result* DoubleInput::SpawnResult(int step, double time){
    178 
    179         return new DoubleResult(this->enum_type,this->value,step,time);
     177ElementResult* DoubleInput::SpawnResult(int step, double time){
     178
     179        return new DoubleElementResult(this->enum_type,this->value,step,time);
    180180
    181181}
     
    245245
    246246        /*xinput is of the same type, so cast it: */
    247         xdoubleinput=(DoubleInput)xinput;
     247        xdoubleinput=(DoubleInput*)xinput;
    248248
    249249        /*Carry out the AXPY operation:*/
Note: See TracChangeset for help on using the changeset viewer.