From fe798e8cd48ca9f95897457b05000d4b29da44a9 Mon Sep 17 00:00:00 2001 From: Michiel Cottaar <michiel.cottaar@ndcn.ox.ac.uk> Date: Thu, 8 Feb 2024 14:00:12 +0000 Subject: [PATCH] Keep model stable during fixing --- src/wait.jl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/wait.jl b/src/wait.jl index c3b4a68..652225a 100644 --- a/src/wait.jl +++ b/src/wait.jl @@ -19,6 +19,9 @@ Duration can be set to one of: struct WaitBlock <: BuildingBlock duration :: VariableType function WaitBlock(duration=nothing) + if duration isa Number + return new(duration) + end res = new( get_free_variable(duration), ) -- GitLab