- Timestamp:
- 02/16/09 10:02:08 (16 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
tests/UI/UIArxDS_test.cpp
r268 r270 37 37 L->init(); 38 38 39 vec dt=zeros ( DS->_drv(). count() ); //data variable40 datalink _e2edl ( E->_drv(),DS->_drv() ); //datalink between a datasource and estimator39 vec dt=zeros ( DS->_drv()._dsize() ); //data variable 40 datalink dl ( E->_drv(),DS->_drv() ); //datalink between a datasource and estimator 41 41 42 42 for ( int tK=1;tK<Ndat;tK++ ) { 43 43 DS->step(); // simulator step 44 44 DS->getdata ( dt ); // read data 45 E->bayes ( dl. get_val( dt ) ); // update estimates45 E->bayes ( dl.pushdown ( dt ) ); // update estimates 46 46 47 47 DS->logit ( *L );