Changeset 270 for tests/UI

Show
Ignore:
Timestamp:
02/16/09 10:02:08 (15 years ago)
Author:
smidl
Message:

Changes in the very root classes!
* rv and rvc are no longer compulsory,
* samplecond does not return ll
* BM has drv

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • tests/UI/UIArxDS_test.cpp

    r268 r270  
    3737        L->init(); 
    3838 
    39         vec dt=zeros ( DS->_drv().count() );   //data variable 
    40         datalink_e2e dl ( E->_drv(),DS->_drv() ); //datalink between a datasource and estimator 
     39        vec dt=zeros ( DS->_drv()._dsize() );   //data variable 
     40        datalink dl ( E->_drv(),DS->_drv() ); //datalink between a datasource and estimator 
    4141 
    4242        for ( int tK=1;tK<Ndat;tK++ ) { 
    4343                DS->step();                                                     // simulator step 
    4444                DS->getdata ( dt );                                     // read data 
    45                 E->bayes ( dl.get_val ( dt ) );         // update estimates 
     45                E->bayes ( dl.pushdown ( dt ) );                // update estimates 
    4646 
    4747                DS->logit ( *L );