File tree Expand file tree Collapse file tree
base/special/lucasf/benchmark Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44
55<section class="release" id="unreleased">
66
7- ## Unreleased (2025-12-17 )
7+ ## Unreleased (2025-12-18 )
88
99<section class="features">
1010
@@ -709,6 +709,7 @@ A total of 74 issues were closed in this release:
709709
710710<details>
711711
712+ - [`25dd8e1`](https://github.com/stdlib-js/stdlib/commit/25dd8e1fedfc74790135de764cebd854ca6a2fa2) - **bench:** use powf in lucasf [(#9193)](https://github.com/stdlib-js/stdlib/pull/9193) _(by Sagar Ratna Chaudhary)_
712713- [`b50060a`](https://github.com/stdlib-js/stdlib/commit/b50060a7145e4f34152573dae067322c16d40b6c) - **feat:** update `math/base/special` TypeScript declarations [(#9117)](https://github.com/stdlib-js/stdlib/pull/9117) _(by stdlib-bot)_
713714- [`95c53cf`](https://github.com/stdlib-js/stdlib/commit/95c53cf567009172f1105fda7228717e609e7ff5) - **docs:** improve doctests for complex number instances in `math/base/special/csignumf` [(#9042)](https://github.com/stdlib-js/stdlib/pull/9042) _(by Prajjwal Bajpai, Athan Reines)_
714715- [`2067ee5`](https://github.com/stdlib-js/stdlib/commit/2067ee5afec9a02107768999993f6fb05dbbce56) - **chore:** fix JavaScript lint errors [(#8992)](https://github.com/stdlib-js/stdlib/pull/8992) _(by Rohit R Bhat)_
@@ -1848,7 +1849,7 @@ A total of 74 issues were closed in this release:
18481849
18491850### Contributors
18501851
1851- A total of 57 people contributed to this release. Thank you to the following contributors:
1852+ A total of 58 people contributed to this release. Thank you to the following contributors:
18521853
18531854- Aayush Khanna
18541855- Aman Singh
@@ -1900,6 +1901,7 @@ A total of 57 people contributed to this release. Thank you to the following con
19001901- Rohit R Bhat
19011902- SAHIL KUMAR
19021903- Sachin Pangal
1904+ - Sagar Ratna Chaudhary
19031905- Sahil Goyal
19041906- Sanchay Ketan Sinha
19051907- Saurabh Singh
Original file line number Diff line number Diff line change 2323var bench = require ( '@stdlib/bench' ) ;
2424var discreteUniform = require ( '@stdlib/random/array/discrete-uniform' ) ;
2525var roundf = require ( './../../../../base/special/roundf' ) ;
26- var pow = require ( './../../../../base/special/pow ' ) ;
26+ var powf = require ( './../../../../base/special/powf ' ) ;
2727var isnanf = require ( './../../../../base/assert/is-nanf' ) ;
2828var PHI = require ( '@stdlib/constants/float32/phi' ) ;
2929var zeros = require ( '@stdlib/array/base/zeros' ) ;
@@ -68,8 +68,7 @@ bench( pkg+'::analytic', function benchmark( b ) {
6868 } ) ;
6969
7070 function lucasf ( n ) {
71- // TODO: replace with `powf` when available
72- return roundf ( pow ( PHI , n ) ) ;
71+ return roundf ( powf ( PHI , n ) ) ;
7372 }
7473
7574 b . tic ( ) ;
You can’t perform that action at this time.
0 commit comments