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 b764d4e commit 81c1b29Copy full SHA for 81c1b29
lib/NonlinearSolveBase/src/linear_solve.jl
@@ -70,7 +70,7 @@ function construct_linear_solver(alg, linsolve, A, b, u; stats, kwargs...)
70
71
u_fixed = fix_incompatible_linsolve_arguments(A, b, u)
72
@bb u_cache = copy(u_fixed)
73
- linprob = LinearProblem(A, b; u0 = u_cache)
+ linprob = LinearProblem(A, b; u0 = u_cache, kwargs...)
74
# unlias here, we will later use these as caches
75
lincache = init(
76
linprob, linsolve; alias = LinearAliasSpecifier(alias_A = false, alias_b = false))
0 commit comments