Skip to content

Commit

Permalink
Update tutorials
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Apr 20, 2021
1 parent 7971d16 commit bfc6227
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions docs/src/tutorials/ln.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
```@example ln1
using qr_mumps, LinearAlgebra, SparseArrays, Printf
using QRMumps, LinearAlgebra, SparseArrays, Printf
irn = [1, 1, 1, 2, 2, 2, 3, 3, 4, 4, 5, 5, 5]
jcn = [3, 5, 7, 1, 4, 6, 2, 6, 5, 6, 3, 4, 7]
Expand All @@ -22,7 +22,7 @@ residual_norm = norm(A * x - b)
```

```@example ln2
using qr_mumps, LinearAlgebra, SparseArrays, Printf
using QRMumps, LinearAlgebra, SparseArrays, Printf
irn = [1, 1, 1, 2, 2, 2, 3, 3, 4, 4, 5, 5, 5]
jcn = [3, 5, 7, 1, 4, 6, 2, 6, 5, 6, 3, 4, 7]
Expand Down Expand Up @@ -50,7 +50,7 @@ residual_norm = norm(A * x - b)
```

```@example ln3
using qr_mumps, LinearAlgebra, SparseArrays, Printf
using QRMumps, LinearAlgebra, SparseArrays, Printf
irn = [1, 1, 1, 2, 2, 2, 3, 3, 4, 4, 5, 5, 5]
jcn = [3, 5, 7, 1, 4, 6, 2, 6, 5, 6, 3, 4, 7]
Expand Down
6 changes: 3 additions & 3 deletions docs/src/tutorials/ls.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
```@example ls1
using qr_mumps, LinearAlgebra, SparseArrays, Printf
using QRMumps, LinearAlgebra, SparseArrays, Printf
irn = [1, 1, 1, 2, 3, 3, 4, 4, 5, 5, 6, 7, 7]
jcn = [1, 3, 5, 2, 3, 5, 1, 4, 4, 5, 2, 1, 3]
Expand All @@ -23,7 +23,7 @@ optimality_residual_norm = norm(A' * r)
```

```@example ls2
using qr_mumps, LinearAlgebra, SparseArrays, Printf
using QRMumps, LinearAlgebra, SparseArrays, Printf
irn = [1, 1, 1, 2, 3, 3, 4, 4, 5, 5, 6, 7, 7]
jcn = [1, 3, 5, 2, 3, 5, 1, 4, 4, 5, 2, 1, 3]
Expand Down Expand Up @@ -52,7 +52,7 @@ optimality_residual_norm = norm(A' * r)
```

```@example ls3
using qr_mumps, LinearAlgebra, SparseArrays, Printf
using QRMumps, LinearAlgebra, SparseArrays, Printf
irn = [1, 1, 1, 2, 3, 3, 4, 4, 5, 5, 6, 7, 7]
jcn = [1, 3, 5, 2, 3, 5, 1, 4, 4, 5, 2, 1, 3]
Expand Down
12 changes: 6 additions & 6 deletions docs/src/tutorials/spd.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
```@example spd1
using qr_mumps, LinearAlgebra, SparseArrays, Printf
using QRMumps, LinearAlgebra, SparseArrays, Printf
irn = [1, 1, 1, 1, 2, 3, 3, 4, 4, 5]
jcn = [1, 3, 4, 5, 2, 3, 5, 4, 5, 5]
Expand All @@ -22,7 +22,7 @@ residual_norm = norm(A * x - b)
```

```@example spd2
using qr_mumps, LinearAlgebra, SparseArrays, Printf
using QRMumps, LinearAlgebra, SparseArrays, Printf
irn = [1, 2, 1, 2, 3, 2, 3, 4, 3, 4, 5, 4, 5]
jcn = [1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 5, 5]
Expand All @@ -46,7 +46,7 @@ residual_norm = norm(A * x - b)
```

```@example spd3
using qr_mumps, LinearAlgebra, SparseArrays, Printf
using QRMumps, LinearAlgebra, SparseArrays, Printf
irn = [1, 3, 4, 5, 2, 3, 5, 4, 5, 5]
jcn = [1, 1, 1, 1, 2, 3, 3, 4, 4, 5]
Expand Down Expand Up @@ -74,7 +74,7 @@ residual_norm = norm(A * x - b)
```

```@example spd4
using qr_mumps, LinearAlgebra, SparseArrays, Printf
using QRMumps, LinearAlgebra, SparseArrays, Printf
irn = [1, 2, 1, 2, 3, 2, 3, 4, 3, 4, 5, 4, 5]
jcn = [1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 5, 5]
Expand Down Expand Up @@ -103,7 +103,7 @@ residual_norm = norm(A * x - b)
```

```@example spd5
using qr_mumps, LinearAlgebra, SparseArrays, Printf
using QRMumps, LinearAlgebra, SparseArrays, Printf
irn = [1, 2, 2, 3, 3, 3]
jcn = [1, 1, 2, 1, 2, 3]
Expand Down Expand Up @@ -133,7 +133,7 @@ residual_norm = norm(A * x - b)
```

```@example spd6
using qr_mumps, LinearAlgebra, SparseArrays, Printf
using QRMumps, LinearAlgebra, SparseArrays, Printf
irn = [1, 1, 1, 2, 2, 3]
jcn = [1, 2, 3, 2, 3, 3]
Expand Down

2 comments on commit bfc6227

@amontoison
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/34760

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.0 -m "<description of version>" bfc6227302e61f9d94199745f7884940f9db9c51
git push origin v0.1.0

Please sign in to comment.