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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
/*
* Copyright (C) 2021 William Youmans
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
mod ops;
mod conv;
#[cfg(feature = "serde")]
mod serde;
use crate::{New, Integer};
use flint_sys::{fmpz, fmpq};
use std::fmt;
use std::hash::{Hash, Hasher};
use std::mem::{ManuallyDrop, MaybeUninit};
#[derive(Debug)]
pub struct Rational {
inner: fmpq::fmpq,
}
impl AsRef<Rational> for Rational {
#[inline]
fn as_ref(&self) -> &Rational {
self
}
}
impl Clone for Rational {
#[inline]
fn clone(&self) -> Self {
let mut res = Rational::default();
unsafe {
fmpq::fmpq_set(res.as_mut_ptr(), self.as_ptr());
}
res
}
}
impl Default for Rational {
#[inline]
fn default() -> Self {
let mut z = MaybeUninit::uninit();
unsafe {
fmpq::fmpq_init(z.as_mut_ptr());
Rational::from_raw(z.assume_init())
}
}
}
impl fmt::Display for Rational {
#[inline]
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let n = self.numerator();
let d = self.denominator();
if d == 1 {
write!(f, "{}", n)
} else {
write!(f, "{}/{}", n, d)
}
}
}
impl Drop for Rational {
#[inline]
fn drop(&mut self) {
unsafe { fmpq::fmpq_clear(self.as_mut_ptr()) }
}
}
impl Hash for Rational {
#[inline]
fn hash<H: Hasher>(&self, state: &mut H) {
self.numerator().hash(state);
self.denominator().hash(state);
}
}
impl<T: Into<Rational>> New<T> for Rational {
#[inline]
fn new(src: T) -> Self {
src.into()
}
}
impl New<&Rational> for Rational {
#[inline]
fn new(src: &Rational) -> Self {
src.clone()
}
}
impl Rational {
/// Return zero.
///
/// ```
/// use inertia_core::Rational;
///
/// assert_eq!(Rational::zero(), 0);
/// ```
#[inline]
pub fn zero() -> Rational {
Rational::default()
}
/// Return one.
///
/// ```
/// use inertia_core::Rational;
///
/// assert_eq!(Rational::one(), 1);
/// ```
#[inline]
pub fn one() -> Rational {
let mut res = Rational::default();
unsafe { fmpq::fmpq_one(res.as_mut_ptr()); }
res
}
#[inline]
pub fn zero_assign(&mut self) {
unsafe { fmpq::fmpq_zero(self.as_mut_ptr()) }
}
#[inline]
pub fn one_assign(&mut self) {
unsafe { fmpq::fmpq_one(self.as_mut_ptr()) }
}
/// Return true if the `Rational` is zero.
///
/// ```
/// use inertia_core::Rational;
///
/// let x = Rational::from(0u32);
/// assert!(x.is_zero());
/// ```
#[inline]
pub fn is_zero(&self) -> bool {
unsafe { fmpq::fmpq_is_zero(self.as_ptr()) == 1 }
}
/// Return true if the `Rational` is one.
///
/// ```
/// use inertia_core::Rational;
///
/// let x = Rational::from(1i16);
/// assert!(x.is_one());
/// ```
#[inline]
pub fn is_one(&self) -> bool {
unsafe { fmpq::fmpq_is_one(self.as_ptr()) == 1 }
}
/// Returns a pointer to the inner [FLINT rational][fmpq::fmpq].
#[inline]
pub const fn as_ptr(&self) -> *const fmpq::fmpq {
&self.inner
}
/// Returns a mutable pointer to the inner [FLINT rational][fmpq::fmpq].
#[inline]
pub fn as_mut_ptr(&mut self) -> *mut fmpq::fmpq {
&mut self.inner
}
/// Instantiate a rational from a [FLINT rational][fmpq::fmpq].
#[inline]
pub const unsafe fn from_raw(raw: fmpq::fmpq) -> Rational {
Rational { inner: raw }
}
#[inline]
pub const fn into_raw(self) -> fmpq::fmpq {
let ret = self.inner;
let _ = ManuallyDrop::new(self);
ret
}
/// Returns the numerator of a rational number as an [Integer].
///
/// ```
/// use inertia_core::Rational;
///
/// let q = Rational::from([3, 4]);
/// assert_eq!(q.numerator(), 3);
/// ```
#[inline]
pub fn numerator(&self) -> Integer {
let mut res = Integer::zero();
unsafe {
fmpz::fmpz_set(res.as_mut_ptr(), &self.inner.num)
}
res
}
/// Returns the denominator of a rational number as an [Integer].
///
/// ```
/// use inertia_core::Rational;
///
/// let q = Rational::from([3, 4]);
/// assert_eq!(q.denominator(), 4);
/// ```
#[inline]
pub fn denominator(&self) -> Integer {
let mut res = Integer::zero();
unsafe {
fmpz::fmpz_set(res.as_mut_ptr(), &self.inner.den)
}
res
}
#[inline]
pub fn floor(&self) -> Integer {
let mut res = self.numerator();
res.fdiv_assign(self.denominator());
res
}
#[inline]
pub fn ceil(&self) -> Integer {
let mut res = self.numerator();
res.cdiv_assign(self.denominator());
res
}
#[inline]
pub fn round(&self) -> Integer {
let mut res = self.numerator();
res.tdiv_assign(self.denominator());
res
}
#[inline]
pub fn sign(&self) -> i32 {
unsafe {
fmpq::fmpq_sgn(self.as_ptr())
}
}
#[inline]
pub fn abs(&self) -> Rational {
unsafe {
let mut res = Rational::default();
fmpq::fmpq_abs(res.as_mut_ptr(), self.as_ptr());
res
}
}
#[inline]
pub fn abs_assign(&mut self) {
unsafe {
fmpq::fmpq_abs(self.as_mut_ptr(), self.as_ptr());
}
}
#[inline]
pub fn height(&self) -> Integer {
unsafe {
let mut res = Integer::default();
fmpq::fmpq_height(res.as_mut_ptr(), self.as_ptr());
res
}
}
}