1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
use malachite_nz::natural::Natural;
use Rational;

/// Replaces a number with the closest [`Rational`] whose denominator does not exceed the specified
/// maximum.
pub trait ApproximateAssign {
    fn approximate_assign(&mut self, max_denominator: &Natural);
}

/// Returns the closest [`Rational`] whose denominator does not exceed the specified maximum.
pub trait Approximate {
    fn approximate(self, max_denominator: &Natural) -> Rational;
}

/// Finds the simplest [`Rational`] contained in an interval.
pub trait SimplestRationalInInterval {
    /// Finds the simplest [`Rational`] contained in an open interval.
    ///
    /// Simplicity is defined as follows: If two [`Rational`]s have different denominators, then
    /// the one with the smaller denominator is simpler. If they have the same denominator, then
    /// the one whose numerator is closer to zero is simpler. Finally, if $q > 0$, then $q$ is
    /// simpler than $-q$.
    fn simplest_rational_in_open_interval(x: &Self, y: &Self) -> Rational;

    /// Finds the simplest [`Rational`] contained in a closed interval.
    ///
    /// Simplicity is defined as follows: If two [`Rational`]s have different denominators, then
    /// the one with the smaller denominator is simpler. If they have the same denominator, then
    /// the one whose numerator is closer to zero is simpler. Finally, if $q > 0$, then $q$ is
    /// simpler than $-q$.
    fn simplest_rational_in_closed_interval(x: &Self, y: &Self) -> Rational;
}