Skip to content

Commit

Permalink
Merge pull request #9 from OKTurnbull/patch-1
Browse files Browse the repository at this point in the history
updating default seed
  • Loading branch information
maximtrp authored Nov 11, 2024
2 parents b9df289 + e958cb6 commit 2630ae4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mchmm/_mc.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ def simulate(
seq[0] = _start

# random seeds
r_states = np.random.randint(0, n, n) if seed is None else seed
r_states = np.random.randint(0, 999999, n) if seed is None else seed

# simulation procedure
for i in range(1, n):
Expand Down

0 comments on commit 2630ae4

Please sign in to comment.