From 251749a3d6bd89203612fb31006ea88708563308 Mon Sep 17 00:00:00 2001 From: Helmut Strey Date: Thu, 26 Dec 2024 21:43:19 -0500 Subject: [PATCH] moved plot options to Sim --- src/gui/GUI.jl | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/gui/GUI.jl b/src/gui/GUI.jl index 6dcd18c1..a3a1bf23 100644 --- a/src/gui/GUI.jl +++ b/src/gui/GUI.jl @@ -82,11 +82,9 @@ function tab_parameters() :abstol => NCAD(1e-6, NUMBER, 1e-1, 1e-10,[],true), :solver => NCAD(1, DROPDOWN, 1, 2,["stiff","non-stiff"],true), :dt => NCAD(0.1, NUMBER, 1e-3, 10,[],true), - :order => ["duration","reltol","abstol","solver","dt"], - ), - "Plotsettings" => OrderedDict( :spike_threshold => NCAD(20, NUMBER, -50, 200,[],true), :max_neurons => NCAD(10, INTEGER, 1, 100,[],true) + :order => ["duration","reltol","abstol","solver","dt","spike_threshold","max_neurons"], ), "Parameter Fitting" => OrderedDict( :method => NCAD(1, DROPDOWN, 1, 2,["Laplace","MCMC"],true),