Skip to content

Commit

Permalink
Apply rounding fix to MAM
Browse files Browse the repository at this point in the history
  • Loading branch information
otcathatsya committed Jun 19, 2024
1 parent abc43f9 commit 913ccd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion multi-area-model/multiarea_model/simulation_3.py
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ def connect(simulation,
mean=mean_delay,
std=mean_delay * network.params['delay_params']['delay_rel']
),
min=simulation.params['dt'],
min=simulation.params['dt'] - 0.5 * nest.resolution,
max=np.Inf)}

nest.Connect(source_area.gids[source],
Expand Down

0 comments on commit 913ccd6

Please sign in to comment.