Class: LFSR::Pure::Size48
Constant Summary collapse
- MASK =
0xffffffffffff
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
515 516 517 518 519 |
# File 'lib/lfsr/pure.rb', line 515 def next_i @reg = (@reg >> 1) | ((@reg[0]^@reg[4]^@reg[7]^@reg[9]) << 0x2f) @reg = (@reg >> 1) | ((@reg[0]^@reg[4]^@reg[7]^@reg[9]) << 0x2f) while @reg > @max @reg - 1 end |