• 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 Dim>
13     void
test()14     test()
15         {
16         using namespace boost::qvm::sfinae;
17             {
18             test_qvm::matrix<M1,Dim,Dim> x(42,1);
19             test_qvm::matrix<M1,Dim,Dim> const y(42,2);
20             test_qvm::multiply_m(x.b,x.a,y.a);
21             x *= y;
22             BOOST_QVM_TEST_EQ(x.a,x.b);
23             }
24             {
25             test_qvm::matrix<M1,Dim,Dim> x(42,1);
26             test_qvm::matrix<M2,Dim,Dim> const y(42,2);
27             test_qvm::multiply_m(x.b,x.a,y.a);
28             x *= y;
29             BOOST_QVM_TEST_EQ(x.a,x.b);
30             }
31         }
32     }
33 
34 int
main()35 main()
36     {
37     test<2>();
38     test<3>();
39     test<4>();
40     test<5>();
41     return boost::report_errors();
42     }
43