Show
Ignore:
Timestamp:
09/16/09 14:47:36 (15 years ago)
Author:
smidl
Message:

replace assert_debug by assert in classes interacting with users (from_setting, set_parameters, validate)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/design/ctrlbase.cpp

    r586 r620  
    2222 
    2323void LQG::validate() { 
    24         bdm_assert_debug ( Qy.cols() == dimy, "LQG: wrong dimensions of Qy " ); 
    25         bdm_assert_debug ( Qu.cols() == dimu, "LQG: wrong dimensions of Qu " ); 
    26         bdm_assert_debug ( y_req.length() == dimy, "LQG: wrong dimensions of y_req " ); 
     24        bdm_assert ( Qy.cols() == dimy, "LQG: wrong dimensions of Qy " ); 
     25        bdm_assert ( Qu.cols() == dimu, "LQG: wrong dimensions of Qu " ); 
     26        bdm_assert ( y_req.length() == dimy, "LQG: wrong dimensions of y_req " ); 
    2727} 
    2828