File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 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)
60726072function mods (b, a)
60736073b == 0 && return a
60746074h = a >> 1
6075- (q, r) = Nemo . divrem (b, a )
6075+ r = rem (b, a) # = rem(x, fmpz(c) )
60766076if h < r
60776077r -= a
60786078end
@@ -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)
Original file line number Diff line number Diff line change @@ -260,7 +260,8 @@ Return the least absolute remainder. mods uses the symmetric representation for
260260function 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
Original file line number Diff line number Diff 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"""
Original file line number Diff line number Diff line change 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!
Original file line number Diff line number Diff line change 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!
You can’t perform that action at this time.
0 commit comments