Skip to content

Commit 5e92740

Browse files
committed
tsw
1 parent 1380022 commit 5e92740

6 files changed

Lines changed: 9 additions & 26 deletions

File tree

src/ForcePrecompile.jl

Lines changed: 0 additions & 14 deletions
This file was deleted.

src/IntegerSequences.jl

Lines changed: 3 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 20:06:49
6-
# e79974de-0bc8-11ea-1c7f-9dbad37f118f
5+
# Version of: UTC 2019-11-20 20:53:18
6+
# 65e31c60-0bcf-11ea-3f09-55382484136f
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!
@@ -6072,7 +6072,7 @@ $(SIGNATURES)
60726072
function mods(b, a)
60736073
b == 0 && return a
60746074
h = a >> 1
6075-
(q, r) = Nemo.divrem(b, a)
6075+
r = rem(b, a) # = rem(x, fmpz(c))
60766076
if h < r
60776077
r -= a
60786078
end
@@ -8329,8 +8329,6 @@ Valid prefixes to the numerical part of the OEIS A-numbers.
83298329
* R => RealFunction (Float64)
83308330
* S => Staircase (list iteration)
83318331
* T => Triangle (list iteration)
8332-
* TL => Triangle (triangular array, list of rows)
8333-
* TF => Triangle (flat-list array)
83348332
* V => Value (single term)
83358333
* is => is a (predicate), boolean
83368334
$(SIGNATURES)

src/NumberTheory.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,8 @@ Return the least absolute remainder. mods uses the symmetric representation for
260260
function mods(b, a)
261261
b == 0 && return a
262262
h = a >> 1
263-
(q, r) = Nemo.divrem(b, a)
263+
#(q, r) = Nemo.divrem(b, a)
264+
r = rem(b, a) # = rem(x, fmpz(c))
264265
if h < r
265266
r -= a
266267
end

src/SeqUtils.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,6 @@ Valid prefixes to the numerical part of the OEIS A-numbers.
123123
* R => RealFunction (Float64)
124124
* S => Staircase (list iteration)
125125
* T => Triangle (list iteration)
126-
* TL => Triangle (triangular array, list of rows)
127-
* TF => Triangle (flat-list array)
128126
* V => Value (single term)
129127
* is => is a (predicate), boolean
130128
"""

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 20:06:49
6-
# e7a00492-0bc8-11ea-1182-4f2506750a18
5+
# Version of: UTC 2019-11-20 20:53:18
6+
# 65e9d320-0bcf-11ea-2f80-1180fa83a4ff
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 20:06:49
6-
# e79dbaa0-0bc8-11ea-0ebd-cbcb206733a7
5+
# Version of: UTC 2019-11-20 20:53:18
6+
# 65e4f120-0bcf-11ea-0a20-2f5fc9134504
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)