@@ -141,7 +141,7 @@ function CMINPACK(; show_trace = missing, tracing = missing, method::Symbol = :a
141
141
Base. depwarn (" `show_trace` for CMINPACK has been deprecated and will be removed \
142
142
in v4. Use the `show_trace` keyword argument via the logging API \
143
143
https://docs.sciml.ai/NonlinearSolve/stable/basics/Logging/ \
144
- instead." )
144
+ instead." , :CMINPACK )
145
145
else
146
146
show_trace = false
147
147
end
@@ -150,7 +150,7 @@ function CMINPACK(; show_trace = missing, tracing = missing, method::Symbol = :a
150
150
Base. depwarn (" `tracing` for CMINPACK has been deprecated and will be removed \
151
151
in v4. Use the `store_trace` keyword argument via the logging API \
152
152
https://docs.sciml.ai/NonlinearSolve/stable/basics/Logging/ \
153
- instead." )
153
+ instead." , :CMINPACK )
154
154
else
155
155
tracing = false
156
156
end
@@ -219,7 +219,7 @@ function NLsolveJL(; method = :trust_region, autodiff = :central, store_trace =
219
219
Base. depwarn (" `show_trace` for NLsolveJL has been deprecated and will be removed \
220
220
in v4. Use the `show_trace` keyword argument via the logging API \
221
221
https://docs.sciml.ai/NonlinearSolve/stable/basics/Logging/ \
222
- instead." )
222
+ instead." , :NLsolveJL )
223
223
else
224
224
show_trace = false
225
225
end
@@ -228,7 +228,7 @@ function NLsolveJL(; method = :trust_region, autodiff = :central, store_trace =
228
228
Base. depwarn (" `store_trace` for NLsolveJL has been deprecated and will be removed \
229
229
in v4. Use the `store_trace` keyword argument via the logging API \
230
230
https://docs.sciml.ai/NonlinearSolve/stable/basics/Logging/ \
231
- instead." )
231
+ instead." , :NLsolveJL )
232
232
else
233
233
store_trace = false
234
234
end
@@ -237,7 +237,8 @@ function NLsolveJL(; method = :trust_region, autodiff = :central, store_trace =
237
237
Base. depwarn (" `extended_trace` for NLsolveJL has been deprecated and will be \
238
238
removed in v4. Use the `trace_level = TraceAll()` keyword argument \
239
239
via the logging API \
240
- https://docs.sciml.ai/NonlinearSolve/stable/basics/Logging/ instead." )
240
+ https://docs.sciml.ai/NonlinearSolve/stable/basics/Logging/ instead." ,
241
+ :NLsolveJL )
241
242
else
242
243
extended_trace = false
243
244
end
@@ -388,5 +389,5 @@ function SIAMFANLEquationsJL(; method = :newton, delta = 1e-3, linsolve = nothin
388
389
if Base. get_extension (@__MODULE__ , :NonlinearSolveSIAMFANLEquationsExt ) === nothing
389
390
error (" SIAMFANLEquationsJL requires SIAMFANLEquations.jl to be loaded" )
390
391
end
391
- return SIAMFANLEquationsJL (method, show_trace, delta, linsolve)
392
+ return SIAMFANLEquationsJL (method, delta, linsolve)
392
393
end
0 commit comments