Skip to content

Commit ed638e3

Browse files
authored
docs: update Boost version and fix C function name in README.md
PR-URL: #2577 Reviewed-by: Philipp Burckhardt <[email protected]>
1 parent bf15cc4 commit ed638e3

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

lib/node_modules/@stdlib/math/base/special/digamma/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -141,15 +141,15 @@ for ( i = 0; i < 10; i++ ) {
141141
#include "stdlib/math/base/special/digamma.h"
142142
```
143143

144-
#### digamma( x )
144+
#### stdlib_base_digamma( x )
145145

146146
Evaluates the [digamma function][digamma-function].
147147

148148
```c
149-
double out = digamma( -2.5 );
149+
double out = stdlib_base_digamma( -2.5 );
150150
// returns ~1.103
151151

152-
out = digamma( 1.0 );
152+
out = stdlib_base_digamma( 1.0 );
153153
// returns ~-0.577
154154
```
155155

@@ -158,7 +158,7 @@ The function accepts the following arguments:
158158
- **x**: `[in] double` input value.
159159

160160
```c
161-
double digamma( const double x );
161+
double stdlib_base_digamma( const double x );
162162
```
163163
164164
</section>

lib/node_modules/@stdlib/math/base/special/digamma/lib/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*
1919
* ## Notice
2020
*
21-
* The original C++ code and copyright notice are from the [Boost library]{@link http://www.boost.org/doc/libs/1_53_0/libs/math/doc/sf_and_dist/html/math_toolkit/special/sf_gamma/digamma.html}. The implementation follows the original but has been modified for JavaScript.
21+
* The original C++ code and copyright notice are from the [Boost library]{@link https://www.boost.org/doc/libs/1_85_0/boost/math/special_functions/digamma.hpp}. The implementation follows the original but has been modified for JavaScript.
2222
*
2323
* ```text
2424
* (C) Copyright John Maddock 2006.

lib/node_modules/@stdlib/math/base/special/digamma/src/main.c

+6-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*
1919
* ## Notice
2020
*
21-
* The original C++ code and copyright notice are from the [Boost library]{@link http://www.boost.org/doc/libs/1_53_0/libs/math/doc/sf_and_dist/html/math_toolkit/special/sf_gamma/digamma.html}. The implementation follows the original but has been modified for JavaScript.
21+
* The original C++ code and copyright notice are from the [Boost library]{@link https://www.boost.org/doc/libs/1_85_0/boost/math/special_functions/digamma.hpp}. The implementation follows the original but has been modified for JavaScript.
2222
*
2323
* ```text
2424
* (C) Copyright John Maddock 2006.
@@ -62,7 +62,9 @@ static double polyval_p( const double x ) {
6262
return 0.08333333333333333 + (x * (-0.008333333333333333 + (x * (0.003968253968253968 + (x * (-0.004166666666666667 + (x * (0.007575757575757576 + (x * (-0.021092796092796094 + (x * (0.08333333333333333 + (x * -0.4432598039215686)))))))))))));
6363
}
6464

65-
// END: polyval_p// BEGIN: rational_pq
65+
// END: polyval_p
66+
67+
// BEGIN: rational_pq
6668

6769
/**
6870
* Evaluates a rational function (i.e., the ratio of two polynomials described by the coefficients stored in \\(P\\) and \\(Q\\)).
@@ -111,7 +113,7 @@ static double rational_pq( const double x ) {
111113
* @param x input value
112114
* @returns function value
113115
*/
114-
double asymptoticApprox( const double x ) {
116+
static double asymptoticApprox( const double x ) {
115117
double y;
116118
double z;
117119
double xc;
@@ -129,7 +131,7 @@ double asymptoticApprox( const double x ) {
129131
* @param x input value
130132
* @returns function value
131133
*/
132-
double rationalApprox( const double x ) {
134+
static double rationalApprox( const double x ) {
133135
double g;
134136
double r;
135137

0 commit comments

Comments
 (0)