Show
Ignore:
Timestamp:
09/04/09 00:45:40 (15 years ago)
Author:
smidl
Message:

datasources revisited...

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/tests/datasource_test.cpp

    r598 r603  
    2525        shared_ptr<MpdfDS> ds=UI::build<MpdfDS>(uif, "ds", UI::compulsory); 
    2626         
    27         vec dt = zeros(1); 
     27        vec dt = zeros(2); 
    2828        vec ut="1.0"; 
    2929        ds->write(ut); 
     
    3232        } 
    3333        ds->getdata(dt); 
    34         CHECK_CLOSE ( -0.2 , dt(0), 1e-5); 
     34        CHECK_CLOSE ( -0.2 , dt(0), 1e-4); 
    3535 
    3636        ut="2.0"; 
     
    4040        } 
    4141        ds->getdata(dt); 
    42         CHECK_CLOSE ( -0.4 , dt(0), 1e-5); 
     42        CHECK_CLOSE ( -0.4 , dt(0), 1e-4); 
    4343}