Skip to content

Commit 60dcf6e

Browse files
committed
brew
1 parent bc341e0 commit 60dcf6e

5 files changed

Lines changed: 11 additions & 11 deletions

File tree

src/CantorMachines.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ end
139139
Return the pair ``(x, y)`` for given n as given by the boustrophedonic Rosenberg-Strong enumeration.
140140
"""
141141
function V319514(n)
142-
k, r = divrem(n, 2)
142+
k, r = Base.divrem(n, 2)
143143
m = x = isqrt(k)
144144
y = k - x^2
145145
x <= y && ((x, y) = (2x - y, x))

src/IntegerSequences.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# Copyright Peter Luschny. License is MIT.
33
# This file includes parts from Combinatorics.jl in modified form.
44

5-
# Version of: UTC 2019-11-20 15:32:42
6-
# 9c370380-0ba2-11ea-2de6-279c0f3a4284
5+
# Version of: UTC 2019-11-20 16:16:21
6+
# b57e0e50-0ba8-11ea-083b-01e198b0a0fa
77

88
# Do not edit this file, it is generated from the modules and will be overwritten!
99
# Edit the modules in the src directory and build this file with BuildSequences.jl!
@@ -2620,7 +2620,7 @@ Return the pair ``(x, y)`` for given n as given by the boustrophedonic Rosenberg
26202620
$(SIGNATURES)
26212621
"""
26222622
function V319514(n)
2623-
k, r = divrem(n, 2)
2623+
k, r = Base.divrem(n, 2)
26242624
m = x = isqrt(k)
26252625
y = k - x^2
26262626
x <= y && ((x, y) = (2x - y, x))
@@ -2631,7 +2631,7 @@ end
26312631
Return a list of pairs ``(x, y)`` given by the boustrophedonic Rosenberg-Strong enumeration.
26322632
$(SIGNATURES)
26332633
"""
2634-
L319514(len) = [V319514(n) for n ��� 0:len-1]
2634+
L319514(len) = [V319514(n) for n 0:len-1]
26352635
# *** CarmichaelNumbers.jl ****************
26362636
"""
26372637
@@ -7461,7 +7461,7 @@ const wheel_indices = [
74617461
7,
74627462
]
74637463
@inline function wheel_index(n)
7464-
d, r = divrem(n - 1, 30)
7464+
d, r = Base.divrem(n - 1, 30)
74657465
return 8d + wheel_indices[r+2]
74667466
end
74677467
@inline function wheel_prime(n)

src/PrimesIterator.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const wheel_indices = [
2626
]
2727

2828
@inline function wheel_index(n)
29-
d, r = divrem(n - 1, 30)
29+
d, r = Base.divrem(n - 1, 30)
3030
return 8d + wheel_indices[r+2]
3131
end
3232

test/perftests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# Copyright Peter Luschny. License is MIT.
33
# This file includes parts from Combinatorics.jl in modified form.
44

5-
# Version of: UTC 2019-11-20 15:32:42
6-
# 9c3f19d0-0ba2-11ea-197e-a72149f5f747
5+
# Version of: UTC 2019-11-20 16:16:21
6+
# b5886e90-0ba8-11ea-3954-fbbfdfaf7d72
77

88
# Do not edit this file, it is generated from the modules and will be overwritten!
99
# Edit the modules in the src directory and build this file with BuildSequences.jl!

test/runtests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# Copyright Peter Luschny. License is MIT.
33
# This file includes parts from Combinatorics.jl in modified form.
44

5-
# Version of: UTC 2019-11-20 15:32:42
6-
# 9c3c81c0-0ba2-11ea-27dc-d95019c24b4a
5+
# Version of: UTC 2019-11-20 16:16:21
6+
# b5864bb0-0ba8-11ea-0492-5f662c811653
77

88
# Do not edit this file, it is generated from the modules and will be overwritten!
99
# Edit the modules in the src directory and build this file with BuildSequences.jl!

0 commit comments

Comments
 (0)