quaternion_mi2.cpp 390 B

123456789101112131415161718
  1. // test file for quaternion.hpp
  2. // (C) Copyright Hubert Holin 2001.
  3. // Distributed under the Boost Software License, Version 1.0. (See
  4. // accompanying file LICENSE_1_0.txt or copy at
  5. // http://www.boost.org/LICENSE_1_0.txt)
  6. #include "quaternion_mi2.h"
  7. #include <boost/math/quaternion.hpp>
  8. void quaternion_mi2()
  9. {
  10. ::boost::math::quaternion<float> q0;
  11. q0 *= q0;
  12. }