We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 659924b commit d900f7cCopy full SHA for d900f7c
src/factorizations/blockpreconditioner.jl
@@ -112,7 +112,7 @@ from partition of unknowns.
112
113
- `precs(A,p)` shall return a left precondioner for a matrix block.
114
"""
115
-Base.@kwdef struct BlockPreconBuilder
+Base.@kwdef mutable struct BlockPreconBuilder
116
precs=UMFPACKPreconBuilder()
117
partitioning= A -> [1:size(A,1)]
118
end
src/preconbuilders.jl
@@ -26,7 +26,7 @@ struct JacobiPreconBuilder end
26
Return callable object constructing a left zero fill-in ILU preconditioner
27
using [ILUZero.jl](https://github.com/mcovalt/ILUZero.jl)
28
29
-Base.@kwdef struct ILUZeroPreconBuilder
+Base.@kwdef mutable struct ILUZeroPreconBuilder
30
blocksize::Int = 1
31
32
0 commit comments