Class UniformLongRVRV

All Implemented Interfaces:
Cloneable, RandomVariableOps<UniformLongRV>, RandomVariableRVNOps<Long,UniformLongRV>, RandomVariableRVOps<Long,UniformLongRV>

public class UniformLongRVRV extends LongRandomVariableRV<UniformLongRV>
Random variable that generates the same integer-valued random variable repeatedly.
  • Constructor Details

    • UniformLongRVRV

      public UniformLongRVRV(LongRandomVariable lowerLimitRV, LongRandomVariable upperLimitRV)
      Constructor.
      Parameters:
      lowerLimitRV - random variable for the lower limit for the random variable produced
      upperLimitRV - random variable for the lower limit for the random variable produced
    • UniformLongRVRV

      public UniformLongRVRV(LongRandomVariable lowerLimitRV, boolean lowerClosed, LongRandomVariable upperLimitRV, boolean upperClosed)
      Constructor specifying random variables for range type (open, closed, etc.).
      Parameters:
      lowerLimitRV - random variable for the lower limit for the random variable produced
      lowerClosed - true if the lower limit is included in the range and false if it is not
      upperLimitRV - random variable for the lower limit for the random variable produced
      upperClosed - true if the upper limit is included in the range and false if it is not
  • Method Details