Class: LFSR::Pure::Size47
Constant Summary collapse
- MASK =
0x7fffffffffff
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
504 505 506 507 508 |
# File 'lib/lfsr/pure.rb', line 504 def next_i @reg = (@reg >> 1) | ((@reg[0]^@reg[1]^@reg[4]^@reg[5]) << 0x2e) @reg = (@reg >> 1) | ((@reg[0]^@reg[1]^@reg[4]^@reg[5]) << 0x2e) while @reg > @max @reg - 1 end |