• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //Copyright (c) 2008-2016 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 #include <boost/qvm/vec_operations.hpp>
7 #include "test_qvm_vector.hpp"
8 #include "gold.hpp"
9 
10 namespace
11     {
12     template <int Dim>
13     void
test()14     test()
15         {
16         using namespace boost::qvm::sfinae;
17         test_qvm::vector<V1,Dim> const x(42,1);
18         for( int i=0; i!=Dim; ++i )
19             {
20                 {
21                 test_qvm::vector<V1,Dim> y(x);
22                 BOOST_QVM_TEST_EQ(x,y);
23                 y.a[i]=0;
24                 BOOST_QVM_TEST_NEQ(x,y);
25                 }
26                 {
27                 test_qvm::vector<V2,Dim> y; assign(y,x);
28                 BOOST_QVM_TEST_EQ(x,y);
29                 y.a[i]=0;
30                 BOOST_QVM_TEST_NEQ(x,y);
31                 }
32             }
33         }
34     }
35 
36 int
main()37 main()
38     {
39     test<2>();
40     test<3>();
41     test<4>();
42     test<5>();
43     return boost::report_errors();
44     }
45