Interface CanEnumerateSupport<T>
Whether the distribution supports enumeration over the support - i.e. enumeration over the domain values with non-zero mass.
Namespace: Microsoft.ML.Probabilistic.Distributions
Assembly: Microsoft.ML.Probabilistic.dll
Syntax
public interface CanEnumerateSupport<T>
Type Parameters
Name | Description |
---|---|
T | The domain type. |
Methods
EnumerateSupport()
Enumerates over the support of the distribution instance.
Declaration
IEnumerable<T> EnumerateSupport()
Returns
Type | Description |
---|---|
IEnumerable<T> | The domain values with non-zero mass. |