C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
UniformIntDistribution.cs
Go to the documentation of this file.
1using System.Runtime.Serialization;
3
5{
10 {
13 [DataMember(Order = 20)]
14 [GreaterThan(0, canEqual: true)]
15 public int lower { get; set; }
16
19 [DataMember(Order = 21)]
20 public int upper { get; set; }
21 }
22}
Abstract representation of a distribution, used for parametric loss sets.
Describes a Discrete Uniform Distribution, also known as a rectangular distribution,...
int upper
The upper bound of the domain of the uniform distribution. Must be greater than the lower bound....
int lower
The lower bound of the domain of the uniform distribution. Can be any integer.
Represents any distribution that is discrete. With a discrete probability distribution,...