Skip to content

Commit b58b764

Browse files
committed
typo, struct should be mutable
1 parent 9456f60 commit b58b764

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/NonlinearSolveBase/src/verbosity.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ nonlinear_verbosity_defaults = Dict(
99
:sparsity_using_jac_prototype => Verbosity.Warn(),
1010
:sparse_matrixcolorings_not_loaded => Verbosity.Warn(),
1111
:alias_u0_immutable => Verbosity.Warn(),
12-
:linsovle_failed_noncurrent => Verbosity.Warn(),
12+
:linsolve_failed_noncurrent => Verbosity.Warn(),
1313
:jacobian_free => Verbosity.Warn(),
1414
:termination_condition => Verbosity.Warn(),
1515
:threshold_state => Verbosity.Warn(),
1616
:pinv_undefined => Verbosity.Warn()
1717
)
1818

1919

20-
struct NonlinearErrorControlVerbosity
20+
mutable struct NonlinearErrorControlVerbosity
2121
immutable_u0::Verbosity.Type
2222
non_enclosing_interval::Verbosity.Type
2323
non_forward_mode::Verbosity.Type
@@ -64,7 +64,7 @@ function NonlinearErrorControlVerbosity(verbose::Verbosity.Type)
6464
end
6565
end
6666

67-
struct NonlinearPerformanceVerbosity
67+
mutable struct NonlinearPerformanceVerbosity
6868
colorvec_non_sparse::Verbosity.Type
6969
colorvec_no_prototype::Verbosity.Type
7070
sparsity_using_jac_prototype::Verbosity.Type

0 commit comments

Comments
 (0)