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