Skip to content

Commit 2630ae4

Browse files
authored
Merge pull request #9 from OKTurnbull/patch-1
updating default seed
2 parents b9df289 + e958cb6 commit 2630ae4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mchmm/_mc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ def simulate(
308308
seq[0] = _start
309309

310310
# random seeds
311-
r_states = np.random.randint(0, n, n) if seed is None else seed
311+
r_states = np.random.randint(0, 999999, n) if seed is None else seed
312312

313313
# simulation procedure
314314
for i in range(1, n):

0 commit comments

Comments
 (0)