Class: LFSR::Pure::Size34
Constant Summary collapse
- MASK =
0x3ffffffff
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
361 362 363 364 365 |
# File 'lib/lfsr/pure.rb', line 361 def next_i @reg = (@reg >> 1) | ((@reg[0]^@reg[3]^@reg[4]^@reg[8]) << 0x21) @reg = (@reg >> 1) | ((@reg[0]^@reg[3]^@reg[4]^@reg[8]) << 0x21) while @reg > @max @reg - 1 end |