12 lines
256 B
C#
12 lines
256 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FastRng.Distributions
|
|
{
|
|
public interface IDistribution
|
|
{
|
|
public IRandom Random { get; set; }
|
|
|
|
public Task<double> GetDistributedValue(CancellationToken token);
|
|
}
|
|
} |