diff --git a/CHANGELOG.md b/CHANGELOG.md index ae7d6d46b..d669b37a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5841,6 +5841,7 @@ A total of 30 people contributed to this release. Thank you to the following con
+- [`f966721`](https://github.com/stdlib-js/stdlib/commit/f966721cd336b1ef47199adc316f6e5779aeff06) - **chore:** update URLs _(by Philipp Burckhardt)_ - [`458697c`](https://github.com/stdlib-js/stdlib/commit/458697cf4aae5b6bcd2e0d9e19181d2ac3b70fe1) - **feat:** add C implementation for `math/base/special/gamma1pm1` _(by Gunj Joshi)_ - [`7502603`](https://github.com/stdlib-js/stdlib/commit/75026039180c76cf376d7550d7470c57a11780cd) - **feat:** add C implementation for `math/base/special/betaln` _(by Gunj Joshi, Philipp Burckhardt)_ - [`5cd396f`](https://github.com/stdlib-js/stdlib/commit/5cd396ff2752de587151f2f8b50d36348db3321e) - **refactor:** use bitwise operation and make casting behavior explicit [(#2733)](https://github.com/stdlib-js/stdlib/pull/2733) _(by Gunj Joshi)_ diff --git a/LICENSE b/LICENSE index 1e5870841..25d25b913 100644 --- a/LICENSE +++ b/LICENSE @@ -246,7 +246,7 @@ DEALINGS IN THE SOFTWARE. Version 2.0, January 2004 http://www.apache.org/licenses/ -* SLATEC Common Mathematical Library +* SLATEC Common Mathematical Library Public domain. diff --git a/base/special/betaln/LICENSE b/base/special/betaln/LICENSE index 21c3015aa..995b389e4 100644 --- a/base/special/betaln/LICENSE +++ b/base/special/betaln/LICENSE @@ -182,6 +182,6 @@ The library links against the following external libraries or contains implementations from the following external libraries, which have their own licenses: -* SLATEC Common Mathematical Library +* SLATEC Common Mathematical Library Public domain. diff --git a/base/special/betaln/lib/dceval.js b/base/special/betaln/lib/dceval.js index 1c1efa2b4..788fbc023 100644 --- a/base/special/betaln/lib/dceval.js +++ b/base/special/betaln/lib/dceval.js @@ -18,7 +18,7 @@ * * ## Notice * -* The code is adapted from the Fortran routine from the FNLIB library of the [SLATEC Common Mathematical Library]{@link http://www.netlib.no/netlib/slatec/fnlib/}. +* The code is adapted from the Fortran routine from the FNLIB library of the [SLATEC Common Mathematical Library]{@link https://netlib.org/slatec/fnlib/dcsevl.f}. * * The original code was developed by W. Fullerton of Los Alamos Scientific Laboratory, a governmental institution, and is therefore public domain. */ diff --git a/base/special/betaln/lib/gamma_correction.js b/base/special/betaln/lib/gamma_correction.js index 35f9a5203..9d5b99043 100644 --- a/base/special/betaln/lib/gamma_correction.js +++ b/base/special/betaln/lib/gamma_correction.js @@ -18,7 +18,7 @@ * * ## Notice * -* The code is adapted from the Fortran routine from the FNLIB library of the [SLATEC Common Mathematical Library]{@link http://www.netlib.no/netlib/fn/d9lgmc.f}. +* The code is adapted from the Fortran routine from the FNLIB library of the [SLATEC Common Mathematical Library]{@link https://netlib.org/fn/d9lgmc.f}. * * The original code was developed by W. Fullerton of Los Alamos Scientific Laboratory, a governmental institution, and is therefore public domain. */ diff --git a/base/special/betaln/lib/main.js b/base/special/betaln/lib/main.js index c2f0d04d7..628015ff3 100644 --- a/base/special/betaln/lib/main.js +++ b/base/special/betaln/lib/main.js @@ -18,7 +18,7 @@ * * ## Notice * -* The code is adapted from the Fortran routine from the FNLIB library of the [SLATEC Common Mathematical Library]{@link http://www.netlib.no/netlib/slatec/fnlib/albeta.f}. +* The code is adapted from the Fortran routine from the FNLIB library of the [SLATEC Common Mathematical Library]{@link https://www.netlib.org/slatec/fnlib/albeta.f}. * * The original code was developed by W. Fullerton of Los Alamos Scientific Laboratory, a governmental institution, and is therefore public domain. */