From 4a768aee1ff978813889621ef0d69211c330b678 Mon Sep 17 00:00:00 2001 From: Goran Jelic-Cizmek Date: Wed, 24 Sep 2025 11:20:30 +0200 Subject: [PATCH 1/2] Remove duplicate variables --- cal4.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cal4.mod b/cal4.mod index 5cb04c6..156d73a 100644 --- a/cal4.mod +++ b/cal4.mod @@ -6,7 +6,7 @@ NEURON { USEION ca READ cao, ica WRITE cai, ica USEION ip3 READ ip3i VALENCE 1 RANGE ica_pmp,ca1, ca2,alpha,beta,ca3,gamma,ip3ca, DCa,jip3 - GLOBAL vrat, TBufs, KDs, TBufs, TBufm, KDm, factor + GLOBAL vrat, TBufs, KDs, TBufm, KDm, factor } DEFINE Nannuli 4 From cc3629b98a8bb681b260f12aeb5ec2ca16abc97b Mon Sep 17 00:00:00 2001 From: Goran Jelic-Cizmek Date: Mon, 29 Sep 2025 15:04:45 +0200 Subject: [PATCH 2/2] Remove verbatim and use regular block --- minmax.mod | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/minmax.mod b/minmax.mod index 5b04001..122af81 100755 --- a/minmax.mod +++ b/minmax.mod @@ -20,16 +20,14 @@ INITIAL { BREAKPOINT { -VERBATIM if (v > vmax) { - vmax = v; - tmax = t; + vmax = v + tmax = t } if (v < vmin) { - vmin = v; - tmin = t; + vmin = v + tmin = t } -ENDVERBATIM }