common_factor_ct.hpp 840 B

12345678910111213141516171819202122232425262728293031
  1. // Boost common_factor_ct.hpp header file ----------------------------------//
  2. // (C) Copyright John Maddock 2017.
  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. // See http://www.boost.org for updates, documentation, and revision history.
  7. #ifndef BOOST_MATH_COMMON_FACTOR_CT_HPP
  8. #define BOOST_MATH_COMMON_FACTOR_CT_HPP
  9. #include <boost/integer/common_factor_ct.hpp>
  10. #include <boost/config/header_deprecated.hpp>
  11. BOOST_HEADER_DEPRECATED("<boost/integer/common_factor_ct.hpp>");
  12. namespace boost
  13. {
  14. namespace math
  15. {
  16. using boost::integer::static_gcd;
  17. using boost::integer::static_lcm;
  18. using boost::integer::static_gcd_type;
  19. } // namespace math
  20. } // namespace boost
  21. #endif // BOOST_MATH_COMMON_FACTOR_CT_HPP