Skip to content

Commit 1f4c383

Browse files
committed
make sure that LinearVerbosity is passed to linsolve
1 parent f9f48ce commit 1f4c383

File tree

1 file changed

+1
-1
lines changed
  • lib/NonlinearSolveFirstOrder/src

1 file changed

+1
-1
lines changed

lib/NonlinearSolveFirstOrder/src/solve.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ function SciMLBase.__init(
158158
abstol, reltol, termination_cache = NonlinearSolveBase.init_termination_cache(
159159
prob, abstol, reltol, fu, u, termination_condition, Val(:regular)
160160
)
161-
linsolve_kwargs = merge((; abstol, reltol), linsolve_kwargs)
161+
linsolve_kwargs = merge((; verbose = verbose.linear_verbosity, abstol, reltol), linsolve_kwargs)
162162

163163
jac_cache = NonlinearSolveBase.construct_jacobian_cache(
164164
prob, alg, prob.f, fu, u, prob.p;

0 commit comments

Comments
 (0)