eq_mm_test.cpp 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. //Copyright (c) 2008-2016 Emil Dotchevski and Reverge Studios, Inc.
  2. //Distributed under the Boost Software License, Version 1.0. (See accompanying
  3. //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. #include <boost/qvm/mat_operations.hpp>
  5. #include "test_qvm_matrix.hpp"
  6. #include "gold.hpp"
  7. namespace
  8. {
  9. template <int Rows,int Cols>
  10. void
  11. test()
  12. {
  13. using namespace boost::qvm::sfinae;
  14. test_qvm::matrix<M1,Rows,Cols> const x(42,1);
  15. for( int i=0; i!=Rows; ++i )
  16. for( int j=0; j!=Cols; ++j )
  17. {
  18. {
  19. test_qvm::matrix<M1,Rows,Cols> y(x);
  20. BOOST_QVM_TEST_EQ(x,y);
  21. y.a[i][j]=0;
  22. BOOST_QVM_TEST_NEQ(x,y);
  23. }
  24. {
  25. test_qvm::matrix<M2,Rows,Cols> y; assign(y,x);
  26. BOOST_QVM_TEST_EQ(x,y);
  27. y.a[i][j]=0;
  28. BOOST_QVM_TEST_NEQ(x,y);
  29. }
  30. }
  31. }
  32. }
  33. int
  34. main()
  35. {
  36. test<1,2>();
  37. test<2,1>();
  38. test<2,2>();
  39. test<1,3>();
  40. test<3,1>();
  41. test<3,3>();
  42. test<1,4>();
  43. test<4,1>();
  44. test<4,4>();
  45. test<1,5>();
  46. test<5,1>();
  47. test<5,5>();
  48. return boost::report_errors();
  49. }