Skip to content

Commit

Permalink
RNG() docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
atemerev committed May 24, 2024
1 parent f5ae245 commit 07f0e06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neurodamus/core/random.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

class RNG(object):
def __new__(cls, **kw):
"""Creates a default RNG, currently based on ACG"""
"""Creates a default RNG (Random123 with ids of 0,1,2)"""
seed = kw.get("seed", 0)
return Random123(0, 1, 2, seed)

Expand Down

0 comments on commit 07f0e06

Please sign in to comment.