Skip to content

Commit 087c2eb

Browse files
committed
Use HTTPS in URL
1 parent 1fc7966 commit 087c2eb

File tree

109 files changed

+211
-211
lines changed

Some content is hidden

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

109 files changed

+211
-211
lines changed

commons-math-core/src/main/java/org/apache/commons/math4/core/jdkmath/AccurateMath.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
* are accurate to about 0.5 ulp throughout the domain range. This statement,
5252
* of course is only a rough global observed behavior, it is <em>not</em> a
5353
* guarantee for <em>every</em> double numbers input (see William Kahan's
54-
* <a href="http://en.wikipedia.org/wiki/Rounding#The_table-maker.27s_dilemma">
54+
* <a href="https://en.wikipedia.org/wiki/Rounding#The_table-maker.27s_dilemma">
5555
* Table Maker's Dilemma</a>).
5656
* </p>
5757
* <p>
@@ -1413,7 +1413,7 @@ public static double log10(final double x) {
14131413
}
14141414

14151415
/**
1416-
* Computes the <a href="http://mathworld.wolfram.com/Logarithm.html">
1416+
* Computes the <a href="https://mathworld.wolfram.com/Logarithm.html">
14171417
* logarithm</a> in a given base.
14181418
*
14191419
* Returns {@code NaN} if either argument is negative.

commons-math-legacy-core/src/main/java/org/apache/commons/math4/legacy/core/Field.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package org.apache.commons.math4.legacy.core;
1818

1919
/**
20-
* Interface representing a <a href="http://mathworld.wolfram.com/Field.html">field</a>.
20+
* Interface representing a <a href="https://mathworld.wolfram.com/Field.html">field</a>.
2121
* <p>
2222
* Classes implementing this interface will often be singletons.
2323
* </p>

commons-math-legacy-core/src/main/java/org/apache/commons/math4/legacy/core/FieldElement.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222

2323
/**
24-
* Interface representing <a href="http://mathworld.wolfram.com/Field.html">field</a> elements.
24+
* Interface representing <a href="https://mathworld.wolfram.com/Field.html">field</a> elements.
2525
* @param <T> the type of the field elements
2626
* @see Field
2727
* @since 2.0

commons-math-legacy-core/src/main/java/org/apache/commons/math4/legacy/core/MathArrays.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -824,7 +824,7 @@ public static <T> T[][] buildArray(final Field<T> field, final int rows, final i
824824
}
825825

826826
/**
827-
* Calculates the <a href="http://en.wikipedia.org/wiki/Convolution">
827+
* Calculates the <a href="https://en.wikipedia.org/wiki/Convolution">
828828
* convolution</a> between two sequences.
829829
* <p>
830830
* The solution is obtained via straightforward computation of the

commons-math-legacy-core/src/main/java/org/apache/commons/math4/legacy/core/RealFieldElement.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
import org.apache.commons.math4.legacy.exception.DimensionMismatchException;
2020

2121
/**
22-
* Interface representing a <a href="http://mathworld.wolfram.com/RealNumber.html">real</a>
23-
* <a href="http://mathworld.wolfram.com/Field.html">field</a>.
22+
* Interface representing a <a href="https://mathworld.wolfram.com/RealNumber.html">real</a>
23+
* <a href="https://mathworld.wolfram.com/Field.html">field</a>.
2424
* @param <T> the type of the field elements
2525
* @see FieldElement
2626
* @since 3.2

commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/analysis/differentiation/DSCompiler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
/** Class holding "compiled" computation rules for derivative structures.
3434
* <p>This class implements the computation rules described in Dan Kalman's paper <a
35-
* href="http://www1.american.edu/cas/mathstat/People/kalman/pdffiles/mmgautodiff.pdf">Doubly
35+
* href="https://www1.american.edu/cas/mathstat/People/kalman/pdffiles/mmgautodiff.pdf">Doubly
3636
* Recursive Multivariate Automatic Differentiation</a>, Mathematics Magazine, vol. 75,
3737
* no. 3, June 2002. However, in order to avoid performances bottlenecks, the recursive
3838
* rules are "compiled" once in an unfold form. This class does this recursion unrolling

commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/analysis/differentiation/DerivativeStructure.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* <p>This class is the workhorse of the differentiation package.</p>
3232
* <p>This class is an implementation of the extension to Rall's
3333
* numbers described in Dan Kalman's paper <a
34-
* href="http://www1.american.edu/cas/mathstat/People/kalman/pdffiles/mmgautodiff.pdf">Doubly
34+
* href="https://www1.american.edu/cas/mathstat/People/kalman/pdffiles/mmgautodiff.pdf">Doubly
3535
* Recursive Multivariate Automatic Differentiation</a>, Mathematics Magazine, vol. 75,
3636
* no. 3, June 2002. Rall's numbers are an extension to the real numbers used
3737
* throughout mathematical expressions; they hold the derivative together with the

commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/analysis/function/Gaussian.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
import org.apache.commons.numbers.core.Precision;
3030

3131
/**
32-
* <a href="http://en.wikipedia.org/wiki/Gaussian_function">
32+
* <a href="https://en.wikipedia.org/wiki/Gaussian_function">
3333
* Gaussian</a> function.
3434
*
3535
* @since 3.0

commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/analysis/function/HarmonicOscillator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import org.apache.commons.math4.core.jdkmath.JdkMath;
2626

2727
/**
28-
* <a href="http://en.wikipedia.org/wiki/Harmonic_oscillator">
28+
* <a href="https://en.wikipedia.org/wiki/Harmonic_oscillator">
2929
* simple harmonic oscillator</a> function.
3030
*
3131
* @since 3.0

commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/analysis/function/Logistic.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import org.apache.commons.math4.core.jdkmath.JdkMath;
2727

2828
/**
29-
* <a href="http://en.wikipedia.org/wiki/Generalised_logistic_function">
29+
* <a href="https://en.wikipedia.org/wiki/Generalised_logistic_function">
3030
* Generalised logistic</a> function.
3131
*
3232
* @since 3.0

0 commit comments

Comments
 (0)