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 <boost/qvm/mat.hpp>
8 #include "test_qvm_matrix.hpp"
9 #include "gold.hpp"
10
11 namespace
12 {
13 template <class T,class U> struct same_type_tester;
14 template <class T> struct same_type_tester<T,T> { };
test_same_type(T,U)15 template <class T,class U> void test_same_type( T, U ) { same_type_tester<T,U>(); }
16
17 template <int Rows,int Cols>
18 void
test()19 test()
20 {
21 using namespace boost::qvm::sfinae;
22 test_qvm::matrix<M1,Rows,Cols> const x(42,2);
23 {
24 test_qvm::matrix<M1,Rows,Cols> const y(42,1);
25 test_same_type(x,x-y);
26 test_qvm::matrix<M1,Rows,Cols> r=x-y;
27 test_qvm::subtract_m(r.b,x.b,y.b);
28 BOOST_QVM_TEST_EQ(r.a,r.b);
29 }
30 {
31 test_qvm::matrix<M1,Rows,Cols> const y(42,1);
32 test_qvm::matrix<M2,Rows,Cols> r=mref(x)-y;
33 test_qvm::subtract_m(r.b,x.b,y.b);
34 BOOST_QVM_TEST_EQ(r.a,r.b);
35 }
36 {
37 test_qvm::matrix<M1,Rows,Cols> const y(42,1);
38 test_qvm::matrix<M2,Rows,Cols> r=x-mref(y);
39 test_qvm::subtract_m(r.b,x.b,y.b);
40 BOOST_QVM_TEST_EQ(r.a,r.b);
41 }
42 }
43 }
44
45 int
main()46 main()
47 {
48 test<1,2>();
49 test<2,1>();
50 test<2,2>();
51 test<1,3>();
52 test<3,1>();
53 test<3,3>();
54 test<1,4>();
55 test<4,1>();
56 test<4,4>();
57 test<1,5>();
58 test<5,1>();
59 test<5,5>();
60 return boost::report_errors();
61 }
62