Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
- Move AMGBuilder, ILUZeroBuilder etc. to the corresponding packages (depending on the PRs)
- remove "old" SparseMatrixLNK (need to benchmark before)

## [1.7.0] - 2025-02-06
- Bump Pardiso to 1.0 and LinearSolve to 3.0

## [1.6.0] - 2024-11-10
- Support precs API of LinearSolve.jl

Expand Down
8 changes: 4 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ExtendableSparse"
uuid = "95c220a8-a1cf-11e9-0c77-dbfce5f500b3"
authors = ["Juergen Fuhrmann <juergen.fuhrmann@wias-berlin.de>"]
version = "1.6.0"
version = "1.7.0"

[deps]
AMGCLWrap = "4f76b812-4ba5-496d-b042-d70715554288"
Expand Down Expand Up @@ -31,12 +31,12 @@ ExtendableSparseLinearSolveExt = "LinearSolve"

[compat]
AMGCLWrap = "2"
AlgebraicMultigrid = "0.4,0.5,0.6"
AlgebraicMultigrid = "0.4, 0.5, 0.6"
DocStringExtensions = "0.8, 0.9"
ILUZero = "0.2"
IncompleteLU = "^0.2.1"
LinearSolve = "2.36.0"
Pardiso = "0.5.1"
LinearSolve = "2.36.0, 3"
Pardiso = "0.5.1, 1"
Sparspak = "0.3.6"
StaticArrays = "1.5.24"
julia = "1.9"
2 changes: 1 addition & 1 deletion src/preconbuilders.jl
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ struct RugeStubenPreconBuilder{Tk}
end

function RugeStubenPreconBuilder(; blocksize = 1, kwargs...)
return SmoothedAggregationPreconBuilder(blocksize, kwargs)
return RugeStubenPreconBuilder(blocksize, kwargs)
end

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