Skip to content

Commit cd32d7d

Browse files
authored
Merge pull request #53 from WIAS-PDELib/jf/LinearSolve3
Jf/linear solve3
2 parents 4918c99 + 69c9943 commit cd32d7d

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
- Move AMGBuilder, ILUZeroBuilder etc. to the corresponding packages (depending on the PRs)
99
- remove "old" SparseMatrixLNK (need to benchmark before)
1010

11+
## [1.7.0] - 2025-02-06
12+
- Bump Pardiso to 1.0 and LinearSolve to 3.0
13+
1114
## [1.6.0] - 2024-11-10
1215
- Support precs API of LinearSolve.jl
1316

Project.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ExtendableSparse"
22
uuid = "95c220a8-a1cf-11e9-0c77-dbfce5f500b3"
33
authors = ["Juergen Fuhrmann <[email protected]>"]
4-
version = "1.6.0"
4+
version = "1.7.0"
55

66
[deps]
77
AMGCLWrap = "4f76b812-4ba5-496d-b042-d70715554288"
@@ -31,12 +31,12 @@ ExtendableSparseLinearSolveExt = "LinearSolve"
3131

3232
[compat]
3333
AMGCLWrap = "2"
34-
AlgebraicMultigrid = "0.4,0.5,0.6"
34+
AlgebraicMultigrid = "0.4, 0.5, 0.6"
3535
DocStringExtensions = "0.8, 0.9"
3636
ILUZero = "0.2"
3737
IncompleteLU = "^0.2.1"
38-
LinearSolve = "2.36.0"
39-
Pardiso = "0.5.1"
38+
LinearSolve = "2.36.0, 3"
39+
Pardiso = "0.5.1, 1"
4040
Sparspak = "0.3.6"
4141
StaticArrays = "1.5.24"
4242
julia = "1.9"

src/preconbuilders.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ struct RugeStubenPreconBuilder{Tk}
100100
end
101101

102102
function RugeStubenPreconBuilder(; blocksize = 1, kwargs...)
103-
return SmoothedAggregationPreconBuilder(blocksize, kwargs)
103+
return RugeStubenPreconBuilder(blocksize, kwargs)
104104
end
105105

106106
(::RugeStubenPreconBuilder)(A, p) = error("import AlgebraicMultigrid in order to use RugeStubenAMGBuilder")

0 commit comments

Comments
 (0)