]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/qvm/test/minus_eq_mm_test.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / qvm / test / minus_eq_mm_test.cpp
CommitLineData
1e59de90 1// Copyright 2008-2022 Emil Dotchevski and Reverge Studios, Inc.
92f5a8d4 2
1e59de90
TL
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#ifdef BOOST_QVM_TEST_SINGLE_HEADER
7# include BOOST_QVM_TEST_SINGLE_HEADER
8#else
9# include <boost/qvm/mat_operations.hpp>
10#endif
92f5a8d4 11
92f5a8d4
TL
12#include "test_qvm_matrix.hpp"
13#include "gold.hpp"
14
15namespace
16 {
17 template <int Rows,int Cols>
18 void
19 test()
20 {
21 using namespace boost::qvm::sfinae;
22 test_qvm::matrix<M1,Rows,Cols> x(42,2);
23 {
24 test_qvm::matrix<M1,Rows,Cols> const y(42,1);
25 test_qvm::subtract_m(x.b,x.a,y.a);
26 x-=y;
27 BOOST_QVM_TEST_EQ(x.a,x.b);
28 }
29 {
30 test_qvm::matrix<M2,Rows,Cols> const y(42,1);
31 test_qvm::subtract_m(x.b,x.a,y.a);
32 x-=y;
33 BOOST_QVM_TEST_EQ(x.a,x.b);
34 }
35 }
36 }
37
38int
39main()
40 {
41 test<1,2>();
42 test<2,1>();
43 test<2,2>();
44 test<1,3>();
45 test<3,1>();
46 test<3,3>();
47 test<1,4>();
48 test<4,1>();
49 test<4,4>();
50 test<1,5>();
51 test<5,1>();
52 test<5,5>();
53 return boost::report_errors();
54 }