Changeset 168 for bdm/stat/libBM.h

Show
Ignore:
Timestamp:
09/18/08 19:54:09 (16 years ago)
Author:
smidl
Message:

Work on mixtures of EF, small changes

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • bdm/stat/libBM.h

    r165 r168  
    265265        //!Logarithm of marginalized data likelihood. 
    266266        double ll; 
    267         //!  If true, the filter will compute likelihood of the data record and store it in \c ll . Set to false if you want to save time. 
     267        //!  If true, the filter will compute likelihood of the data record and store it in \c ll . Set to false if you want to save computational time. 
    268268        bool evalll; 
    269269public: 
     
    288288        //!access function 
    289289        double _ll() const {return ll;} 
     290        //!access function  
     291        void set_evalll(bool evl0){evalll=evl0;} 
    290292}; 
    291293