2020-09-25 22:06:03 +00:00
|
|
|
using System.Threading;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
2020-09-26 09:40:01 +00:00
|
|
|
namespace FastRng.Double.Distributions
|
2020-09-25 22:06:03 +00:00
|
|
|
{
|
|
|
|
public interface IDistribution
|
|
|
|
{
|
|
|
|
public IRandom Random { get; set; }
|
|
|
|
|
2020-09-26 09:46:54 +00:00
|
|
|
public ValueTask<double> GetDistributedValue(CancellationToken token);
|
2020-09-25 22:06:03 +00:00
|
|
|
}
|
|
|
|
}
|