@@ -59,7 +59,7 @@ solvers_all = [
59
59
(; pkg = :nonlinearsolve, name = "Levenberg-Marquardt (No Geodesic Accln.) with Cholesky", solver = Dict(:alg => LevenbergMarquardt(; disable_geodesic = Val(true), linsolve = CholeskyFactorization(), autodiff = AutoEnzyme()))),
60
60
61
61
(; pkg = :wrapper, name = "Newton Raphson [Sundials]", solver = Dict(:alg => KINSOL(; linear_solver = :LapackDense, maxsetupcalls=1))),
62
- (; pkg = :wrapper, name = "Newton Krylov [Sundials]", solver = Dict(:alg => KINSOL(; linear_solver = :LapackDense, linear_solver = : GMRES, maxsetupcalls=1, krylov_dim = 1000))),
62
+ (; pkg = :wrapper, name = "Newton Krylov [Sundials]", solver = Dict(:alg => KINSOL(; linear_solver = :GMRES, maxsetupcalls=1, krylov_dim = 1000))),
63
63
(; pkg = :wrapper, name = "Newton Raphson with LineSearch [Sundials]", solver = Dict(:alg => KINSOL(; globalization_strategy = :LineSearch, maxsetupcalls=1))),
64
64
65
65
(; pkg = :wrapper, name = "Newton Raphson [NLsolve.jl]", solver = Dict(:alg => NLsolveJL(; method = :newton, autodiff = :forward))),
@@ -318,7 +318,7 @@ fig = begin
318
318
axislegend(ax, [[l, sc] for (l, sc) in zip(ls, scs)],
319
319
[solver.name for solver in successful_solvers[idxs]], "Successful Solvers";
320
320
framevisible=true, framewidth = STROKEWIDTH, orientation = :vertical,
321
- titlesize = 20, nbanks = 2 , labelsize = 16,# margin = (0.0, 80.0, 0.0, 0.0),
321
+ titlesize = 20, nbanks = 1 , labelsize = 16,# margin = (0.0, 80.0, 0.0, 0.0),
322
322
tellheight = false, tellwidth = true, patchsize = (40.0f0, 20.0f0),
323
323
position = :rb)
324
324
0 commit comments