Numeric Distributions
WIP
Dirac Delta Function
val mean = 0.0
val dist = DeltaDist(mean)
Normal Distribution
val mean = 0.0
val variance = 1.0
val dist = NormalDist(mean, variance)
Log-normal Distribution
val scale = 0.0
val shape = 1.0
LogNormalDist(scale, shape)
Pareto Distribution
val scale = 0.0
val shape = 1.0
ParetoDist(scale, shape)
Uniform Distribution
val scale = 0.0
val width = 1.0
UniformDist(scale, width)