File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed
lib/NonlinearSolveBase/src Expand file tree Collapse file tree 3 files changed +8
-4
lines changed 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 ) = SII. state_values (SII. symbolic_container (cache))
67
+ function SII. state_values (cache:: NonlinearSolvePolyAlgorithmCache )
68
+ SII. state_values (SII. symbolic_container (cache))
69
+ end
68
70
69
71
function Base. show (io:: IO , :: MIME"text/plain" , cache:: NonlinearSolvePolyAlgorithmCache )
70
72
println (io, " NonlinearSolvePolyAlgorithmCache with \
Original file line number Diff line number Diff line change 103
103
return Expr (:block , calls... )
104
104
end
105
105
106
- function SciMLBase. __solve (prob:: AbstractNonlinearProblem , alg:: NonlinearSolvePolyAlgorithm ,
106
+ function SciMLBase. __solve (
107
+ prob:: AbstractNonlinearProblem , alg:: NonlinearSolvePolyAlgorithm ,
107
108
args... ; kwargs... )
108
- __generated_polysolve (prob, alg, args... ; kwargs... )
109
+ __generated_polysolve (prob, alg, args... ; kwargs... )
109
110
end
110
111
111
112
@generated function __generated_polysolve (
Original file line number Diff line number Diff line change 13
13
14
14
@testset " $integtype " for (alg, integtype) in [
15
15
(NewtonRaphson (), NonlinearSolveFirstOrder. GeneralizedFirstOrderAlgorithmCache),
16
- (FastShortcutNonlinearPolyalg (), NonlinearSolveBase. NonlinearSolvePolyAlgorithmCache),
16
+ (FastShortcutNonlinearPolyalg (),
17
+ NonlinearSolveBase. NonlinearSolvePolyAlgorithmCache),
17
18
(SimpleNewtonRaphson (), NonlinearSolveBase. NonlinearSolveNoInitCache)
18
19
]
19
20
nint = init (nlprob, alg)
You can’t perform that action at this time.
0 commit comments