@@ -45,7 +45,7 @@ class LFib1340( BaseLFib64 ):
4545 + (addition),
4646 - (substraction),
4747 * (multiplication),
48- ^(bitwise exclusive-or).
48+ ^ (bitwise exclusive-or).
4949
5050 With the + or - operation, such generators are in fact MRGs. They offer very large
5151 periods with the best known results in the evaluation of their randomness, as
@@ -69,7 +69,7 @@ class LFib1340( BaseLFib64 ):
6969 '+'. We've implemented here the original operator: '+'.
7070
7171 See LFib78, LFib116 and LFib668 for long period LFib generators (resp. 2^78,
72- 2^116 and 2^668 periods, i.e. resp. 3.0e+23, 8.3e+34 and 2.4e+403 periods) while
72+ 2^116 and 2^668 periods, i.e. resp. 3.0e+23, 8.3e+34 and 1.2e+201 periods) while
7373 same computation time and far higher precision (64-bits calculations) than MRGs,
7474 but memory consumption (resp. 17, 55 and 607 integers).
7575
@@ -81,7 +81,7 @@ class LFib1340( BaseLFib64 ):
8181 print( rand(a) ) # prints a uniform pseudo-random value within [0.0, a)
8282 print( rand(a,b) ) # prints a uniform pseudo-random value within [a , b)
8383
84- Please notice that for simulating the roll of a dice you should program:
84+ Notice that for simulating the roll of a dice you should program:
8585
8686 diceRoll = LFib1340()
8787 print(int(diceRoll(1, 7))) # prints a uniform roll within set {1, 2, 3, 4, 5, 6}
0 commit comments