Skip to content

Commit c6ec180

Browse files
authored
Rename to Ariadne (#30)
1 parent bb8c550 commit c6ec180

File tree

22 files changed

+53
-53
lines changed

22 files changed

+53
-53
lines changed

.github/workflows/Comment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ jobs:
1111
if: github.event_name == 'pull_request' && github.repository == github.event.pull_request.head.repo.full_name
1212
uses: thollander/actions-comment-pull-request@71efef56b184328c7ef1f213577c3a90edaa4aff
1313
with:
14-
message: 'Once the build has completed, you can preview your PR at this URL: https://vchuravy.dev/NewtonKrylov.jl/previews/PR${{ github.event.number }}/ in a couple of minutes.'
14+
message: 'Once the build has completed, you can preview your PR at this URL: https://vchuravy.dev/Ariadne.jl/previews/PR${{ github.event.number }}/ in a couple of minutes.'
1515
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/Documentation.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ jobs:
3131
run: |
3232
julia --project=docs -e '
3333
using Documenter: DocMeta, doctest
34-
using NewtonKrylov
35-
DocMeta.setdocmeta!(NewtonKrylov, :DocTestSetup, :(using NewtonKrylov); recursive=true)
36-
doctest(NewtonKrylov)
34+
using Ariadne
35+
DocMeta.setdocmeta!(Ariadne, :DocTestSetup, :(using Ariadne); recursive=true)
36+
doctest(Ariadne)
3737
'
3838
- name: generate docs
3939
run: julia --project=docs docs/make.jl

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name = "NewtonKrylov"
1+
name = "Ariadne"
22
uuid = "0be81120-40bf-4f8b-adf0-26103efb66f1"
33
authors = ["Valentin Churavy <[email protected]>"]
44
version = "0.1.0"

docs/Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ Krylov = "ba0b0d4f-ebba-5204-a429-3ac8c609bfb7"
77
KrylovPreconditioners = "45d422c2-293f-44ce-8315-2cb988662dec"
88
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
99
Literate = "98b081ad-f1c9-55d3-8b20-4c87d4299306"
10-
NewtonKrylov = "0be81120-40bf-4f8b-adf0-26103efb66f1"
10+
Ariadne = "0be81120-40bf-4f8b-adf0-26103efb66f1"
1111
OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
1212
PlutoStaticHTML = "359b1769-a58e-495b-9770-312e911026ad"
1313
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
1414
SummationByPartsOperators = "9f78cca6-572e-554e-b819-917d2f1cf240"
1515

1616
[sources]
17-
NewtonKrylov = {path = ".."}
17+
Ariadne = {path = ".."}

docs/make.jl

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
pushfirst!(LOAD_PATH, joinpath(@__DIR__, "..")) # add NewtonKrylov to environment stack
1+
pushfirst!(LOAD_PATH, joinpath(@__DIR__, "..")) # add Ariadne to environment stack
22

3-
using NewtonKrylov
3+
using Ariadne
44
using Documenter
55
import Documenter.Remotes: GitHub
66
using Literate
@@ -29,7 +29,7 @@ if get(ENV, "BUILD_DOCS_NOTEBOOKS", "true") == "true"
2929
end
3030

3131

32-
DocMeta.setdocmeta!(NewtonKrylov, :DocTestSetup, :(using NewtonKrylov); recursive = true)
32+
DocMeta.setdocmeta!(Ariadne, :DocTestSetup, :(using Ariadne); recursive = true)
3333

3434

3535
##
@@ -61,13 +61,13 @@ examples = [title => joinpath("generated", string(name, ".md")) for (title, name
6161
bib = CitationBibliography(joinpath(@__DIR__, "src", "refs.bib"))
6262

6363
makedocs(;
64-
modules = [NewtonKrylov],
64+
modules = [Ariadne],
6565
authors = "Valentin Churavy",
66-
repo = GitHub("vchuravy", "NewtonKrylov.jl"),
67-
sitename = "NewtonKrylov.jl",
66+
repo = GitHub("vchuravy", "Ariadne.jl"),
67+
sitename = "Ariadne.jl",
6868
format = Documenter.HTML(;
6969
prettyurls = get(ENV, "CI", "false") == "true",
70-
canonical = "https://vchuravy.dev/NewtonKrylov.jl",
70+
canonical = "https://vchuravy.dev/Ariadne.jl",
7171
assets = [
7272
asset(
7373
"https://plausible.io/js/plausible.js",
@@ -93,7 +93,7 @@ makedocs(;
9393
)
9494

9595
deploydocs(;
96-
repo = "github.com/vchuravy/NewtonKrylov.jl.git",
96+
repo = "github.com/vchuravy/Ariadne.jl.git",
9797
devbranch = "main",
9898
push_preview = true,
9999
)

docs/src/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# NewtonKrylov.jl
1+
# Ariadne.jl
22

33
Newton Method using Krylov.jl (montoison-orban-2023)[@cite]
44

@@ -12,15 +12,15 @@ newton_krylov
1212
### Parameters
1313

1414
```@docs
15-
NewtonKrylov.Forcing
16-
NewtonKrylov.Fixed
17-
NewtonKrylov.EisenstatWalker
15+
Ariadne.Forcing
16+
Ariadne.Fixed
17+
Ariadne.EisenstatWalker
1818
```
1919

2020
### Internal
2121

2222
```@docs
23-
NewtonKrylov.JacobianOperator
23+
Ariadne.JacobianOperator
2424
```
2525

2626
## Bibliography

docs/src/notebooks/Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[deps]
22
CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0"
33
Krylov = "ba0b0d4f-ebba-5204-a429-3ac8c609bfb7"
4-
NewtonKrylov = "0be81120-40bf-4f8b-adf0-26103efb66f1"
4+
Ariadne = "0be81120-40bf-4f8b-adf0-26103efb66f1"
55
OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
66
Pluto = "c3e4b0f8-55cb-11ea-2926-15256bba5781"
77
PlutoLinks = "0ff47ea0-7a50-410d-8455-4348d5de0420"
88
PlutoUI = "7f904dfe-b85e-4ff6-b463-dae2292396a8"
99
SummationByPartsOperators = "9f78cca6-572e-554e-b819-917d2f1cf240"
1010

1111
[sources]
12-
NewtonKrylov = {path = "../../.."}
12+
Ariadne = {path = "../../.."}

docs/src/notebooks/heat_1D_DG.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ begin
2828
end
2929

3030
# ╔═╡ 32e51b56-268b-11f0-2d27-f3a6d736affe
31-
@revise using NewtonKrylov
31+
@revise using Ariadne
3232

3333
# ╔═╡ 42460e8e-91ea-488f-9833-c660d26bad75
3434
using SummationByPartsOperators
@@ -37,7 +37,7 @@ using SummationByPartsOperators
3737
using LinearAlgebra
3838

3939
# ╔═╡ 5bffc041-0019-4f1f-9711-170b82f62926
40-
Implicit = @ingredients(joinpath(dirname(pathof(NewtonKrylov)), "../examples/implicit.jl"));
40+
Implicit = @ingredients(joinpath(dirname(pathof(Ariadne)), "../examples/implicit.jl"));
4141

4242
# ╔═╡ 493850fa-87db-452d-961a-26f92c88d18f
4343
md"""

docs/src/notebooks/heat_2d.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ begin
2828
end
2929

3030
# ╔═╡ 0d2ecac4-e987-408f-8ffe-50f8c935b93d
31-
@revise using NewtonKrylov
31+
@revise using Ariadne
3232

3333
# ╔═╡ 46f41bde-5d70-47a3-b010-8d1cfa02728e
3434
using Krylov
@@ -85,13 +85,13 @@ function diffusion!(du, u, (a, Δx, Δy, bc!), _)
8585
end
8686

8787
# ╔═╡ 91d3c59d-a144-4dd2-9e1f-d532c010f442
88-
HaloVectors = @ingredients(joinpath(dirname(pathof(NewtonKrylov)), "../examples/halovector.jl"))
88+
HaloVectors = @ingredients(joinpath(dirname(pathof(Ariadne)), "../examples/halovector.jl"))
8989

9090
# ╔═╡ 2031ff0e-3b8a-4b21-a49f-e661d810994f
9191
import .HaloVectors: HaloVector
9292

9393
# ╔═╡ 8aebcc1b-ac2b-40a5-9ca2-cbf3e24fdbb8
94-
Implicit = @ingredients(joinpath(dirname(pathof(NewtonKrylov)), "../examples/implicit.jl"));
94+
Implicit = @ingredients(joinpath(dirname(pathof(Ariadne)), "../examples/implicit.jl"));
9595

9696
# ╔═╡ 56354eaa-a634-45e1-9001-84c1d69f845f
9797
import .Implicit: jacobian, solve, G_Euler!

examples/Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ KernelAbstractions = "63c18a36-062a-441e-b654-da1e3ab1ce7c"
66
Krylov = "ba0b0d4f-ebba-5204-a429-3ac8c609bfb7"
77
KrylovPreconditioners = "45d422c2-293f-44ce-8315-2cb988662dec"
88
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
9-
NewtonKrylov = "0be81120-40bf-4f8b-adf0-26103efb66f1"
9+
Ariadne = "0be81120-40bf-4f8b-adf0-26103efb66f1"
1010
Observables = "510215fc-4207-5dde-b226-833fc4488ee2"
1111
OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
1212
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
1313
SummationByPartsOperators = "9f78cca6-572e-554e-b819-917d2f1cf240"
1414

1515
[sources]
16-
NewtonKrylov = {path = ".."}
16+
Ariadne = {path = ".."}

0 commit comments

Comments
 (0)