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