Show
Ignore:
Timestamp:
08/19/09 16:54:24 (15 years ago)
Author:
vbarta
Message:

using own error macros (basically copied from IT++, but never aborting)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/estim/arx.cpp

    r527 r565  
    5454        const ARX* A0 = dynamic_cast<const ARX*> ( B0 ); 
    5555 
    56         it_assert_debug ( V.rows() == A0->V.rows(), "ARX::set_statistics Statistics  differ" ); 
     56        bdm_assert_debug ( V.rows() == A0->V.rows(), "ARX::set_statistics Statistics  differ" ); 
    5757        set_statistics ( A0->dimx, A0->V, A0->nu ); 
    5858} 
     
    8080        int dim = est.dimension(); 
    8181        int dif = V.rows() - dim ;///<----------- TODO 
    82         it_assert_debug ( ( dif == 0 ) || ( dif == 1 ), "Give RVs do not match" ); 
     82        bdm_assert_debug ( ( dif == 0 ) || ( dif == 1 ), "Give RVs do not match" ); 
    8383 
    8484        mat mu ( dim, V.rows() - dim ); 
     
    103103        int dim = est.dimension(); 
    104104        int dif = V.rows() - est.dimension();//-------------TODO 
    105         it_assert_debug ( ( dif == 0 ) || ( dif == 1 ), "Give RVs do not match" ); 
     105        bdm_assert_debug ( ( dif == 0 ) || ( dif == 1 ), "Give RVs do not match" ); 
    106106 
    107107        mat mu ( dim, V.rows() - dim );