* @throws MathArithmeticException all of the probabilities are 0.
*/
public EnumeratedRealDistribution(final double[] singletons, final double[] probabilities)
throws DimensionMismatchException, NotPositiveException, MathArithmeticException,
NotFiniteNumberException, NotANumberException {
this(new Well19937c(), singletons, probabilities);
}