Changeset 118

Show
Ignore:
Timestamp:
05/27/08 11:00:39 (16 years ago)
Author:
smidl
Message:

preklad...

Files:
2 modified

Legend:

Unmodified
Added
Removed
  • CMakeLists.txt

    r113 r118  
    2121 
    2222        INCLUDE(\\win32\\local_paths.txt OPTIONAL)       
    23 ELSEIF(WIN32) 
     23ELSE() 
    2424        #This is for UNIX makefile which does only one release at a time. 
    2525        SET(CMAKE_BUILD_TYPE Debug) 
  • bdm/stat/libBM.h

    r115 r118  
    167167//      virtual fnc moment ( const int order = 1 ); 
    168168        //! Returns a sample from the density conditioned on \c cond, \f$x \sim epdf(rv|cond)\f$. \param cond is numeric value of \c rv \param ll is a return value of log-likelihood of the sample. 
    169         virtual vec samplecond ( vec &cond, double &ll ) {this->condition ( cond );vec temp= ep->sample();ll=ep->evalpdflog ( temp );return temp;}; 
     169        virtual vec samplecond ( vec &cond, double &ll ) {this->condition ( cond ); 
     170        vec temp= ep->sample(); 
     171        ll=ep->evalpdflog ( temp );return temp;}; 
    170172        //! Returns N samples from the density conditioned on \c cond, \f$x \sim epdf(rv|cond)\f$. \param cond is numeric value of \c rv \param ll is a return value of log-likelihood of the sample. 
    171173        virtual mat samplecond ( vec &cond, vec &ll, int N ) {