Skip to content

Commit e6189d5

Browse files
committed
#54-rename _LIST_SIZE to _STATE_SIZE
Fixed a single typo in docstring.
1 parent 8096218 commit e6189d5

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

PyRandLib/baselfib64.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class BaseLFib64( BaseRandom ):
7070
print( rand(a) ) # prints a pseudo-random value within [0.0, a)
7171
print( rand(a,b) ) # prints a pseudo-random value within [a , b)
7272
73-
Inheriting classes have to define class attribute '_STATE_SIZE'. See LFib78 for an
73+
Inheriting classes have to define class attribute '_STATE_SIZE'. See LFib78 for an
7474
example.
7575
7676
Reminder:

PyRandLib/basemrg.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ class BaseMRG( BaseRandom ):
6565
print( rand(a) ) # prints a pseudo-random value within [0.0, a)
6666
print( rand(a,b) ) # prints a pseudo-random value within [a , b)
6767
68-
Inheriting classes have to define class attributes '_STATE_SIZE' and '_MODULO'. See
69-
MRGRand287 for an example.
68+
Inheriting classes have to define class attributes '_STATE_SIZE' and '_MODULO'.
69+
See MRGRand287 for an example.
7070
7171
Reminder:
7272
We give you here below a copy of the table of tests for the MRGs that have

PyRandLib/basewell.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class BaseWELL( BaseRandom ):
7373
print( rand(a) ) # prints a pseudo-random value within [0.0, a)
7474
print( rand(a,b) ) # prints a pseudo-random value within [a , b)
7575
76-
Inheriting classes have to define class attributes '_STATE_SIZE'. See Well512a for
76+
Inheriting classes have to define class attributes '_STATE_SIZE'. See Well512a for
7777
an example.
7878
7979
Reminder:

0 commit comments

Comments
 (0)