CNL  2.0.2 (development)
Compositional Numeric Library
canonical.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_CANONICAL_H)
8 #define CNL_IMPL_FRACTION_CANONICAL_H
9 
10 #include "definition.h"
11 #include "reduce.h"
12 
14 namespace cnl {
15  namespace _impl {
16  template<typename Numerator, typename Denominator>
17  [[nodiscard]] constexpr auto negated(fraction<Numerator, Denominator> const& rhs)
18  {
19  return _impl::make_fraction(-rhs.numerator, -rhs.denominator);
20  }
21 
22  template<typename Numerator, typename Denominator>
23  [[nodiscard]] constexpr auto canonical_from_reduce(
24  fraction<Numerator, Denominator> const& f)
25  {
26  return (f.denominator < Denominator(0.)) ? negated(f) : f;
27  }
28 
29  template<typename Numerator, typename Denominator>
30  [[nodiscard]] constexpr auto canonical(fraction<Numerator, Denominator> const& f)
31  {
32  return canonical_from_reduce(reduce(f));
33  }
34  }
35 }
36 
37 #endif // CNL_IMPL_FRACTION_CANONICAL_H
cnl
compositional numeric library
Definition: abort.h:15