diff --git a/README.md b/README.md index 24f1835..48db4e1 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,8 @@ Some of the randomization enhancements include: * Methods for generating random samples of k integers without replacement from a range of integers. * Methods to generate streams of numbers from distributions other than uniform, such as streams of random numbers from binomial distributions, Cauchy distributions, exponential distributions, and Gaussian distributions. +* Methods to generate streams of pairs of distinct integers, and streams of triples of distinct integers. +* Methods for shuffling the elements of arrays and Lists. The ρμ library is a dependency of some of our other projects, including [JavaPermutationTools](https://github.com/cicirello/JavaPermutationTools) @@ -179,7 +181,7 @@ and minimum supported Java version. | version | Java requirements | | --- | --- | -| 2.w.x to 3.y.z | Java 17+ | +| 2.w.x to 4.y.z | Java 17+ | | 1.x.y | Java 11+ | ## Versioning Scheme @@ -252,7 +254,7 @@ the version number with the version that you want to use. org.cicirello rho-mu - 3.0.0 + 4.0.0 ``` diff --git a/src/main/java/module-info.java b/src/main/java/module-info.java index 337ca84..16fe31e 100644 --- a/src/main/java/module-info.java +++ b/src/main/java/module-info.java @@ -109,7 +109,7 @@ * distributions, and Gaussian distributions. *
  • Methods to generate streams of pairs of distinct integers, and streams of triples of * distinct integers. - *
  • Methods for shuffling the elements of arrays. + *
  • Methods for shuffling the elements of arrays and Lists. * * *

    The source code repository is diff --git a/src/main/java/org/cicirello/math/rand/EnhancedRandomGenerator.java b/src/main/java/org/cicirello/math/rand/EnhancedRandomGenerator.java index be2333d..245c4ae 100644 --- a/src/main/java/org/cicirello/math/rand/EnhancedRandomGenerator.java +++ b/src/main/java/org/cicirello/math/rand/EnhancedRandomGenerator.java @@ -60,7 +60,7 @@ * distributions, and Gaussian distributions. *

  • Methods to generate streams of pairs of distinct integers, and streams of triples of * distinct integers. - *
  • Methods for shuffling the elements of arrays. + *
  • Methods for shuffling the elements of arrays and Lists. * * * @author Vincent A. Cicirello, Vincent A. Cicirello, https://www.cicirello.org/