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/math/functions.h

    r565 r620  
    124124        //! Alternative initialization 
    125125        void set_parameters ( const mat &A0, const mat &B0 ) { 
    126                 bdm_assert_debug ( A0.rows() == B0.rows(), "bilinfn matrices must have the same number of rows" ); 
     126                bdm_assert ( A0.rows() == B0.rows(), "bilinfn matrices must have the same number of rows" ); 
    127127                A = A0; 
    128128                B = B0;