From 675abf67df394b6ff5a8daecd8f8a09ea73fc54c Mon Sep 17 00:00:00 2001 From: Nathanael Bosch Date: Sat, 4 Nov 2023 16:37:34 +0100 Subject: [PATCH] Change LV exp plot again --- benchmarks/lotkavolterra.jmd | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/benchmarks/lotkavolterra.jmd b/benchmarks/lotkavolterra.jmd index ff7b27f65..dd5b784e3 100644 --- a/benchmarks/lotkavolterra.jmd +++ b/benchmarks/lotkavolterra.jmd @@ -234,7 +234,8 @@ abstols = 1.0 ./ 10.0 .^ (4:14) reltols = 1.0 ./ 10.0 .^ (1:11) orders = (2, 3, 5, 8) -ps = for o in orders +ps = [] +for o in orders _setups = [ "EK1($o) TaylorInit" => Dict(:alg => EK1(order=o, smooth=DENSE, initialization=TaylorModeInit(o))) "EK1($o) ForwardDiffInit" => Dict(:alg => EK1(order=o, smooth=DENSE, initialization=ForwardDiffInit(o))) @@ -255,13 +256,13 @@ ps = for o in orders verbose = false, ) - plot(wp, color=[2 4 5 6]) + p = plot(wp, color=[2 4 5 6], xticks = 10.0 .^ (-16:1:5)) + push!(ps, p) end plot( ps..., layout=(length(orders), 1), size = (1000, 800), - xticks = [false false false 10.0 .^ (-16:1:5)], ) ```