| 1 | // Copyright 2008-2022 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 | #ifdef BOOST_QVM_TEST_SINGLE_HEADER |
| 7 | # include BOOST_QVM_TEST_SINGLE_HEADER |
| 8 | #else |
| 9 | # include <boost/qvm/mat_operations.hpp> |
| 10 | #endif |
| 11 | |
| 12 | #include "test_qvm_matrix.hpp" |
| 13 | #include "gold.hpp" |
| 14 | |
| 15 | namespace |
| 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> const x(42,1); |
| 23 | for( int i=0; i!=Rows; ++i ) |
| 24 | for( int j=0; j!=Cols; ++j ) |
| 25 | { |
| 26 | { |
| 27 | test_qvm::matrix<M1,Rows,Cols> y(x); |
| 28 | BOOST_QVM_TEST_EQ(x,y); |
| 29 | y.a[i][j]=0; |
| 30 | BOOST_QVM_TEST_NEQ(x,y); |
| 31 | } |
| 32 | { |
| 33 | test_qvm::matrix<M2,Rows,Cols> y; assign(y,x); |
| 34 | BOOST_QVM_TEST_EQ(x,y); |
| 35 | y.a[i][j]=0; |
| 36 | BOOST_QVM_TEST_NEQ(x,y); |
| 37 | } |
| 38 | } |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | int |
| 43 | main() |
| 44 | { |
| 45 | test<1,2>(); |
| 46 | test<2,1>(); |
| 47 | test<2,2>(); |
| 48 | test<1,3>(); |
| 49 | test<3,1>(); |
| 50 | test<3,3>(); |
| 51 | test<1,4>(); |
| 52 | test<4,1>(); |
| 53 | test<4,4>(); |
| 54 | test<1,5>(); |
| 55 | test<5,1>(); |
| 56 | test<5,5>(); |
| 57 | return boost::report_errors(); |
| 58 | } |
| 59 | |