Changeset 490
- Timestamp:
- 08/08/09 15:45:57 (16 years ago)
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
applications/bdmtoolbox/mex/estimator.cpp
r412 r490 73 73 "see documentation of classes datasource, BM, and mexlogger and their offsprings in BDM."); 74 74 75 RV::clear_all(); 76 //CONFIG 75 77 UImxArray Cfg; 76 78 try{ -
applications/bdmtoolbox/mex/merger.cpp
r464 r490 45 45 " merger = struct('class','merger_*'); % object to be used for merging,\n\n" 46 46 "see documentation of classes epdf, mpdf, merger_base and their offsprings in BDM."); 47 47 RV::clear_all(); 48 48 // LOAD CONFIG 49 49 UImxArray Cfg; -
library/bdm/base/user_info.cpp
r477 r490 334 334 335 335 void UI::from_setting ( int &integer, const Setting &element ) { 336 assert_type ( element, Setting::TypeInt );336 // assert_type ( element, Setting::TypeInt ); 337 337 integer = element; 338 338 } 339 339 340 340 void UI::from_setting ( double &real, const Setting &element ) { 341 assert_type ( element, Setting::TypeFloat );341 // assert_type ( element, Setting::TypeFloat ); 342 342 real = element; 343 343 }