File tree 1 file changed +6
-6
lines changed 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -131,17 +131,17 @@ cdef class PCG64(BitGenerator):
131
131
132
132
Notes
133
133
-----
134
- The step size is phi-1 when divided by 2**128 where phi is the
135
- golden number .
134
+ The step size is phi-1 when multiplied by 2**128 where phi is the
135
+ golden ratio .
136
136
"""
137
- step = 0x9e3779b97f4a7c15f39cc0605cedc834
137
+ step = 0x9e3779b97f4a7c15f39cc0605cedc835
138
138
self .advance(step * int (jumps))
139
139
140
140
def jumped (self , jumps = 1 ):
141
141
"""
142
142
jumped(jumps=1)
143
143
Returns a new bit generator with the state jumped
144
- Jumps the state as-if jumps * 210306068529402873165736369884012333108
144
+ Jumps the state as-if jumps * 210306068529402873165736369884012333109
145
145
random numbers have been generated.
146
146
147
147
Parameters
@@ -156,8 +156,8 @@ cdef class PCG64(BitGenerator):
156
156
157
157
Notes
158
158
-----
159
- The step size is phi-1 when divided by 2**128 where phi is the
160
- golden number .
159
+ The step size is phi-1 when multiplied by 2**128 where phi is the
160
+ golden ratio .
161
161
"""
162
162
cdef PCG64 bit_generator
163
163
You can’t perform that action at this time.
0 commit comments