Class: LFSR::Pure::Size60

Inherits:
Base
  • Object
show all
Defined in:
lib/lfsr/pure.rb

Constant Summary collapse

MASK =
0xfffffffffffffff

Instance Attribute Summary

Attributes inherited from Base

#max, #reg, #seed

Instance Method Summary collapse

Methods inherited from Base

#initialize, #reset

Constructor Details

This class inherits a constructor from LFSR::Base

Instance Method Details

#next_iObject



647
648
649
650
651
# File 'lib/lfsr/pure.rb', line 647

def next_i
  @reg = (@reg >> 1) | ((@reg[0]^@reg[2]^@reg[4]^@reg[5]) << 0x3b)
  @reg = (@reg >> 1) | ((@reg[0]^@reg[2]^@reg[4]^@reg[5]) << 0x3b) while @reg > @max
  @reg - 1
end