@@ -1130,23 +1130,23 @@ function get_concrete_problem(prob::AbstractJumpProblem, isadapt; kwargs...)
1130
1130
end
1131
1131
1132
1132
function get_concrete_problem (prob:: SteadyStateProblem , isadapt; kwargs... )
1133
- u0 = get_concrete_u0 (prob, isadapt, Inf , kwargs)
1134
- u0 = promote_u0 (u0, prob. p, nothing )
1135
1133
p = get_concrete_p (prob, kwargs)
1134
+ u0 = get_concrete_u0 (prob, isadapt, Inf , kwargs)
1135
+ u0 = promote_u0 (u0, p, nothing )
1136
1136
remake (prob; u0 = u0, p = p)
1137
1137
end
1138
1138
1139
1139
function get_concrete_problem (prob:: NonlinearProblem , isadapt; kwargs... )
1140
- u0 = get_concrete_u0 (prob, isadapt, nothing , kwargs)
1141
- u0 = promote_u0 (u0, prob. p, nothing )
1142
1140
p = get_concrete_p (prob, kwargs)
1141
+ u0 = get_concrete_u0 (prob, isadapt, nothing , kwargs)
1142
+ u0 = promote_u0 (u0, p, nothing )
1143
1143
remake (prob; u0 = u0, p = p)
1144
1144
end
1145
1145
1146
1146
function get_concrete_problem (prob:: NonlinearLeastSquaresProblem , isadapt; kwargs... )
1147
- u0 = get_concrete_u0 (prob, isadapt, nothing , kwargs)
1148
- u0 = promote_u0 (u0, prob. p, nothing )
1149
1147
p = get_concrete_p (prob, kwargs)
1148
+ u0 = get_concrete_u0 (prob, isadapt, nothing , kwargs)
1149
+ u0 = promote_u0 (u0, p, nothing )
1150
1150
remake (prob; u0 = u0, p = p)
1151
1151
end
1152
1152
0 commit comments