Skip to content

Commit 68fef6b

Browse files
committed
fix: bankds
1 parent 46efc91 commit 68fef6b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: benchmarks/NonlinearProblem/bruss_krylov.jmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ fig = begin
284284
axislegend(ax, [[l, sc] for (l, sc) in zip(ls, scs)], labels,
285285
"Successful Solvers";
286286
framevisible=true, framewidth = STROKEWIDTH, orientation = :vertical,
287-
titlesize = 20, labelsize = 16, position = :lt,
287+
titlesize = 20, labelsize = 16, position = :lt, nbanks = 2,
288288
tellheight = true, tellwidth = false, patchsize = (40.0f0, 20.0f0))
289289

290290
axislegend(ax, [

Diff for: benchmarks/NonlinearProblem/nonlinear_battery_problem.jmd

+2-2
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)