Class: LFSR::Pure::Size54

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

Constant Summary collapse

MASK =
0x3fffffffffffff

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



581
582
583
584
585
# File 'lib/lfsr/pure.rb', line 581

def next_i
  @reg = (@reg >> 1) | ((@reg[0]^@reg[3]^@reg[6]^@reg[8]) << 0x35)
  @reg = (@reg >> 1) | ((@reg[0]^@reg[3]^@reg[6]^@reg[8]) << 0x35) while @reg > @max
  @reg - 1
end