From f1e5aaa3c1a33e7e4b5afe1e7020217ab426018a Mon Sep 17 00:00:00 2001 From: Pedro Mendes Date: Tue, 27 Aug 2024 15:57:51 -0400 Subject: [PATCH] fixed all error about self loops messages --- sbmodelr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sbmodelr b/sbmodelr index 1e8957e..f06f794 100755 --- a/sbmodelr +++ b/sbmodelr @@ -1671,7 +1671,7 @@ if( odelink ): if( args.network ): for link in links: if( link[0] == link[1]): - print(f' Warning: diffusive or synaptic coupling onto the same unit not allowed, ignoring {link[0]} -> {link[1]}') + print(f' Warning: diffusive coupling onto the same unit not allowed, ignoring {link[0]} -> {link[1]}') continue suffa = f'{link[0]}' oaname = f'{ode}_{suffa}' @@ -1898,7 +1898,7 @@ if( odelink ): if( args.network ): for link in links: if( link[0] == link[1]): - print(f' Warning: diffusive or synaptic coupling onto the same unit not allowed, ignoring {link[0]} -> {link[1]}') + print(f' Warning: diffusive coupling onto the same unit not allowed, ignoring {link[0]} -> {link[1]}') continue suffa = f'{link[0]}' oaname = f'{ode}_{suffa}'