common_factor_rt.hpp 789 B

1234567891011121314151617181920212223242526
  1. // (C) Copyright John Maddock 2017.
  2. // Use, modification and distribution are subject to the
  3. // Boost Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #ifndef BOOST_MATH_COMMON_FACTOR_RT_HPP
  6. #define BOOST_MATH_COMMON_FACTOR_RT_HPP
  7. #include <boost/integer/common_factor_rt.hpp>
  8. #include <boost/config/header_deprecated.hpp>
  9. BOOST_HEADER_DEPRECATED("<boost/integer/common_factor_rt.hpp>");
  10. namespace boost {
  11. namespace math {
  12. using boost::integer::gcd;
  13. using boost::integer::lcm;
  14. using boost::integer::gcd_range;
  15. using boost::integer::lcm_range;
  16. using boost::integer::gcd_evaluator;
  17. using boost::integer::lcm_evaluator;
  18. }
  19. }
  20. #endif // BOOST_MATH_COMMON_FACTOR_RT_HPP