Changeset 495 for library/tests

Show
Ignore:
Timestamp:
08/11/09 08:48:56 (16 years ago)
Author:
vbarta
Message:

moved square matrices to namespace bdm

Location:
library/tests
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • library/tests/square_mat_point.h

    r477 r495  
    1616#include "itpp_ext.h" 
    1717#include "bdmroot.h" 
     18#include "base/user_info.h" 
    1819 
    1920/*! Testing matrix operations needs one square symmetrical matrix, one 
     
    5960        void to_setting ( Setting &set ) const; 
    6061}; 
     62UIREGISTER ( square_mat_point ); 
    6163 
    6264#endif 
  • library/tests/square_mat_stress.cpp

    r480 r495  
    1414using std::endl; 
    1515 
     16using bdm::fsqmat; 
     17using bdm::chmat; 
     18using bdm::ldmat; 
    1619using bdm::UIFile; 
    1720using bdm::UI; 
     
    2023double epsilon = 0.00001; 
    2124bool fast = false; 
    22  
    23 namespace bdm { 
    24 UIREGISTER ( square_mat_point ); 
    25 } 
    2625 
    2726namespace UnitTest { 
  • library/tests/square_mat_test.cpp

    r477 r495  
    11#include "../bdm/math/square_mat.h" 
    22#include "../bdm/math/chmat.h" 
     3#include "itpp_ext.h" 
    34#include "mat_checks.h" 
    45#include "UnitTest++.h" 
     
    67 
    78const double epsilon = 0.00001; 
     9 
     10using namespace itpp; 
     11 
     12using bdm::fsqmat; 
     13using bdm::chmat; 
     14using bdm::ldmat; 
    815 
    916template<typename TMatrix>