Skip to content

Commit a0b956c

Browse files
committed
Clean up mod1
Implement fld1 and fldmod1. Add test cases. Deprecate rem1.
1 parent 944dcbd commit a0b956c

File tree

4 files changed

+21
-3
lines changed

4 files changed

+21
-3
lines changed

base/deprecated.jl

+9
Original file line numberDiff line numberDiff line change
@@ -873,6 +873,15 @@ end
873873
@deprecate chol(A::Number, ::Type{Val{:L}}) ctranspose(chol(A))
874874
@deprecate chol(A::AbstractMatrix, ::Type{Val{:L}}) ctranspose(chol(A))
875875

876+
# Number updates
877+
878+
# rem1 is inconsistent for x==0: The result should both have the same
879+
# sign as x, and should be non-zero.
880+
function rem1{T<:Real}(x::T, y::T)
881+
depwarn("`rem1(x,y)` is discontinued, as it cannot be defined consistently for `x==0`. Rewrite the expression using `mod1` instead.", :rem1)
882+
rem(x-1,y)+1
883+
end
884+
876885
# Filesystem module updates
877886

878887
@deprecate_binding FS Filesystem

base/exports.jl

+2
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,9 @@ export
357357
factor,
358358
factorial,
359359
fld,
360+
fld1,
360361
fldmod,
362+
fldmod1,
361363
flipsign,
362364
float,
363365
tryparse,

base/operators.jl

+4-3
Original file line numberDiff line numberDiff line change
@@ -149,10 +149,11 @@ const % = rem
149149
.%(x::Real, y::Real) = x%y
150150
const ÷ = div
151151

152-
# mod returns in [0,y) whereas mod1 returns in (0,y]
152+
# mod returns in [0,y) or (y,0] (for negative y),
153+
# whereas mod1 returns in (0,y] or [y,0)
153154
mod1{T<:Real}(x::T, y::T) = (m=mod(x,y); ifelse(m==0, y, m))
154-
rem1{T<:Real}(x::T, y::T) = rem(x-1,y)+1
155-
fld1{T<:Real}(x::T, y::T) = fld(x-1,y)+1
155+
fld1{T<:Real}(x::T, y::T) = fld(x - mod1(x,y), y)
156+
fldmod1{T<:Real}(x::T, y::T) = (m=mod1(x,y); (fld(x-m, y), m))
156157

157158
# transpose
158159
transpose(x) = x

test/numbers.jl

+6
Original file line numberDiff line numberDiff line change
@@ -2530,6 +2530,12 @@ end
25302530
# test second branch, after all small primes in list have been searched
25312531
@test factor(10009 * Int128(1000000000000037)) == Dict(10009=>1,1000000000000037=>1)
25322532

2533+
@test all(x -> (m=mod1(x,3); 0<m<=3), -5:+5)
2534+
@test all(x -> x == fld1(x,3)*3 + mod1(x,3), -5:+5)
2535+
@test all(x -> fldmod1(x,3) == (fld1(x,3), mod1(x,3)))
2536+
@test all(x -> (m=mod1(x,-3); -3<=m<0), -5:+5)
2537+
@test all(x -> x == fld1(x,-3)*-3 + mod1(x,-3), -5:+5)
2538+
@test all(x -> fldmod1(x,-3) == (fld1(x,-3), mod1(x,-3)))
25332539
#Issue #5570
25342540
@test map(x -> Int(mod1(UInt(x),UInt(5))), 0:15) == [5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5]
25352541

0 commit comments

Comments
 (0)