Skip to content

Commit

Permalink
fixed all error about self loops messages
Browse files Browse the repository at this point in the history
  • Loading branch information
pmendes committed Aug 27, 2024
1 parent 965ec15 commit f1e5aaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sbmodelr
Original file line number Diff line number Diff line change
Expand Up @@ -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}'
Expand Down Expand Up @@ -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}'
Expand Down

0 comments on commit f1e5aaa

Please sign in to comment.