Class SkipAheadStream represents a single skip-ahead stream.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public class SkipAheadStream : RandomNumberStream
Visual Basic (Declaration)
Public Class SkipAheadStream _
	Inherits RandomNumberStream
Visual C++
public ref class SkipAheadStream : public RandomNumberStream

Remarks

Skip-ahead is method for generating several independent streams of random numbers in which the independent sequences are created by splitting the original sequence into k non-overlapping blocks, where k is the number of independent streams. Each stream generates numbers only from its corresponding block. SkipAheadRandomStreams

Inheritance Hierarchy

System..::.Object
  CenterSpace.NMath.Core..::.RandomNumberStream
    CenterSpace.NMath.Core..::.SkipAheadStream

See Also