Changeset 697

Show
Ignore:
Timestamp:
11/03/09 00:03:36 (14 years ago)
Author:
smidl
Message:

fix of StateDS

Files:
1 modified

Legend:

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

    r695 r697  
    307307        protected: 
    308308                //!conditional pdf of the state evolution \f$ f(x_t|x_{t-1}) \f$ 
    309                 shared_ptr<mpdf> IM; 
     309                shared_ptr<pdf> IM; 
    310310 
    311311                //!conditional pdf of the observations \f$ f(d_t|x_t) \f$ 
    312                 shared_ptr<mpdf> OM; 
     312                shared_ptr<pdf> OM; 
    313313 
    314314                //! result storage 
     
    353353 
    354354                //! set parameters 
    355                 void set_parameters(shared_ptr<mpdf> IM0, shared_ptr<mpdf> OM0){ 
     355                void set_parameters(shared_ptr<pdf> IM0, shared_ptr<pdf> OM0){ 
    356356                        IM=IM0; 
    357357                        OM = OM0;