Skip to content

Commit 7441a95

Browse files
committed
renaming
1 parent 20cb48e commit 7441a95

58 files changed

Lines changed: 94 additions & 96 deletions

Some content is hidden

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

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
MIT License
1+
# MIT License
22

33
Copyright (c) 2019 OpenLibMathSeq / Peter Luschny
44

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name = "Sequences"
1+
name = "IntegerSequences"
22
uuid = "b4b868b0-69a7-11e9-2db0-173b4e8e576c"
33
version = "0.1.0"
44

demos/SequencesDemo.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
module SequencesDemo
44

5-
using Sequences
5+
using IntegerSequences
66

77
println("\nProduct 1*2*3")
88
p = ([1, 2, 3])

demos/SequencesIntro.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"metadata": {},
66
"source": [
77
"<html> <h1 style=\"color:brown;line-height:1.5;text-align:center;\">\n",
8-
"Introduction to <a href=\"https://github.com/OpenLibMathSeq/Sequences\">Sequences</a>.</h1> \n",
8+
"Introduction to <a href=\"https://github.com/OpenLibMathSeq/IntegerSequences\">IntegerSequences</a>.</h1> \n",
99
"<p style=\"text-align:center;color:brown\">A Jupyter notebook for the Julia kernel.</p>"
1010
]
1111
},
@@ -27,7 +27,7 @@
2727
}
2828
],
2929
"source": [
30-
"using Sequences"
30+
"using IntegerSequences"
3131
]
3232
},
3333
{

demos/bfile.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function write_oeis_bfile(anum, range, seq, comments, targetdir)
2828
close(file)
2929
end
3030

31-
path = "C:/Users/Home/JuliaProjects/Sequences/data"
31+
path = "C:/Users/Home/JuliaProjects/IntegerSequences/data"
3232

3333
# Example use:
3434
comments = ["Author: Julia Verona",

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ name = "Sequences-docs"
44
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
55

66
[compat]
7-
Documenter = "~0.21"
7+
Documenter = "~0.23"

docs/make.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
push!(LOAD_PATH, "../src/")
22

3-
using Documenter, Sequences
3+
using Documenter, IntegerSequences
44

55
makedocs(
6-
modules = [Sequences],
6+
modules = [IntegerSequences],
77
clean = true,
88
doctest = false,
99
format = Documenter.HTML(prettyurls = get(ENV, "CI", nothing) == "true"),
10-
sitename = "Sequences",
10+
sitename = "IntegerSequences",
1111
pages = [
1212
"About" => "about.md",
1313
"Sequences" => "index.md",
@@ -21,5 +21,5 @@ makedocs(
2121
)
2222

2323
deploydocs(
24-
repo = "github.com/OpenLibMathSeq/Sequences.jl.git"
24+
repo = "github.com/OpenLibMathSeq/IntegerSequences.jl.git"
2525
)

docs/src/about.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# About
22

3-
![Sequences](SequencesLogo.jpg)
3+
![IntegerSequences](SequencesLogo.jpg)
44

5-
**A Julia module implementing mathematical sequences**
5+
**A Julia module implementing mathematical integer sequences**
66

77
Build a Julia library for studying mathematical integer sequences. To this goal the library should:
88

9-
* Identify general methods used in generating integer sequences and provide reference implementations for important classes.
9+
* Identify general methods used in generating integer sequences and provide reference implementations for important classes.
1010

1111
* Provide a set of classical sequence-to-sequence, sequence-to-triangle and triangle-to-sequence transformations.
1212

docs/src/developerguide.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ conventions must be adhered to.
1616
## Module format
1717

1818
```
19-
# This file is part of Sequences.
19+
# This file is part of IntegerSequences.
2020
# Copyright Name. License is MIT.
2121
2222
(@__DIR__) ∉ LOAD_PATH && push!(LOAD_PATH, (@__DIR__))
@@ -58,17 +58,17 @@ The package is build by executing BuildSequences.jl.
5858
This will pars the individual module files and
5959
recombine and distribute their content into three new files:
6060

61-
* Sequences.jl
61+
* IntegerSequences.jl
6262
* runtests.jl
6363
* perftests.jl
6464

6565
The functions in the module which come before the line starting with
66-
"#START-TEST" will be copied to Sequences.jl, the function test() will be
66+
"#START-TEST" will be copied to IntegerSequences.jl, the function test() will be
6767
copied to runtests.jl, and the function perf() will be copied to perftests.jl.
6868
Everything else will be discarded.
6969

70-
In particular: Do not edit Sequences.jl, it is generated from the modules and will be overwritten! Instead edit the modules in the 'src' directory. These modules can and
71-
should be tested standalone. Only construct Sequences.jl with BuildSequences.jl
70+
In particular: Do not edit IntegerSequences.jl, it is generated from the modules and will be overwritten! Instead edit the modules in the 'src' directory. These modules can and
71+
should be tested standalone. Only construct IntegerSequences.jl with BuildSequences.jl
7272
in a final step.
7373

7474

docs/src/license.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# License
22

3-
Sequences is a Julia package implementing mathematical integer
4-
sequences.
3+
IntegerSequences is a Julia package implementing mathematical integer sequences.
54

65
Copyright (c) 2019 Peter Luschny / OpenLibMathSeq
76

0 commit comments

Comments
 (0)