Skip to content

Commit bb26df5

Browse files
committed
TestSet
1 parent 5e92740 commit bb26df5

50 files changed

Lines changed: 24420 additions & 10954 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
Manifest.toml
22
local/*
33
docs/build/*
4-
.vscode/*
5-
integersequences.code-workspace
4+
.vsc/*
65
data/A123456.json
76
data/b000290.txt
7+
demos/.ipynb_checkpoints
8+

Project.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ version = "0.3.0-dev"
44

55
[deps]
66
Atom = "c52e3926-4ff0-5f6e-af25-54175e0327b1"
7-
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
87
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
98
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
109
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
@@ -17,5 +16,5 @@ Nemo = "2edaba10-b0f1-5616-af89-8c11ac63239a"
1716
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1817

1918
[compat]
20-
Nemo = ">= 0.15.1"
21-
julia = ">= 1.2.0"
19+
Nemo = ">= 0.16.2"
20+
julia = ">= 1.3.1"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ I | Iteration (over n terms)
2222
L | List (array based)
2323
M | Matrix (2-dim square)
2424
R | Real function (Float64)
25-
P | Polynomial (univariate over ZZ)
25+
P | Polynomial (univariate over )
2626
S | Staircase (list iteration)
2727
T | Triangle (list iteration)
2828
V | Value (single term)
@@ -62,7 +62,7 @@ L000045(n) = coefficients(G000045, n)
6262
* Return the ``n``-th Fibonacci number.
6363
```
6464
function V000045(n)
65-
F = ZZ[1 1; 1 0]
65+
F = [1 1; 1 0]
6666
Fn = F^n
6767
Fn[2, 1]
6868
end

data/stripped

Lines changed: 16104 additions & 4897 deletions
Large diffs are not rendered by default.

demos/SequencesDemo.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Turán graph T(2n, n) for n = 20.")
7373
g = V033815(20)
7474
println(g)
7575

76-
println("\nThe binomial function defined for all ZZ.
76+
println("\nThe binomial function defined for all fmpz.
7777
The same way as Maple and Mathematica compute the binomial.
7878
First the familiar Pascal case:")
7979
for n in 0:8

0 commit comments

Comments
 (0)