Skip to content

Commit 0ed1a69

Browse files
committed
Fix mod1
Restore old implementation of mod1 that was overwritten in 3842422 Adds test of mod1 behavior from #5570 Note: #5570 is not fixed for fld1, rem1. The documentation bug of #8108 is not fixed.
1 parent dc5d781 commit 0ed1a69

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

base/operators.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ const % = rem
131131
const ÷ = div
132132

133133
# mod returns in [0,y) whereas mod1 returns in (0,y]
134-
mod1{T<:Real}(x::T, y::T) = y-mod(y-x,y)
134+
mod1{T<:Real}(x::T, y::T) = (m=mod(x,y); ifelse(m==0, y, m))
135135
rem1{T<:Real}(x::T, y::T) = rem(x-1,y)+1
136136
fld1{T<:Real}(x::T, y::T) = fld(x-1,y)+1
137137

test/numbers.jl

+4
Original file line numberDiff line numberDiff line change
@@ -2092,3 +2092,7 @@ end
20922092

20932093
# test second branch, after all small primes in list have been searched
20942094
@test factor(10009 * int128(1000000000000037)) == Dict(10009=>1,1000000000000037=>1)
2095+
2096+
#Issue #5570
2097+
@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]
2098+

0 commit comments

Comments
 (0)