File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
lib/NonlinearSolveBase/src Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -307,7 +307,7 @@ SciMLBase.isinplace(cache::AbstractNonlinearSolveCache) = SciMLBase.isinplace(ca
307
307
# # SII Interface
308
308
SII. symbolic_container (cache:: AbstractNonlinearSolveCache ) = cache. prob
309
309
SII. parameter_values (cache:: AbstractNonlinearSolveCache ) = SII. parameter_values (cache. prob)
310
- SII. state_values (cache:: AbstractNonlinearSolveCache ) = SII . state_values (cache. prob )
310
+ SII. state_values (cache:: AbstractNonlinearSolveCache ) = get_u (cache)
311
311
312
312
function Base. getproperty (cache:: AbstractNonlinearSolveCache , sym:: Symbol )
313
313
if sym === :ps
Original file line number Diff line number Diff line change 64
64
function SII. symbolic_container (cache:: NonlinearSolvePolyAlgorithmCache )
65
65
return cache. caches[cache. current]
66
66
end
67
- SII. state_values (cache:: NonlinearSolvePolyAlgorithmCache ) = cache . u0
67
+ SII. state_values (cache:: NonlinearSolvePolyAlgorithmCache ) = SII . state_values (SII . symbolic_container (cache))
68
68
69
69
function Base. show (io:: IO , :: MIME"text/plain" , cache:: NonlinearSolvePolyAlgorithmCache )
70
70
println (io, " NonlinearSolvePolyAlgorithmCache with \
You can’t perform that action at this time.
0 commit comments