Skip to content

Commit aa7088f

Browse files
committed
these don't really need to be mutable
1 parent 45243ce commit aa7088f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/verbosity.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const linear_defaults = Dict{Symbol, Verbosity.Type}(
1010
:KrylovJL_verbosity => Verbosity.None(),
1111
:HYPRE_verbosity => Verbosity.Level(1)
1212
)
13-
mutable struct LinearErrorControlVerbosity
13+
struct LinearErrorControlVerbosity
1414
default_lu_fallback::Verbosity.Type
1515

1616
function LinearErrorControlVerbosity(;
@@ -41,7 +41,7 @@ mutable struct LinearErrorControlVerbosity
4141
end
4242
end
4343

44-
mutable struct LinearPerformanceVerbosity
44+
struct LinearPerformanceVerbosity
4545
no_right_preconditioning::Verbosity.Type
4646

4747
function LinearPerformanceVerbosity(;
@@ -72,7 +72,7 @@ mutable struct LinearPerformanceVerbosity
7272
end
7373
end
7474

75-
mutable struct LinearNumericalVerbosity
75+
struct LinearNumericalVerbosity
7676
using_IterativeSolvers::Verbosity.Type
7777
IterativeSolvers_iterations::Verbosity.Type
7878
KrylovKit_verbosity::Verbosity.Type

0 commit comments

Comments
 (0)