Class: LFSR::Pure::Size35
Constant Summary collapse
- MASK =
0x7ffffffff
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
372 373 374 375 376 |
# File 'lib/lfsr/pure.rb', line 372 def next_i @reg = (@reg >> 1) | ((@reg[0]^@reg[1]^@reg[7]^@reg[8]) << 0x22) @reg = (@reg >> 1) | ((@reg[0]^@reg[1]^@reg[7]^@reg[8]) << 0x22) while @reg > @max @reg - 1 end |