diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:45:59 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:45:59 +0000 |
commit | 19fcec84d8d7d21e796c7624e521b60d28ee21ed (patch) | |
tree | 42d26aa27d1e3f7c0b8bd3fd14e7d7082f5008dc /src/boost/libs/qvm/test/neg_row_test.cpp | |
parent | Initial commit. (diff) | |
download | ceph-upstream.tar.xz ceph-upstream.zip |
Adding upstream version 16.2.11+ds.upstream/16.2.11+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/boost/libs/qvm/test/neg_row_test.cpp')
-rw-r--r-- | src/boost/libs/qvm/test/neg_row_test.cpp | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/src/boost/libs/qvm/test/neg_row_test.cpp b/src/boost/libs/qvm/test/neg_row_test.cpp new file mode 100644 index 000000000..e8ad870de --- /dev/null +++ b/src/boost/libs/qvm/test/neg_row_test.cpp @@ -0,0 +1,55 @@ +//Copyright (c) 2008-2016 Emil Dotchevski and Reverge Studios, Inc. + +//Distributed under the Boost Software License, Version 1.0. (See accompanying +//file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) + +#include <boost/qvm/map_mat_mat.hpp> +#include <boost/qvm/mat_operations.hpp> +#include <boost/qvm/mat_traits_array.hpp> +#include <boost/qvm/mat.hpp> +#include "test_qvm.hpp" +#include "test_qvm_matrix.hpp" +#include "gold.hpp" + +namespace + { + template <int Rows,int Cols,int Row> + void + test() + { + using namespace boost::qvm; + test_qvm::matrix<M1,Rows,Cols> x(42,1); + float r1[Rows][Cols]; + for( int i=0; i!=Rows; ++i ) + for( int j=0; j!=Cols; ++j ) + r1[i][j]=(i==Row?-x.a[i][j]:x.a[i][j]); + float r2[Rows][Cols]; + assign(r2,neg_row<Row>(x)); + BOOST_QVM_TEST_EQ(r1,r2); + neg_row<Row>(x) + neg_row<Row>(x); + -neg_row<Row>(x); + } + } + +int +main() + { + test<2,2,0>(); + test<2,2,1>(); + + test<3,3,0>(); + test<3,3,1>(); + test<3,3,2>(); + + test<4,4,0>(); + test<4,4,1>(); + test<4,4,2>(); + test<4,4,3>(); + + test<5,5,0>(); + test<5,5,1>(); + test<5,5,2>(); + test<5,5,3>(); + test<5,5,4>(); + return boost::report_errors(); + } |