Uses of Class
jp.ac.hiroshima_u.sci.math.saito.tinymt.TinyMT32

Uses of TinyMT32 in jp.ac.hiroshima_u.sci.math.saito.tinymt
 

Methods in jp.ac.hiroshima_u.sci.math.saito.tinymt that return TinyMT32
static TinyMT32 ThreadLocalRandom.currentTinyMT()
          get random generator for current thread.
static TinyMT32 TinyMT32.getDefault()
          Factory method which returns the TinyMT with the first generated parameter of TinyMTDC.
static TinyMT32 TinyMT32.getDefault(int[] seeds)
          get default TinyMT32 with seeding by array.
static TinyMT32 TinyMT32.getDefault(long seed)
          Factory method which returns the TinyMT with the first generated parameter of TinyMTDC.
static TinyMT32 TinyMT32.getDefault(java.lang.String seed)
          Factory method which returns the TinyMT with the first generated parameter of TinyMTDC.
static TinyMT32[] TinyMT32.getDefaultArray(int count, long seed, long jump)
          make and return an array of TinyMT.
static TinyMT32[] TinyMT32.getDefaultArray(int count, java.lang.String seed, long jump)
          Make and return an array of TinyMT.
 TinyMT32[] TinyMT32.getJumpedArray(int count, long jump)
          Make and return an array of TinyMT.
static TinyMT32[] TinyMT32.getTinyMTArray(int count, long seed)
          Make and return an array of TinyMT.