]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/qvm/test/scalar_cast_m_test.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / qvm / test / scalar_cast_m_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,double> x(42,1);
23 test_qvm::matrix<M1,Rows,Cols,float> y;
24 assign(y,scalar_cast<float>(x));
25 for( int i=0; i!=Rows; ++i )
26 for( int j=0; j!=Cols; ++j )
27 y.b[i][j]=static_cast<float>(x.a[i][j]);
28 BOOST_QVM_TEST_EQ(y.a,y.b);
29 }
30 }
31
32int
33main()
34 {
35 test<1,2>();
36 test<2,1>();
37 test<2,2>();
38 return boost::report_errors();
39 }