Changeset 495 for library/tests
- Timestamp:
- 08/11/09 08:48:56 (16 years ago)
- Location:
- library/tests
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
library/tests/square_mat_point.h
r477 r495 16 16 #include "itpp_ext.h" 17 17 #include "bdmroot.h" 18 #include "base/user_info.h" 18 19 19 20 /*! Testing matrix operations needs one square symmetrical matrix, one … … 59 60 void to_setting ( Setting &set ) const; 60 61 }; 62 UIREGISTER ( square_mat_point ); 61 63 62 64 #endif -
library/tests/square_mat_stress.cpp
r480 r495 14 14 using std::endl; 15 15 16 using bdm::fsqmat; 17 using bdm::chmat; 18 using bdm::ldmat; 16 19 using bdm::UIFile; 17 20 using bdm::UI; … … 20 23 double epsilon = 0.00001; 21 24 bool fast = false; 22 23 namespace bdm {24 UIREGISTER ( square_mat_point );25 }26 25 27 26 namespace UnitTest { -
library/tests/square_mat_test.cpp
r477 r495 1 1 #include "../bdm/math/square_mat.h" 2 2 #include "../bdm/math/chmat.h" 3 #include "itpp_ext.h" 3 4 #include "mat_checks.h" 4 5 #include "UnitTest++.h" … … 6 7 7 8 const double epsilon = 0.00001; 9 10 using namespace itpp; 11 12 using bdm::fsqmat; 13 using bdm::chmat; 14 using bdm::ldmat; 8 15 9 16 template<typename TMatrix>