Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/numpy/numpy
/ rational_abs
Function
rational_abs
numpy/core/src/umath/_rational_tests.c:247–253 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
245
}
246
247
static inline rational
248
rational_abs(rational x) {
249
rational y;
250
y.n = safe_abs32(x.n);
251
y.dmm = x.dmm;
252
return y;
253
}
254
255
static inline npy_int64
256
rational_rint(rational x) {
Callers
1
pyrational_richcompare
Function · 0.85
Calls
1
safe_abs32
Function · 0.85
Tested by
no test coverage detected