Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Aug 11, 2024
1 parent 50869eb commit d4c3621
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5962,6 +5962,7 @@ A total of 30 people contributed to this release. Thank you to the following con

<details>

- [`01126b1`](https://github.com/stdlib-js/stdlib/commit/01126b1a0519c87778b802efd352d3117028bb88) - **style:** compare `n` with `integer`, not a `double` in `math/base/special/binomcoefln` [(#2775)](https://github.com/stdlib-js/stdlib/pull/2775 ) _(by Gunj Joshi)_
- [`068bc90`](https://github.com/stdlib-js/stdlib/commit/068bc905997d518fef79bd94f22772f02a8915c4) - **docs:** add comment, revert to previous tolerance in `math/base/special/factorialln` [(#2778)](https://github.com/stdlib-js/stdlib/pull/2778) _(by Gunj Joshi)_
- [`18bd1b5`](https://github.com/stdlib-js/stdlib/commit/18bd1b5ace1a7dbd9d26bb66c1a1f0aa91573416) - **feat:** add C implementation for `math/base/special/besselj1` _(by Gunj Joshi, Philipp Burckhardt)_
- [`3985f47`](https://github.com/stdlib-js/stdlib/commit/3985f47c6ec78cc644a98aa916740a1b2d37338f) - **feat:** add C implementation for `math/base/special/gamma-delta-ratio` _(by Gunj Joshi, Athan Reines, Philipp Burckhardt)_
Expand Down
2 changes: 1 addition & 1 deletion base/special/binomcoefln/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* // returns ~3.332
*/
double stdlib_base_binomcoefln( const int64_t n, const int64_t k ) {
if ( n < 0.0 ) {
if ( n < 0 ) {
return stdlib_base_binomcoefln( -n + k - 1, k );
}
if ( k < 0 ) {
Expand Down

0 comments on commit d4c3621

Please sign in to comment.