Class: LFSR::Pure::Size31
Constant Summary collapse
- MASK =
0x7fffffff
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
Constructor Details
This class inherits a constructor from LFSR::Base
Instance Method Details
#next_i ⇒ Object
328 329 330 331 332 |
# File 'lib/lfsr/pure.rb', line 328 def next_i @reg = (@reg >> 1) | ((@reg[0]^@reg[1]^@reg[2]^@reg[3]) << 0x1e) @reg = (@reg >> 1) | ((@reg[0]^@reg[1]^@reg[2]^@reg[3]) << 0x1e) while @reg > @max @reg - 1 end |