File tree Expand file tree Collapse file tree 3 files changed +8
-9
lines changed
lib/node_modules/@stdlib/math/base/special/negalucasf Expand file tree Collapse file tree 3 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 23
23
var isnanf = require ( '@stdlib/math/base/assert/is-nanf' ) ;
24
24
var isIntegerf = require ( '@stdlib/math/base/assert/is-integerf' ) ;
25
25
var absf = require ( '@stdlib/math/base/special/absf' ) ;
26
+ var MAX_LUCAS = require ( '@stdlib/constants/float32/max-safe-nth-lucas' ) ;
26
27
var NEGALUCAS = require ( './negalucas.json' ) ;
27
28
28
29
29
- // VARIABLES //
30
-
31
- var MAX_LUCAS = 34 ;
32
-
33
-
34
30
// MAIN //
35
31
36
32
/**
Original file line number Diff line number Diff line change 37
37
"libpath" : [],
38
38
"dependencies" : [
39
39
" @stdlib/math/base/napi/unary" ,
40
- " @stdlib/math/base/special/labs"
40
+ " @stdlib/math/base/special/labs" ,
41
+ " @stdlib/constants/float32/max-safe-nth-lucas"
41
42
]
42
43
},
43
44
{
51
52
"libraries" : [],
52
53
"libpath" : [],
53
54
"dependencies" : [
54
- " @stdlib/math/base/special/labs"
55
+ " @stdlib/math/base/special/labs" ,
56
+ " @stdlib/constants/float32/max-safe-nth-lucas"
55
57
]
56
58
},
57
59
{
65
67
"libraries" : [],
66
68
"libpath" : [],
67
69
"dependencies" : [
68
- " @stdlib/math/base/special/labs"
70
+ " @stdlib/math/base/special/labs" ,
71
+ " @stdlib/constants/float32/max-safe-nth-lucas"
69
72
]
70
73
}
71
74
]
Original file line number Diff line number Diff line change 18
18
19
19
#include "stdlib/math/base/special/negalucasf.h"
20
20
#include "stdlib/math/base/special/labs.h"
21
- #define STDLIB_CONSTANT_FLOAT32_MAX_SAFE_NTH_LUCAS 34
21
+ #include "stdlib/constants/float32/max_safe_nth_lucas.h"
22
22
23
23
static const int32_t negalucasf_value [ 35 ] = {
24
24
2 ,
You can’t perform that action at this time.
0 commit comments