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 d53f3da RNG-169: Avoid intermediate arrays during conversions
new ef9722b RNG-169: Expand primitive input seeds using a SplitMix64
new c109239 RNG-169: Move all conversions to the Conversions class
new a702a1f RNG-169: Move array size conversions to Conversions class
new 8b36169 Fix PMD errors
new b317d3e RNG-169: Remove redundant Seed2ArrayConverter implementation
new 27abd76 RNG-169: Track changes
new 60213ea Use Java 1.8 method to compute map value if absent
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:
.../rng/simple/ThreadLocalRandomSource.java | 6 +-
.../rng/simple/internal/ByteArray2IntArray.java | 39 +--
.../rng/simple/internal/ByteArray2LongArray.java | 39 +--
.../commons/rng/simple/internal/Conversions.java | 353 ++++++++++++++++++++-
.../commons/rng/simple/internal/Int2Long.java | 5 +-
.../commons/rng/simple/internal/IntArray2Int.java | 7 +-
.../rng/simple/internal/IntArray2LongArray.java | 39 +--
.../commons/rng/simple/internal/Long2IntArray.java | 34 +-
.../rng/simple/internal/Long2LongArray.java | 26 +-
.../rng/simple/internal/LongArray2IntArray.java | 40 +--
.../rng/simple/internal/LongArray2Long.java | 7 +-
.../rng/simple/internal/NativeSeedType.java | 54 +---
.../commons/rng/simple/internal/SeedUtils.java | 61 ----
.../simple/internal/ArrayConverterEndianTest.java | 7 +-
.../simple/internal/ByteArray2IntArrayTest.java | 33 --
.../simple/internal/ByteArray2LongArrayTest.java | 33 --
.../rng/simple/internal/ConversionsTest.java | 306 ++++++++++++++++--
.../simple/internal/IntArray2LongArrayTest.java | 45 ---
.../{Long2LongArrayTest.java => Long2IntTest.java} | 14 +-
.../simple/internal/LongArray2IntArrayTest.java | 49 ---
.../rng/simple/internal/NativeSeedTypeTest.java | 121 ++++---
.../commons/rng/simple/internal/SeedUtilsTest.java | 26 --
src/changes/changes.xml | 14 +-
23 files changed, 752 insertions(+), 606 deletions(-)
copy
commons-rng-simple/src/test/java/org/apache/commons/rng/simple/internal/{Long2LongArrayTest.java
=> Long2IntTest.java} (74%)