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 Dec 13, 2024
1 parent 9c90b2b commit a92f0d5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -570,6 +570,7 @@ A total of 7 people contributed to this release. Thank you to the following cont

<details>

- [`11d30d5`](https://github.com/stdlib-js/stdlib/commit/11d30d555880163ecca9b5aa49624acf8855ca3f) - **docs:** update examples _(by Athan Reines)_
- [`5c28376`](https://github.com/stdlib-js/stdlib/commit/5c28376c28904602fd17dec34d0c40b67070d941) - **feat:** add `constants/float32/sqrt-two-pi` [(#3345)](https://github.com/stdlib-js/stdlib/pull/3345) _(by Vivek maurya, stdlib-bot, Athan Reines)_
- [`ed63505`](https://github.com/stdlib-js/stdlib/commit/ed6350530cfae8d685f02987681d7933b83d88b7) - **feat:** add `constants/float32/max-safe-nth-lucas` [(#3337)](https://github.com/stdlib-js/stdlib/pull/3337) _(by Aayush Khanna, Athan Reines)_
- [`5a4f6ed`](https://github.com/stdlib-js/stdlib/commit/5a4f6edd9eb9e71c3b86e37bebc0d9125efe4931) - **feat:** add `constants/float32/ln-half` [(#3333)](https://github.com/stdlib-js/stdlib/pull/3333) _(by Vivek maurya, Athan Reines, Gunj Joshi, stdlib-bot)_
Expand Down
5 changes: 2 additions & 3 deletions float64/max-safe-nth-lucas/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,6 @@ var bool = ( FLOAT64_MAX_SAFE_NTH_LUCAS === 76 );
```javascript
var FLOAT64_MAX_SAFE_NTH_LUCAS = require( '@stdlib/constants/float64/max-safe-nth-lucas' );

var v;
var i;

function lucas( n ) {
var a;
var b;
Expand All @@ -80,6 +77,8 @@ function lucas( n ) {
return b;
}

var v;
var i;
for ( i = 0; i < 100; i++ ) {
v = lucas( i );
if ( i > FLOAT64_MAX_SAFE_NTH_LUCAS ) {
Expand Down
5 changes: 2 additions & 3 deletions float64/max-safe-nth-lucas/examples/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@

var FLOAT64_MAX_SAFE_NTH_LUCAS = require( './../lib' ); // eslint-disable-line id-length

var v;
var i;

function lucas( n ) {
var a;
var b;
Expand All @@ -42,6 +39,8 @@ function lucas( n ) {
return b;
}

var v;
var i;
for ( i = 0; i < 100; i++ ) {
v = lucas( i );
if ( i > FLOAT64_MAX_SAFE_NTH_LUCAS ) {
Expand Down

0 comments on commit a92f0d5

Please sign in to comment.