Show
Ignore:
Timestamp:
11/15/09 23:02:02 (15 years ago)
Author:
smidl
Message:

Big commit of LQG stuff

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/base/bdmbase.h

    r713 r723  
    796796        datalink_buffered() : datalink_part(), history ( 0 ), h2v_down ( 0 ), h2v_hist ( 0 ) {}; 
    797797        //! push current data to history 
    798         void step ( const vec &val_up ) { 
     798        void store_data ( const vec &val_up ) { 
    799799                if ( v2h_up.length() > 0 ) { 
    800800                        history.shift_right ( 0, v2h_up.length() ); 
     
    818818        void set_connection ( const RV &rv, const RV &rv_up ) { 
    819819                // create link between up and down 
    820                 datalink_part::set_connection ( rv, rv_up ); 
     820                datalink_part::set_connection ( rv, rv_up.remove_time() ); // only non-delayed version 
    821821 
    822822                // create rvs of history 
     
    871871        //! update buffer 
    872872        void step ( const vec &dt, const vec &ut ) { 
    873                 dl1.step ( dt ); 
    874                 dl2.step ( ut ); 
     873                dl1.store_data ( dt ); 
     874                dl2.store_data ( ut ); 
    875875        } 
    876876};