Class: LFSR::Pure::Size12
Constant Summary collapse
- MASK =
0xfff
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
119 120 121 122 123 |
# File 'lib/lfsr/pure.rb', line 119 def next_i @reg = (@reg >> 1) | ((@reg[0]^@reg[1]^@reg[4]^@reg[6]) << 0xb) @reg = (@reg >> 1) | ((@reg[0]^@reg[1]^@reg[4]^@reg[6]) << 0xb) while @reg > @max @reg - 1 end |