Class: LFSR::Pure::Size13
Constant Summary collapse
- MASK =
0x1fff
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
130 131 132 133 134 |
# File 'lib/lfsr/pure.rb', line 130 def next_i @reg = (@reg >> 1) | ((@reg[0]^@reg[1]^@reg[3]^@reg[4]) << 0xc) @reg = (@reg >> 1) | ((@reg[0]^@reg[1]^@reg[3]^@reg[4]) << 0xc) while @reg > @max @reg - 1 end |