File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
lib/node_modules/@stdlib/math/base/special/lucasf Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ int main( void ) {
2525 float v ;
2626
2727 for ( i = 0 ; i < 35 ; i ++ ) {
28- v = stdlib_base_lucasf ( i );
28+ v = stdlib_base_lucas ( i );
2929 printf ( "lucasf(%d) = %lf\n" , i , v );
3030 }
3131}
Original file line number Diff line number Diff line change 2020#include "stdlib/math/base/napi/unary.h"
2121
2222// cppcheck-suppress shadowFunction
23- STDLIB_MATH_BASE_NAPI_MODULE_I_F ( stdlib_base_lucasf )
23+ STDLIB_MATH_BASE_NAPI_MODULE_I_F ( stdlib_base_lucas )
Original file line number Diff line number Diff line change 1919#include "stdlib/math/base/special/lucasf.h"
2020#include "stdlib/constants/float32/max_safe_nth_lucas.h"
2121
22- static const int32_t lucas_value [ 35 ] = {
22+ static const int32_t lucasf_value [ 35 ] = {
2323 2 ,
2424 1 ,
2525 3 ,
You can’t perform that action at this time.
0 commit comments