@@ -59,7 +59,7 @@ solvers_all = [
5959 (; pkg = :nonlinearsolve, name = "Levenberg-Marquardt (No Geodesic Accln.) with Cholesky", solver = Dict(:alg => LevenbergMarquardt(; disable_geodesic = Val(true), linsolve = CholeskyFactorization(), autodiff = AutoEnzyme()))),
6060
6161 (; 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))),
6363 (; pkg = :wrapper, name = "Newton Raphson with LineSearch [Sundials]", solver = Dict(:alg => KINSOL(; globalization_strategy = :LineSearch, maxsetupcalls=1))),
6464
6565 (; pkg = :wrapper, name = "Newton Raphson [NLsolve.jl]", solver = Dict(:alg => NLsolveJL(; method = :newton, autodiff = :forward))),
@@ -318,7 +318,7 @@ fig = begin
318318 axislegend(ax, [[l, sc] for (l, sc) in zip(ls, scs)],
319319 [solver.name for solver in successful_solvers[idxs]], "Successful Solvers";
320320 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),
322322 tellheight = false, tellwidth = true, patchsize = (40.0f0, 20.0f0),
323323 position = :rb)
324324
0 commit comments