Class: LFSR::Pure::Size52
Constant Summary collapse
- MASK =
0xfffffffffffff
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
559 560 561 562 563 |
# File 'lib/lfsr/pure.rb', line 559 def next_i @reg = (@reg >> 1) | ((@reg[0]^@reg[1]^@reg[3]^@reg[6]) << 0x33) @reg = (@reg >> 1) | ((@reg[0]^@reg[1]^@reg[3]^@reg[6]) << 0x33) while @reg > @max @reg - 1 end |