CNL  2.0.2 (development)
Compositional Numeric Library
reduce.h
1 
2 // Copyright John McFarlane 2018.
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file ../LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6 
7 #if !defined(CNL_IMPL_FRACTION_REDUCE_H)
8 #define CNL_IMPL_FRACTION_REDUCE_H
9 
10 #include "definition.h"
11 #include "gcd.h"
12 #include "make_fraction.h"
13 
15 namespace cnl {
16  namespace _impl {
17  template<typename Numerator, typename Denominator, typename Gcd>
18  [[nodiscard]] constexpr auto reduce_from_gcd(
19  fraction<Numerator, Denominator> const& f, Gcd const& gcd)
20  {
21  return make_fraction(f.numerator / gcd, f.denominator / gcd);
22  }
23 
24  template<typename Numerator, typename Denominator>
25  [[nodiscard]] constexpr auto reduce(fraction<Numerator, Denominator> const& f)
26  {
27  return reduce_from_gcd(f, gcd(f));
28  }
29  }
30 }
31 
32 #endif // CNL_IMPL_FRACTION_REDUCE_H
cnl
compositional numeric library
Definition: abort.h:15