Class: LFSR::Pure::Size38

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

Constant Summary collapse

MASK =
0x3fffffffff

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



405
406
407
408
409
# File 'lib/lfsr/pure.rb', line 405

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