You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 25, 2026. It is now read-only.
The bounded_runs_iter function takes parameters n and t, specifying the number of time steps per call to bounded_runs and the number of iterations. But currently it actually simulates t+1 iterations, which is just a strange decision on my part. We should fix it so the number of time steps is just n*t instead of n*(t+1).
The
bounded_runs_iterfunction takes parametersnandt, specifying the number of time steps per call tobounded_runsand the number of iterations. But currently it actually simulatest+1iterations, which is just a strange decision on my part. We should fix it so the number of time steps is justn*tinstead ofn*(t+1).