Skip to content

Commit

Permalink
Use semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Oct 7, 2022
1 parent 25f8524 commit 95d36a5
Show file tree
Hide file tree
Showing 34 changed files with 125 additions and 125 deletions.
4 changes: 2 additions & 2 deletions src/bicgstab.jl
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ and `false` otherwise.
#### Input arguments
* `A`: a linear operator that models a matrix of dimension n.
* `A`: a linear operator that models a matrix of dimension n;
* `b`: a vector of length n.
#### Output arguments
* `x`: a dense vector of length n.
* `x`: a dense vector of length n;
* `stats`: statistics collected on the run in a [`SimpleStats`](@ref) structure.
#### References
Expand Down
4 changes: 2 additions & 2 deletions src/bilq.jl
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ and `false` otherwise.
#### Input arguments
* `A`: a linear operator that models a matrix of dimension n.
* `A`: a linear operator that models a matrix of dimension n;
* `b`: a vector of length n.
#### Output arguments
* `x`: a dense vector of length n.
* `x`: a dense vector of length n;
* `stats`: statistics collected on the run in a [`SimpleStats`](@ref) structure.
#### References
Expand Down
8 changes: 4 additions & 4 deletions src/bilqr.jl
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ and `false` otherwise.
#### Input arguments
* `A`: a linear operator that models a matrix of dimension n.
* `b`: a vector of length n.
* `A`: a linear operator that models a matrix of dimension n;
* `b`: a vector of length n;
* `c`: a vector of length n.
#### Output arguments
* `x`: a dense vector of length n.
* `y`: a dense vector of length n.
* `x`: a dense vector of length n;
* `y`: a dense vector of length n;
* `stats`: statistics collected on the run in a [`AdjointStats`](@ref) structure.
#### Reference
Expand Down
4 changes: 2 additions & 2 deletions src/cg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ and `false` otherwise.
#### Input arguments
* `A`: a linear operator that models a Hermitian positive definite matrix of dimension n.
* `A`: a linear operator that models a Hermitian positive definite matrix of dimension n;
* `b`: a vector of length n.
#### Output arguments
* `x`: a dense vector of length n.
* `x`: a dense vector of length n;
* `stats`: statistics collected on the run in a [`SimpleStats`](@ref) structure.
#### Reference
Expand Down
4 changes: 2 additions & 2 deletions src/cg_lanczos.jl
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ and `false` otherwise.
#### Input arguments
* `A`: a linear operator that models a Hermitian matrix of dimension n.
* `A`: a linear operator that models a Hermitian matrix of dimension n;
* `b`: a vector of length n.
#### Output arguments
* `x`: a dense vector of length n.
* `x`: a dense vector of length n;
* `stats`: statistics collected on the run in a [`LanczosStats`](@ref) structure.
#### References
Expand Down
6 changes: 3 additions & 3 deletions src/cg_lanczos_shift.jl
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ and `false` otherwise.
#### Input arguments
* `A`: a linear operator that models a Hermitian matrix of dimension n.
* `b`: a vector of length n.
* `A`: a linear operator that models a Hermitian matrix of dimension n;
* `b`: a vector of length n;
* `shifts`: a vector of length nshifts.
#### Output arguments
* `x`: a vector of nshifts dense vectors, each one of length n.
* `x`: a vector of nshifts dense vectors, each one of length n;
* `stats`: statistics collected on the run in a [`LanczosShiftStats`](@ref) structure.
#### References
Expand Down
4 changes: 2 additions & 2 deletions src/cgls.jl
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ and `false` otherwise.
#### Input arguments
* `A`: a linear operator that models a matrix of dimension n × m.
* `A`: a linear operator that models a matrix of dimension n × m;
* `b`: a vector of length n.
#### Output arguments
* `x`: a dense vector of length m.
* `x`: a dense vector of length m;
* `stats`: statistics collected on the run in a [`SimpleStats`](@ref) structure.
#### References
Expand Down
4 changes: 2 additions & 2 deletions src/cgne.jl
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ and `false` otherwise.
#### Input arguments
* `A`: a linear operator that models a matrix of dimension n × m.
* `A`: a linear operator that models a matrix of dimension n × m;
* `b`: a vector of length n.
#### Output arguments
* `x`: a dense vector of length m.
* `x`: a dense vector of length m;
* `stats`: statistics collected on the run in a [`SimpleStats`](@ref) structure.
#### References
Expand Down
4 changes: 2 additions & 2 deletions src/cgs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ and `false` otherwise.
#### Input arguments
* `A`: a linear operator that models a matrix of dimension n.
* `A`: a linear operator that models a matrix of dimension n;
* `b`: a vector of length n.
#### Output arguments
* `x`: a dense vector of length n.
* `x`: a dense vector of length n;
* `stats`: statistics collected on the run in a [`SimpleStats`](@ref) structure.
#### Reference
Expand Down
4 changes: 2 additions & 2 deletions src/cr.jl
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ and `false` otherwise.
#### Input arguments
* `A`: a linear operator that models a Hermitian positive definite matrix of dimension n.
* `A`: a linear operator that models a Hermitian positive definite matrix of dimension n;
* `b`: a vector of length n.
#### Output arguments
* `x`: a dense vector of length n.
* `x`: a dense vector of length n;
* `stats`: statistics collected on the run in a [`SimpleStats`](@ref) structure.
#### References
Expand Down
6 changes: 3 additions & 3 deletions src/craig.jl
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,13 @@ and `false` otherwise.
#### Input arguments
* `A`: a linear operator that models a matrix of dimension n × m.
* `A`: a linear operator that models a matrix of dimension n × m;
* `b`: a vector of length n.
#### Output arguments
* `x`: a dense vector of length m.
* `y`: a dense vector of length n.
* `x`: a dense vector of length m;
* `y`: a dense vector of length n;
* `stats`: statistics collected on the run in a [`SimpleStats`](@ref) structure.
#### References
Expand Down
6 changes: 3 additions & 3 deletions src/craigmr.jl
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,13 @@ and `false` otherwise.
#### Input arguments
* `A`: a linear operator that models a matrix of dimension n × m.
* `A`: a linear operator that models a matrix of dimension n × m;
* `b`: a vector of length n.
#### Output arguments
* `x`: a dense vector of length m.
* `y`: a dense vector of length n.
* `x`: a dense vector of length m;
* `y`: a dense vector of length n;
* `stats`: statistics collected on the run in a [`SimpleStats`](@ref) structure.
#### References
Expand Down
4 changes: 2 additions & 2 deletions src/crls.jl
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ and `false` otherwise.
#### Input arguments
* `A`: a linear operator that models a matrix of dimension n × m.
* `A`: a linear operator that models a matrix of dimension n × m;
* `b`: a vector of length n.
#### Output arguments
* `x`: a dense vector of length m.
* `x`: a dense vector of length m;
* `stats`: statistics collected on the run in a [`SimpleStats`](@ref) structure.
#### Reference
Expand Down
4 changes: 2 additions & 2 deletions src/crmr.jl
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ and `false` otherwise.
#### Input arguments
* `A`: a linear operator that models a matrix of dimension n × m.
* `A`: a linear operator that models a matrix of dimension n × m;
* `b`: a vector of length n.
#### Output arguments
* `x`: a dense vector of length m.
* `x`: a dense vector of length m;
* `stats`: statistics collected on the run in a [`SimpleStats`](@ref) structure.
#### References
Expand Down
4 changes: 2 additions & 2 deletions src/diom.jl
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ and `false` otherwise.
#### Input arguments
* `A`: a linear operator that models a matrix of dimension n.
* `A`: a linear operator that models a matrix of dimension n;
* `b`: a vector of length n.
#### Output arguments
* `x`: a dense vector of length n.
* `x`: a dense vector of length n;
* `stats`: statistics collected on the run in a [`SimpleStats`](@ref) structure.
#### Reference
Expand Down
4 changes: 2 additions & 2 deletions src/dqgmres.jl
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ and `false` otherwise.
#### Input arguments
* `A`: a linear operator that models a matrix of dimension n.
* `A`: a linear operator that models a matrix of dimension n;
* `b`: a vector of length n.
#### Output arguments
* `x`: a dense vector of length n.
* `x`: a dense vector of length n;
* `stats`: statistics collected on the run in a [`SimpleStats`](@ref) structure.
#### Reference
Expand Down
4 changes: 2 additions & 2 deletions src/fgmres.jl
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ and `false` otherwise.
#### Input arguments
* `A`: a linear operator that models a matrix of dimension n.
* `A`: a linear operator that models a matrix of dimension n;
* `b`: a vector of length n.
#### Output arguments
* `x`: a dense vector of length n.
* `x`: a dense vector of length n;
* `stats`: statistics collected on the run in a [`SimpleStats`](@ref) structure.
#### Reference
Expand Down
4 changes: 2 additions & 2 deletions src/fom.jl
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ and `false` otherwise.
#### Input arguments
* `A`: a linear operator that models a matrix of dimension n.
* `A`: a linear operator that models a matrix of dimension n;
* `b`: a vector of length n.
#### Output arguments
* `x`: a dense vector of length n.
* `x`: a dense vector of length n;
* `stats`: statistics collected on the run in a [`SimpleStats`](@ref) structure.
#### Reference
Expand Down
4 changes: 2 additions & 2 deletions src/gmres.jl
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ and `false` otherwise.
#### Input arguments
* `A`: a linear operator that models a matrix of dimension n.
* `A`: a linear operator that models a matrix of dimension n;
* `b`: a vector of length n.
#### Output arguments
* `x`: a dense vector of length n.
* `x`: a dense vector of length n;
* `stats`: statistics collected on the run in a [`SimpleStats`](@ref) structure.
#### Reference
Expand Down
10 changes: 5 additions & 5 deletions src/gpmr.jl
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,15 @@ and `false` otherwise.
#### Input arguments
* `A`: a linear operator that models a matrix of dimension n × m.
* `B`: a linear operator that models a matrix of dimension m × n.
* `b`: a vector of length n.
* `A`: a linear operator that models a matrix of dimension n × m;
* `B`: a linear operator that models a matrix of dimension m × n;
* `b`: a vector of length n;
* `c`: a vector of length m.
#### Output arguments
* `x`: a dense vector of length n.
* `y`: a dense vector of length m.
* `x`: a dense vector of length n;
* `y`: a dense vector of length m;
* `stats`: statistics collected on the run in a [`SimpleStats`](@ref) structure.
#### Reference
Expand Down
Loading

0 comments on commit 95d36a5

Please sign in to comment.