338338
339339"""
340340 RobustMultiNewton(::Type{T} = Float64; concrete_jac = nothing, linsolve = nothing,
341- precs = DEFAULT_PRECS , autodiff = nothing)
341+ precs = nothing , autodiff = nothing)
342342
343343A polyalgorithm focused on robustness. It uses a mixture of Newton methods with different
344344globalizing techniques (trust region updates, line searches, etc.) in order to find a
@@ -354,7 +354,7 @@ or more precision / more stable linear solver choice is required).
354354 are compatible with the problem type. Defaults to `Float64`.
355355"""
356356function RobustMultiNewton (:: Type{T} = Float64; concrete_jac = nothing , linsolve = nothing ,
357- precs = DEFAULT_PRECS , autodiff = nothing ) where {T}
357+ precs = nothing , autodiff = nothing ) where {T}
358358 if __is_complex (T)
359359 # Let's atleast have something here for complex numbers
360360 algs = (NewtonRaphson (; concrete_jac, linsolve, precs, autodiff),)
375375
376376"""
377377 FastShortcutNonlinearPolyalg(::Type{T} = Float64; concrete_jac = nothing,
378- linsolve = nothing, precs = DEFAULT_PRECS , must_use_jacobian::Val = Val(false),
378+ linsolve = nothing, precs = nothing , must_use_jacobian::Val = Val(false),
379379 prefer_simplenonlinearsolve::Val{SA} = Val(false), autodiff = nothing,
380380 u0_len::Union{Int, Nothing} = nothing) where {T}
381381
@@ -395,7 +395,7 @@ for more performance and then tries more robust techniques if the faster ones fa
395395"""
396396function FastShortcutNonlinearPolyalg (
397397 :: Type{T} = Float64; concrete_jac = nothing , linsolve = nothing ,
398- precs = DEFAULT_PRECS , must_use_jacobian:: Val{JAC} = Val (false ),
398+ precs = nothing , must_use_jacobian:: Val{JAC} = Val (false ),
399399 prefer_simplenonlinearsolve:: Val{SA} = Val (false ),
400400 u0_len:: Union{Int, Nothing} = nothing , autodiff = nothing ) where {T, JAC, SA}
401401 start_index = 1
457457
458458"""
459459 FastShortcutNLLSPolyalg(::Type{T} = Float64; concrete_jac = nothing, linsolve = nothing,
460- precs = DEFAULT_PRECS , autodiff = nothing, kwargs...)
460+ precs = nothing , autodiff = nothing, kwargs...)
461461
462462A polyalgorithm focused on balancing speed and robustness. It first tries less robust methods
463463for more performance and then tries more robust techniques if the faster ones fail.
@@ -469,7 +469,7 @@ for more performance and then tries more robust techniques if the faster ones fa
469469"""
470470function FastShortcutNLLSPolyalg (
471471 :: Type{T} = Float64; concrete_jac = nothing , linsolve = nothing ,
472- precs = DEFAULT_PRECS , autodiff = nothing , kwargs... ) where {T}
472+ precs = nothing , autodiff = nothing , kwargs... ) where {T}
473473 if __is_complex (T)
474474 algs = (GaussNewton (; concrete_jac, linsolve, precs, autodiff, kwargs... ),
475475 LevenbergMarquardt (;
0 commit comments