Show
Ignore:
Timestamp:
11/05/09 12:06:24 (15 years ago)
Author:
smidl
Message:

Controlloop

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/design/ctrlbase.h

    r696 r704  
    2727                public: 
    2828                        //! function processing new observations and adapting control strategy accordingly 
    29                         virtual void redesign(const vec &data){}; 
     29                        virtual void adapt(const vec &data){}; 
     30                        //! function redesigning the control strategy  
     31                        virtual void redesign(){}; 
    3032                        //! returns designed control action 
    3133                        virtual vec ctrlaction(const vec &cond){return vec(0);} 
     
    4042                        const RV& _rvc() {return rvc;} 
    4143                        //! register this controller with given datasource under name "name" 
    42                         virtual void log_register (logger &L,  int level, const string &prefix ) { } 
     44                        virtual void log_register (logger &L, const string &prefix ) { } 
    4345                        //! write requested values into the logger 
    4446                        virtual void log_write ( ) const { }