Skip to content

Commit c83bf11

Browse files
format and release
1 parent 6a4fb34 commit c83bf11

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "LinearSolve"
22
uuid = "7ed4a6bd-45f5-4d41-b270-4a48e9bafcae"
33
authors = ["SciML"]
4-
version = "1.39.0"
4+
version = "1.40.0"
55

66
[deps]
77
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"

ext/LinearSolveHYPRE.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,8 @@ function SciMLBase.solve(cache::LinearCache, alg::HYPREAlgorithm, args...; kwarg
203203
stats = nothing
204204

205205
ret = SciMLBase.LinearSolution{T, N, typeof(cache.u), typeof(resid), typeof(alg),
206-
typeof(cache), typeof(stats)}(cache.u, resid, alg, retc, iters, cache, stats)
206+
typeof(cache), typeof(stats)}(cache.u, resid, alg, retc,
207+
iters, cache, stats)
207208

208209
return ret
209210
end

src/factorization.jl

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ function do_factorization(alg::QRFactorization, A, b, u)
100100
end
101101

102102
function init_cacheval(alg::QRFactorization, A, b, u, Pl, Pr,
103-
maxiters::Int, abstol, reltol, verbose::Bool,
104-
assumptions::OperatorAssumptions)
103+
maxiters::Int, abstol, reltol, verbose::Bool,
104+
assumptions::OperatorAssumptions)
105105
ArrayInterface.qr_instance(convert(AbstractMatrix, A))
106106
end
107107

@@ -121,8 +121,8 @@ function do_factorization(alg::SVDFactorization, A, b, u)
121121
end
122122

123123
function init_cacheval(alg::SVDFactorization, A, b, u, Pl, Pr,
124-
maxiters::Int, abstol, reltol, verbose::Bool,
125-
assumptions::OperatorAssumptions)
124+
maxiters::Int, abstol, reltol, verbose::Bool,
125+
assumptions::OperatorAssumptions)
126126
ArrayInterface.svd_instance(convert(AbstractMatrix, A))
127127
end
128128

@@ -266,7 +266,8 @@ function init_cacheval(alg::GenericFactorization{typeof(svd!)}, A::Diagonal, b,
266266
assumptions::OperatorAssumptions)
267267
Diagonal(inv.(A.diag))
268268
end
269-
function init_cacheval(alg::GenericFactorization{typeof(svd!)}, A::Tridiagonal, b, u, Pl, Pr,
269+
function init_cacheval(alg::GenericFactorization{typeof(svd!)}, A::Tridiagonal, b, u, Pl,
270+
Pr,
270271
maxiters::Int, abstol, reltol, verbose::Bool,
271272
assumptions::OperatorAssumptions)
272273
ArrayInterface.svd_instance(A)

0 commit comments

Comments
 (0)