Changeset 490

Show
Ignore:
Timestamp:
08/08/09 15:45:57 (15 years ago)
Author:
smidl
Message:

corrections of bdmtoolbox for new UIs, Mex files now call RV::clear_all(), closing #25

Files:
3 modified

Legend:

Unmodified
Added
Removed
  • applications/bdmtoolbox/mex/estimator.cpp

    r412 r490  
    7373                "see documentation of classes datasource, BM, and mexlogger and their offsprings in BDM."); 
    7474         
     75        RV::clear_all(); 
     76        //CONFIG  
    7577        UImxArray Cfg; 
    7678        try{ 
  • applications/bdmtoolbox/mex/merger.cpp

    r464 r490  
    4545                                            "  merger = struct('class','merger_*');       % object to be used for merging,\n\n" 
    4646                                            "see documentation of classes epdf, mpdf, merger_base and their offsprings in BDM."); 
    47  
     47        RV::clear_all(); 
    4848        // LOAD CONFIG 
    4949        UImxArray Cfg; 
  • library/bdm/base/user_info.cpp

    r477 r490  
    334334 
    335335void UI::from_setting ( int &integer, const Setting &element ) { 
    336         assert_type ( element, Setting::TypeInt ); 
     336//      assert_type ( element, Setting::TypeInt ); 
    337337        integer = element; 
    338338} 
    339339 
    340340void UI::from_setting ( double &real, const Setting &element ) { 
    341         assert_type ( element, Setting::TypeFloat ); 
     341//      assert_type ( element, Setting::TypeFloat ); 
    342342        real = element; 
    343343}