Skip to content

Commit 8643431

Browse files
committed
Use correct __solve in collocation
1 parent 83b18fe commit 8643431

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/BoundaryValueDiffEqFIRK/src/collocation.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ end
103103
K = get_tmp(k_discrete[i], u)
104104

105105
_nestprob = remake(nest_prob, p = nestprob_p)
106-
nestsol = solve(_nestprob, nest_nlsolve_alg; alg.nested_nlsolve_kwargs...)
106+
nestsol = __solve(_nestprob, nest_nlsolve_alg; alg.nested_nlsolve_kwargs...)
107107
@. K = nestsol.u
108108
@. residᵢ = yᵢ₊₁ - yᵢ
109109
__maybe_matmul!(residᵢ, nestsol.u, b, -h, T(1))
@@ -179,7 +179,7 @@ end
179179
nestprob_p[3:end] = yᵢ
180180

181181
_nestprob = remake(nest_prob, p = nestprob_p)
182-
nestsol = solve(_nestprob, nest_nlsolve_alg; alg.nested_nlsolve_kwargs...)
182+
nestsol = __solve(_nestprob, nest_nlsolve_alg; alg.nested_nlsolve_kwargs...)
183183

184184
@. residᵢ = yᵢ₊₁ - yᵢ
185185
__maybe_matmul!(residᵢ, nestsol.u, b, -h, T(1))

0 commit comments

Comments
 (0)