Gets or sets a value that indicates whether the vector containing the last Sequence is reused to hold the next Sequence.

Namespace: Extreme.Statistics.Random
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Property ReturnNewInstance As Boolean
C#
public bool ReturnNewInstance { get; set; }
C++
public:
bool ReturnNewInstance {
	bool get ();
	void set (bool value);
}

Remarks

When ReturnNewInstance is true, each new point is returned in a new instance of GeneralVector.

For most applications, this is not necessary, and it is more efficient to reuse the same instance. This happens when when ReturnNewInstance is false.

You can specify the vector to use by setting the Sequence property.

See Also