Show
Ignore:
Timestamp:
10/23/09 00:05:25 (15 years ago)
Author:
smidl
Message:

Major changes in BM -- OK is only test suite and tests/tutorial -- the rest is broken!!!

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/stat/merger.h

    r569 r679  
    342342        } 
    343343        //! loglikelihood computed on mixture models 
    344         double evallog ( const vec &dt ) const { 
    345                 vec dtf = ones ( dt.length() + 1 ); 
    346                 dtf.set_subvector ( 0, dt ); 
     344        double evallog ( const vec &yt ) const { 
     345                vec dtf = ones ( yt.length() + 1 ); 
     346                dtf.set_subvector ( 0, yt ); 
    347347                return Mix.logpred ( dtf ); 
    348348        }