]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/qvm/test/minus_eq_mm_test.cpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / qvm / test / minus_eq_mm_test.cpp
CommitLineData
92f5a8d4
TL
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
10namespace
11 {
12 template <int Rows,int Cols>
13 void
14 test()
15 {
16 using namespace boost::qvm::sfinae;
17 test_qvm::matrix<M1,Rows,Cols> x(42,2);
18 {
19 test_qvm::matrix<M1,Rows,Cols> const y(42,1);
20 test_qvm::subtract_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<M2,Rows,Cols> const y(42,1);
26 test_qvm::subtract_m(x.b,x.a,y.a);
27 x-=y;
28 BOOST_QVM_TEST_EQ(x.a,x.b);
29 }
30 }
31 }
32
33int
34main()
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 }