]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/qvm/test/mul_mv_test.cpp
update sources to v12.2.4
[ceph.git] / ceph / src / boost / libs / qvm / test / mul_mv_test.cpp
index 368116d2c8841c0cda74b39a070ebbf380a68969..c475ee9db76cf3219199546beae1895c746ed867 100644 (file)
@@ -1,75 +1,75 @@
-//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/vec_mat_operations.hpp>
-#include <boost/qvm/mat_operations.hpp>
-#include <boost/qvm/vec_operations.hpp>
-#include <boost/qvm/mat.hpp>
-#include <boost/qvm/vec.hpp>
-#include "test_qvm_matrix.hpp"
-#include "test_qvm_vector.hpp"
-#include "gold.hpp"
-
-namespace
-    {
-    template <class T,class U>
-    struct same_type;
-
-    template <class T>
-    struct
-    same_type<T,T>
-        {
-        };
-
-    template <class T,class U>
-    void
-    check_same_type( T const &, U const & )
-        {
-        same_type<T,U>();
-        }
-
-    template <int M,int N>
-    void
-    test()
-        {
-        using namespace boost::qvm::sfinae;
-        test_qvm::matrix<M1,M,N> const x(42,1);
-        test_qvm::vector<V1,N> const y(42,1);
-            {
-            test_qvm::vector<V2,M> r=x*y;
-            test_qvm::multiply_mv(r.b,x.b,y.b);
-            BOOST_QVM_TEST_CLOSE(r.a,r.b,0.0000001f);
-            }
-            {
-            test_qvm::vector<V2,M> r=mref(x)*y;
-            test_qvm::multiply_mv(r.b,x.b,y.b);
-            BOOST_QVM_TEST_CLOSE(r.a,r.b,0.0000001f);
-            }
-            {
-            test_qvm::vector<V2,M> r=x*vref(y);
-            test_qvm::multiply_mv(r.b,x.b,y.b);
-            BOOST_QVM_TEST_CLOSE(r.a,r.b,0.0000001f);
-            }
-        check_same_type(x*y,boost::qvm::vec<float,M>());
-        }
-    }
-
-int
-main()
-    {
-    test<1,2>();
-    test<2,1>();
-    test<2,2>();
-    test<1,3>();
-    test<3,1>();
-    test<3,3>();
-    test<1,4>();
-    test<4,1>();
-    test<4,4>();
-    test<1,5>();
-    test<5,1>();
-    test<5,5>();
-    return boost::report_errors();
-    }
+//Copyright (c) 2008-2016 Emil Dotchevski and Reverge Studios, Inc.\r
+\r
+//Distributed under the Boost Software License, Version 1.0. (See accompanying\r
+//file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\r
+\r
+#include <boost/qvm/vec_mat_operations.hpp>\r
+#include <boost/qvm/mat_operations.hpp>\r
+#include <boost/qvm/vec_operations.hpp>\r
+#include <boost/qvm/mat.hpp>\r
+#include <boost/qvm/vec.hpp>\r
+#include "test_qvm_matrix.hpp"\r
+#include "test_qvm_vector.hpp"\r
+#include "gold.hpp"\r
+\r
+namespace\r
+    {\r
+    template <class T,class U>\r
+    struct same_type;\r
+\r
+    template <class T>\r
+    struct\r
+    same_type<T,T>\r
+        {\r
+        };\r
+\r
+    template <class T,class U>\r
+    void\r
+    check_same_type( T const &, U const & )\r
+        {\r
+        same_type<T,U>();\r
+        }\r
+\r
+    template <int M,int N>\r
+    void\r
+    test()\r
+        {\r
+        using namespace boost::qvm::sfinae;\r
+        test_qvm::matrix<M1,M,N> const x(42,1);\r
+        test_qvm::vector<V1,N> const y(42,1);\r
+            {\r
+            test_qvm::vector<V2,M> r=x*y;\r
+            test_qvm::multiply_mv(r.b,x.b,y.b);\r
+            BOOST_QVM_TEST_CLOSE(r.a,r.b,0.0000001f);\r
+            }\r
+            {\r
+            test_qvm::vector<V2,M> r=mref(x)*y;\r
+            test_qvm::multiply_mv(r.b,x.b,y.b);\r
+            BOOST_QVM_TEST_CLOSE(r.a,r.b,0.0000001f);\r
+            }\r
+            {\r
+            test_qvm::vector<V2,M> r=x*vref(y);\r
+            test_qvm::multiply_mv(r.b,x.b,y.b);\r
+            BOOST_QVM_TEST_CLOSE(r.a,r.b,0.0000001f);\r
+            }\r
+        check_same_type(x*y,boost::qvm::vec<float,M>());\r
+        }\r
+    }\r
+\r
+int\r
+main()\r
+    {\r
+    test<1,2>();\r
+    test<2,1>();\r
+    test<2,2>();\r
+    test<1,3>();\r
+    test<3,1>();\r
+    test<3,3>();\r
+    test<1,4>();\r
+    test<4,1>();\r
+    test<4,4>();\r
+    test<1,5>();\r
+    test<5,1>();\r
+    test<5,5>();\r
+    return boost::report_errors();\r
+    }\r