forked from stdlib-js/stdlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: update
math/base/special/hypotf
to follow latest project …
…conventions PR-URL: stdlib-js#4783 Co-authored-by: Athan Reines <[email protected]> Reviewed-by: Athan Reines <[email protected]>
- Loading branch information
1 parent
94d01c2
commit 1a331ab
Showing
9 changed files
with
194 additions
and
166 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
167 changes: 85 additions & 82 deletions
167
lib/node_modules/@stdlib/math/base/special/hypotf/manifest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,84 +1,87 @@ | ||
{ | ||
"options": { | ||
"task": "build" | ||
}, | ||
"fields": [ | ||
{ | ||
"field": "src", | ||
"resolve": true, | ||
"relative": true | ||
}, | ||
{ | ||
"field": "include", | ||
"resolve": true, | ||
"relative": true | ||
}, | ||
{ | ||
"field": "libraries", | ||
"resolve": false, | ||
"relative": false | ||
}, | ||
{ | ||
"field": "libpath", | ||
"resolve": true, | ||
"relative": false | ||
} | ||
], | ||
"confs": [ | ||
{ | ||
"task": "build", | ||
"src": [ | ||
"./src/hypotf.c" | ||
], | ||
"include": [ | ||
"./include" | ||
], | ||
"libraries": [ | ||
"-lm" | ||
], | ||
"libpath": [], | ||
"dependencies": [ | ||
"@stdlib/math/base/napi/binary", | ||
"@stdlib/math/base/assert/is-nanf", | ||
"@stdlib/math/base/assert/is-infinitef", | ||
"@stdlib/math/base/special/sqrtf" | ||
] | ||
}, | ||
{ | ||
"task": "benchmark", | ||
"src": [ | ||
"./src/hypotf.c" | ||
], | ||
"include": [ | ||
"./include" | ||
], | ||
"libraries": [ | ||
"-lm" | ||
], | ||
"libpath": [], | ||
"dependencies": [ | ||
"@stdlib/math/base/assert/is-nanf", | ||
"@stdlib/math/base/assert/is-infinitef", | ||
"@stdlib/math/base/special/sqrtf" | ||
] | ||
}, | ||
{ | ||
"task": "examples", | ||
"src": [ | ||
"./src/hypotf.c" | ||
], | ||
"include": [ | ||
"./include" | ||
], | ||
"libraries": [ | ||
"-lm" | ||
], | ||
"libpath": [], | ||
"dependencies": [ | ||
"@stdlib/math/base/assert/is-nanf", | ||
"@stdlib/math/base/assert/is-infinitef", | ||
"@stdlib/math/base/special/sqrtf" | ||
] | ||
} | ||
] | ||
"options": { | ||
"task": "build" | ||
}, | ||
"fields": [ | ||
{ | ||
"field": "src", | ||
"resolve": true, | ||
"relative": true | ||
}, | ||
{ | ||
"field": "include", | ||
"resolve": true, | ||
"relative": true | ||
}, | ||
{ | ||
"field": "libraries", | ||
"resolve": false, | ||
"relative": false | ||
}, | ||
{ | ||
"field": "libpath", | ||
"resolve": true, | ||
"relative": false | ||
} | ||
], | ||
"confs": [ | ||
{ | ||
"task": "build", | ||
"src": [ | ||
"./src/main.c" | ||
], | ||
"include": [ | ||
"./include" | ||
], | ||
"libraries": [ | ||
"-lm" | ||
], | ||
"libpath": [], | ||
"dependencies": [ | ||
"@stdlib/math/base/napi/binary", | ||
"@stdlib/math/base/assert/is-nanf", | ||
"@stdlib/math/base/assert/is-infinitef", | ||
"@stdlib/math/base/special/sqrtf", | ||
"@stdlib/constants/float32/pinf" | ||
] | ||
}, | ||
{ | ||
"task": "benchmark", | ||
"src": [ | ||
"./src/main.c" | ||
], | ||
"include": [ | ||
"./include" | ||
], | ||
"libraries": [ | ||
"-lm" | ||
], | ||
"libpath": [], | ||
"dependencies": [ | ||
"@stdlib/math/base/assert/is-nanf", | ||
"@stdlib/math/base/assert/is-infinitef", | ||
"@stdlib/math/base/special/sqrtf", | ||
"@stdlib/constants/float32/pinf" | ||
] | ||
}, | ||
{ | ||
"task": "examples", | ||
"src": [ | ||
"./src/main.c" | ||
], | ||
"include": [ | ||
"./include" | ||
], | ||
"libraries": [ | ||
"-lm" | ||
], | ||
"libpath": [], | ||
"dependencies": [ | ||
"@stdlib/math/base/assert/is-nanf", | ||
"@stdlib/math/base/assert/is-infinitef", | ||
"@stdlib/math/base/special/sqrtf", | ||
"@stdlib/constants/float32/pinf" | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.