Packages

class XORShiftRandom extends Random

XORShiftRandom

copy from spark framework

This class implements a XORShift random number generator algorithm Source: Marsaglia, G. (2003). Xorshift RNGs. Journal of Statistical Software, Vol. 8, Issue 14. http://www.jstatsoft.org/v08/i14/paper This implementation is approximately 3.5 times faster than java.util.Random, partly because of the algorithm, but also due to renouncing thread safety. JDK's implementation uses an AtomicLong seed, this class uses a regular Long. We can forgo thread safety since we use a new instance of the RNG for each thread.

Source
XORShiftRandom.scala
Version

1.0 23/01/2018 20:08

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. XORShiftRandom
  2. Random
  3. Serializable
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new XORShiftRandom()
  2. new XORShiftRandom(init: Long)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from XORShiftRandom to any2stringadd[XORShiftRandom] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (XORShiftRandom, B)
    Implicit
    This member is added by an implicit conversion from XORShiftRandom to ArrowAssoc[XORShiftRandom] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  8. def doubles(arg0: Double, arg1: Double): DoubleStream
    Definition Classes
    Random
  9. def doubles(arg0: Long, arg1: Double, arg2: Double): DoubleStream
    Definition Classes
    Random
  10. def doubles(): DoubleStream
    Definition Classes
    Random
  11. def doubles(arg0: Long): DoubleStream
    Definition Classes
    Random
  12. def ensuring(cond: (XORShiftRandom) ⇒ Boolean, msg: ⇒ Any): XORShiftRandom
    Implicit
    This member is added by an implicit conversion from XORShiftRandom to Ensuring[XORShiftRandom] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: (XORShiftRandom) ⇒ Boolean): XORShiftRandom
    Implicit
    This member is added by an implicit conversion from XORShiftRandom to Ensuring[XORShiftRandom] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean, msg: ⇒ Any): XORShiftRandom
    Implicit
    This member is added by an implicit conversion from XORShiftRandom to Ensuring[XORShiftRandom] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean): XORShiftRandom
    Implicit
    This member is added by an implicit conversion from XORShiftRandom to Ensuring[XORShiftRandom] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  18. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from XORShiftRandom to StringFormat[XORShiftRandom] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  20. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. def ints(arg0: Int, arg1: Int): IntStream
    Definition Classes
    Random
  23. def ints(arg0: Long, arg1: Int, arg2: Int): IntStream
    Definition Classes
    Random
  24. def ints(): IntStream
    Definition Classes
    Random
  25. def ints(arg0: Long): IntStream
    Definition Classes
    Random
  26. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  27. def longs(arg0: Long, arg1: Long): LongStream
    Definition Classes
    Random
  28. def longs(arg0: Long, arg1: Long, arg2: Long): LongStream
    Definition Classes
    Random
  29. def longs(): LongStream
    Definition Classes
    Random
  30. def longs(arg0: Long): LongStream
    Definition Classes
    Random
  31. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  32. def next(bits: Int): Int
    Attributes
    protected
    Definition Classes
    XORShiftRandom → Random
  33. def nextBoolean(): Boolean
    Definition Classes
    Random
  34. def nextBytes(arg0: Array[Byte]): Unit
    Definition Classes
    Random
  35. def nextDouble(): Double
    Definition Classes
    Random
  36. def nextFloat(): Float
    Definition Classes
    Random
  37. def nextGaussian(): Double
    Definition Classes
    Random
  38. def nextInt(arg0: Int): Int
    Definition Classes
    Random
  39. def nextInt(): Int
    Definition Classes
    Random
  40. def nextLong(): Long
    Definition Classes
    Random
  41. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  42. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  43. def setSeed(s: Long): Unit
    Definition Classes
    XORShiftRandom → Random
  44. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  45. def toString(): String
    Definition Classes
    AnyRef → Any
  46. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  47. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  48. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  49. def [B](y: B): (XORShiftRandom, B)
    Implicit
    This member is added by an implicit conversion from XORShiftRandom to ArrowAssoc[XORShiftRandom] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from Random

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from XORShiftRandom to any2stringadd[XORShiftRandom]

Inherited by implicit conversion StringFormat from XORShiftRandom to StringFormat[XORShiftRandom]

Inherited by implicit conversion Ensuring from XORShiftRandom to Ensuring[XORShiftRandom]

Inherited by implicit conversion ArrowAssoc from XORShiftRandom to ArrowAssoc[XORShiftRandom]

Ungrouped