This is an automated email from the ASF dual-hosted git repository.
aherbert pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-rng.git
from 423e3465 Correct if-else GH action workflow
new 9f96ca27 RNG-179: Add fast loaded dice roller discrete sampler
new 72c2adc1 RNG-179: Track changes
new d5ec008e Update README badges
new 0086c530 Disable Travis CI
The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.travis.yml | 34 -
README.md | 4 +-
commons-rng-client-api/README.md | 4 +-
commons-rng-core/README.md | 4 +-
.../EnumeratedDistributionSamplersPerformance.java | 182 ++++-
commons-rng-sampling/README.md | 4 +-
.../FastLoadedDiceRollerDiscreteSampler.java | 856 +++++++++++++++++++++
.../distribution/DiscreteSamplersList.java | 5 +
.../FastLoadedDiceRollerDiscreteSamplerTest.java | 452 +++++++++++
commons-rng-simple/README.md | 4 +-
pom.xml | 30 -
src/changes/changes.xml | 5 +
src/main/resources/pmd/pmd-ruleset.xml | 16 +-
13 files changed, 1516 insertions(+), 84 deletions(-)
delete mode 100644 .travis.yml
create mode 100644
commons-rng-sampling/src/main/java/org/apache/commons/rng/sampling/distribution/FastLoadedDiceRollerDiscreteSampler.java
create mode 100644
commons-rng-sampling/src/test/java/org/apache/commons/rng/sampling/distribution/FastLoadedDiceRollerDiscreteSamplerTest.java