7 #if !defined(CNL_IMPL_FRACTION_REDUCE_H)
8 #define CNL_IMPL_FRACTION_REDUCE_H
10 #include "definition.h"
12 #include "make_fraction.h"
17 template<
typename Numerator,
typename Denominator,
typename Gcd>
18 [[nodiscard]] constexpr
auto reduce_from_gcd(
19 fraction<Numerator, Denominator>
const& f, Gcd
const& gcd)
21 return make_fraction(f.numerator / gcd, f.denominator / gcd);
24 template<
typename Numerator,
typename Denominator>
25 [[nodiscard]] constexpr
auto reduce(fraction<Numerator, Denominator>
const& f)
27 return reduce_from_gcd(f, gcd(f));
32 #endif // CNL_IMPL_FRACTION_REDUCE_H