]>
git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/qvm/test/eq_mm_test.cpp
1 //Copyright (c) 2008-2016 Emil Dotchevski and Reverge Studios, Inc.
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)
6 #include <boost/qvm/mat_operations.hpp>
7 #include "test_qvm_matrix.hpp"
12 template <int Rows
,int Cols
>
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
)
22 test_qvm::matrix
<M1
,Rows
,Cols
> y(x
);
23 BOOST_QVM_TEST_EQ(x
,y
);
25 BOOST_QVM_TEST_NEQ(x
,y
);
28 test_qvm::matrix
<M2
,Rows
,Cols
> y
; assign(y
,x
);
29 BOOST_QVM_TEST_EQ(x
,y
);
31 BOOST_QVM_TEST_NEQ(x
,y
);
52 return boost::report_errors();