Skip to content

Commit 128daa9

Browse files
committed
Use HTTPS in URL
1 parent 778931f commit 128daa9

File tree

77 files changed

+124
-124
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+124
-124
lines changed

commons-rng-core/src/main/java/org/apache/commons/rng/core/source32/AbstractPcg6432.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
* </li>
5252
* </ul>
5353
*
54-
* @see <a href="http://www.pcg-random.org/">
54+
* @see <a href="https://www.pcg-random.org/">
5555
* PCG, A Family of Better Random Number Generators</a>
5656
* @see <a href="https://ieeexplore.ieee.org/document/718715">Durst, M.J. (1989)
5757
* Using Linear Congruential Generators For Parallel Random Number Generation</a>

commons-rng-core/src/main/java/org/apache/commons/rng/core/source32/AbstractPcgMcg6432.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* family that use an internal 64-bit Multiplicative Congruential Generator (MCG) and output
2424
* 32-bits per cycle.
2525
*
26-
* @see <a href="http://www.pcg-random.org/">
26+
* @see <a href="https://www.pcg-random.org/">
2727
* PCG, A Family of Better Random Number Generators</a>
2828
* @since 1.3
2929
*/

commons-rng-core/src/main/java/org/apache/commons/rng/core/source32/AbstractWell.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@
2626
* <p>
2727
* This generator is described in a paper by Fran&ccedil;ois Panneton,
2828
* Pierre L'Ecuyer and Makoto Matsumoto
29-
* <a href="http://www.iro.umontreal.ca/~lecuyer/myftp/papers/wellrng.pdf">
29+
* <a href="https://www.iro.umontreal.ca/~lecuyer/myftp/papers/wellrng.pdf">
3030
* Improved Long-Period Generators Based on Linear Recurrences Modulo 2</a>
3131
* ACM Transactions on Mathematical Software, 32, 1 (2006).
3232
* The errata for the paper are in
33-
* <a href="http://www.iro.umontreal.ca/~lecuyer/myftp/papers/wellrng-errata.txt">wellrng-errata.txt</a>.
33+
* <a href="https://www.iro.umontreal.ca/~lecuyer/myftp/papers/wellrng-errata.txt">wellrng-errata.txt</a>.
3434
* </p>
3535
*
36-
* @see <a href="http://www.iro.umontreal.ca/~panneton/WELLRNG.html">WELL Random number generator</a>
36+
* @see <a href="https://www.iro.umontreal.ca/~panneton/WELLRNG.html">WELL Random number generator</a>
3737
*
3838
* @since 1.0
3939
*/

commons-rng-core/src/main/java/org/apache/commons/rng/core/source32/AbstractXoRoShiRo64.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* This abstract class is a base for algorithms from the Xor-Shift-Rotate family of 32-bit
2424
* generators with 64-bits of state.
2525
*
26-
* @see <a href="http://xoshiro.di.unimi.it/">xorshiro / xoroshiro generators</a>
26+
* @see <a href="https://xoshiro.di.unimi.it/">xorshiro / xoroshiro generators</a>
2727
* @since 1.3
2828
*/
2929
abstract class AbstractXoRoShiRo64 extends IntProvider {

commons-rng-core/src/main/java/org/apache/commons/rng/core/source32/AbstractXoShiRo128.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* This abstract class is a base for algorithms from the Xor-Shift-Rotate family of 32-bit
2727
* generators with 128-bits of state.
2828
*
29-
* @see <a href="http://xoshiro.di.unimi.it/">xorshiro / xoroshiro generators</a>
29+
* @see <a href="https://xoshiro.di.unimi.it/">xorshiro / xoroshiro generators</a>
3030
* @since 1.3
3131
*/
3232
abstract class AbstractXoShiRo128 extends IntProvider implements LongJumpableUniformRandomProvider {

commons-rng-core/src/main/java/org/apache/commons/rng/core/source32/DotyHumphreySmallFastCounting32.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* <p>The state size is 128-bits; the period is a minimum of 2<sup>32</sup> and an
2626
* average of approximately 2<sup>127</sup>.</p>
2727
*
28-
* @see <a href="http://pracrand.sourceforge.net/">PractRand</a>
28+
* @see <a href="https://pracrand.sourceforge.net/">PractRand</a>
2929
* @since 1.3
3030
*/
3131
public class DotyHumphreySmallFastCounting32 extends IntProvider {

commons-rng-core/src/main/java/org/apache/commons/rng/core/source32/ISAACRandom.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* This code is based (with minor changes and improvements) on the original
3636
* implementation of the algorithm by Bob Jenkins.
3737
*
38-
* @see <a href="http://burtleburtle.net/bob/rand/isaacafa.html">
38+
* @see <a href="https://burtleburtle.net/bob/rand/isaacafa.html">
3939
* ISAAC: a fast cryptographic pseudo-random number generator</a>
4040
*
4141
* @see <a href="https://en.wikipedia.org/wiki/ISAAC_(cipher)">ISAAC (Wikipedia)</a>

commons-rng-core/src/main/java/org/apache/commons/rng/core/source32/JDKRandom.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public class JDKRandom extends IntProvider {
5454
*
5555
* <p>Adapted from o.a.c.io.serialization.ValidatingObjectInputStream.</p>
5656
*
57-
* @see <a href="http://www.ibm.com/developerworks/library/se-lookahead/">
57+
* @see <a href="https://www.ibm.com/developerworks/library/se-lookahead/">
5858
* IBM DeveloperWorks Article: Look-ahead Java deserialization</a>
5959
*/
6060
private static final class ValidatingObjectInputStream extends ObjectInputStream {

commons-rng-core/src/main/java/org/apache/commons/rng/core/source32/KISSRandom.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import org.apache.commons.rng.core.util.NumberFactory;
2020

2121
/**
22-
* Port from Marsaglia's <a href="http://www.cse.yorku.ca/~oz/marsaglia-rng.html">
22+
* Port from Marsaglia's <a href="https://www.cse.yorku.ca/~oz/marsaglia-rng.html">
2323
* "KISS" algorithm</a>.
2424
* This version contains the correction referred to
2525
* <a href="https://programmingpraxis.com/2010/10/05/george-marsaglias-random-number-generators/">here</a>

commons-rng-core/src/main/java/org/apache/commons/rng/core/source32/MersenneTwister.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@
2828
* This generator features an extremely long period
2929
* (2<sup>19937</sup>-1) and 623-dimensional equidistribution up to
3030
* 32 bits accuracy. The home page for this generator is located at
31-
* <a href="http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html">
31+
* <a href="https://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html">
3232
* http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html</a>.
3333
* </p>
3434
*
3535
* <p>
3636
* This generator is described in a paper by Makoto Matsumoto and
3737
* Takuji Nishimura in 1998:
38-
* <a href="http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/ARTICLES/mt.pdf">
38+
* <a href="https://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/ARTICLES/mt.pdf">
3939
* Mersenne Twister: A 623-Dimensionally Equidistributed Uniform Pseudo-Random
4040
* Number Generator</a>,
4141
* ACM Transactions on Modeling and Computer Simulation, Vol. 8, No. 1,
@@ -44,7 +44,7 @@
4444
*
4545
* <p>
4646
* This class is mainly a Java port of the
47-
* <a href="http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/MT2002/emt19937ar.html">
47+
* <a href="https://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/MT2002/emt19937ar.html">
4848
* 2002-01-26 version of the generator</a> written in C by Makoto Matsumoto
4949
* and Takuji Nishimura. Here is their original copyright:
5050
* </p>

0 commit comments

Comments
 (0)