Skip to content

Commit

Permalink
updating default seed
Browse files Browse the repository at this point in the history
  • Loading branch information
OKTurnbull authored Nov 11, 2024
1 parent b9df289 commit e958cb6
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 e958cb6

Please sign in to comment.