Skip to content

Releases: cicirello/rho-mu

rho-mu, v2.0.0

21 Mar 14:15
99336b4
Compare
Choose a tag to compare

[2.0.0] - 2022-03-21

Breaking Changes
Contains breaking changes, including increasing minimum supported Java version to Java 17.

Changed

  • Minimum supported Java version is now Java 17.
  • Refactored all classes in package org.cicirello.math.rand to use Java 17's new RandomGenerator interface.
  • Migrated test cases to JUnit Jupiter 5.8.2.

rho mu, v1.2.0

11 Feb 17:56
751fdab
Compare
Choose a tag to compare

[1.2.0] - 2022-02-11

Added

  • Statistics.stdev(int[]) and Statistics.stdev(double[]) methods for sample standard deviation.

CI/CD

  • Added automated commenting of test coverage percentages to CI/CD workflow.

rho mu, v1.1.0

22 Sep 19:44
1848627
Compare
Choose a tag to compare

[1.1.0] - 2021-9-22

Added

  • Gaussian random number generators, specifically integrated the implementations
    from the Chips-n-Salsa library.

rho mu, v1.0.0

22 Sep 18:47
Compare
Choose a tag to compare

[1.0.0] - 2021-09-22

Added

  • This library provides the Java module org.cicirello.rho_mu, which includes the
    following packages in this initial release, all of which originated with the
    JavaPermutationTools library:
    • org.cicirello.math: Math functions needed by other functionality.
    • org.cicirello.math.la: Linear algebra related.
    • org.cicirello.math.rand: Efficient random sampling of single, pair, and triples of array
      indexes, as well as other randomization related functionality such as distributions other
      than random.
    • org.cicirello.math.stats: Statistics related functionality.