Class: LFSR::Pure::Size55
Constant Summary collapse
- MASK =
0x7fffffffffffff
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
592 593 594 595 596 |
# File 'lib/lfsr/pure.rb', line 592 def next_i @reg = (@reg >> 1) | ((@reg[0]^@reg[1]^@reg[2]^@reg[6]) << 0x36) @reg = (@reg >> 1) | ((@reg[0]^@reg[1]^@reg[2]^@reg[6]) << 0x36) while @reg > @max @reg - 1 end |