Allow users to implement their own distributions
This commit is contained in:
parent
7d56951040
commit
3b62152957
@ -16,7 +16,7 @@ public abstract class Distribution<TNum> : IDistribution<TNum> where TNum : IFlo
|
|||||||
this.fitter = new ShapeFitter<TNum>(this.ShapeFunction, rng, 100);
|
this.fitter = new ShapeFitter<TNum>(this.ShapeFunction, rng, 100);
|
||||||
}
|
}
|
||||||
|
|
||||||
private protected abstract TNum ShapeFunction(TNum x);
|
public abstract TNum ShapeFunction(TNum x);
|
||||||
|
|
||||||
public TNum GetDistributedValue(CancellationToken token = default) => this.fitter.NextNumber(token);
|
public TNum GetDistributedValue(CancellationToken token = default) => this.fitter.NextNumber(token);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user