]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/qvm/test/eq_vv_test.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / qvm / test / eq_vv_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/vec_operations.hpp>
10#endif
92f5a8d4 11
92f5a8d4
TL
12#include "test_qvm_vector.hpp"
13#include "gold.hpp"
14
15namespace
16 {
17 template <int Dim>
18 void
19 test()
20 {
21 using namespace boost::qvm::sfinae;
22 test_qvm::vector<V1,Dim> const x(42,1);
23 for( int i=0; i!=Dim; ++i )
24 {
25 {
26 test_qvm::vector<V1,Dim> y(x);
27 BOOST_QVM_TEST_EQ(x,y);
28 y.a[i]=0;
29 BOOST_QVM_TEST_NEQ(x,y);
30 }
31 {
32 test_qvm::vector<V2,Dim> y; assign(y,x);
33 BOOST_QVM_TEST_EQ(x,y);
34 y.a[i]=0;
35 BOOST_QVM_TEST_NEQ(x,y);
36 }
37 }
38 }
39 }
40
41int
42main()
43 {
44 test<2>();
45 test<3>();
46 test<4>();
47 test<5>();
48 return boost::report_errors();
49 }