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 70d3fd3 Javadoc: Use "file name" instead of "filename". new 00b7cc0 RNG-101: Add MarsagliaTsangWang discrete probability sampler. new abff8ee RNG-101: Added MarsagliaTsangWang Poisson Sampler to the test list. new 5d681da RNG-101: Added MarsagliaTsangWang samplers to the JMH benchmark. new 1f3a83b RNG-101: Updated implementation to use factory methods for construction. new 30fd89b RNG-101: Fixed PMD issues. new c8be5b9 Merge branch 'feature-RNG-101' new f1f6b3c RNG-101: Track changes. The 7 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: .../distribution/DiscreteSamplersPerformance.java | 10 + .../MarsagliaTsangWangDiscreteSampler.java | 1043 ++++++++++++++++++++ .../distribution/DiscreteSamplersList.java | 40 +- .../MarsagliaTsangWangDiscreteSamplerTest.java | 611 ++++++++++++ src/changes/changes.xml | 6 + src/main/resources/pmd/pmd-ruleset.xml | 7 + 6 files changed, 1715 insertions(+), 2 deletions(-) create mode 100644 commons-rng-sampling/src/main/java/org/apache/commons/rng/sampling/distribution/MarsagliaTsangWangDiscreteSampler.java create mode 100644 commons-rng-sampling/src/test/java/org/apache/commons/rng/sampling/distribution/MarsagliaTsangWangDiscreteSamplerTest.java