We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
stdlib-js
Learn more about funding links in repositories.
Report abuse
1 parent 1b06282 commit 7ae0a0aCopy full SHA for 7ae0a0a
lib/node_modules/@stdlib/math/base/special/binet/benchmark/c/benchmark.c
@@ -16,7 +16,6 @@
16
* limitations under the License.
17
*/
18
19
-#include "stdlib/math/base/special/binet.h"
20
#include <stdlib.h>
21
#include <stdio.h>
22
#include <math.h>
@@ -112,7 +111,7 @@ static double benchmark( void ) {
112
111
113
t = tic();
114
for ( i = 0; i < ITERATIONS; i++ ) {
115
- y = stdlib_base_binet( x[ i%100 ] );
+ y = binet( x[ i%100 ] );
116
if ( y < 0 ) {
117
printf( "should return a nonnegative number\n" );
118
break;
The above coverage report was generated for the changes in this push.
1 commit comments
stdlib-bot commentedon Mar 31, 2025
Coverage Report
The above coverage report was generated for the changes in this push.