Instructions
- Read the issue description below.
- Review the example pull requests linked below.
- Search the codebase for a package containing inline NaN generation in a C source file and update it according to this issue.
- Follow all additional guidance in this issue.
Description
This RFC proposes replacing inline NaN generation (e.g., 0.0/0.0 or 0.0f/0.0f) in C source files, examples, benchmarks, and README C usage snippets with the stdlib NaN constant from @stdlib/constants/float64/nan or @stdlib/constants/float32/nan.
In short, this RFC seeks to refactor code from this pattern:
to this pattern:
#include "stdlib/constants/float64/nan.h"
// ...
return STDLIB_CONSTANT_FLOAT64_NAN;
This refactoring is demonstrated in PR #11768 (float64) and PR #11769 (float32). Study both PRs before starting, as they demonstrate the exact changes being sought.
In particular, notice three things:
- We add the C header include for the NaN constant:
#include "stdlib/constants/float64/nan.h".
- We replace inline NaN generation with the macro
STDLIB_CONSTANT_FLOAT64_NAN.
- We add the dependency
@stdlib/constants/float64/nan to all manifest configuration entries (build, benchmark, examples) which compile the updated C source file.
By performing this refactoring, we facilitate:
- Consistent NaN handling across packages and targets.
- Better readability and maintainability in C implementations.
Float32
There are also inline float32 NaN occurrences written as 0.0f/0.0f which must be replaced with STDLIB_CONSTANT_FLOAT32_NAN from @stdlib/constants/float32/nan. The equivalent include is #include "stdlib/constants/float32/nan.h" and the manifest dependency is @stdlib/constants/float32/nan. The float32 migration is demonstrated in PR #11769.
Steps
-
Study the changes in PR #11768 (float64) and PR #11769 (float32), as these demonstrate the exact changes being sought.
-
Ensure your local development environment is set up by following the contributing guide, including running make install-node-modules and make init.
-
Find a package containing inline NaN generation in a C source file. A possible global project search can use the following regular expression:
From the search results, locate a package not already addressed by an open or merged PR referencing this issue.
-
Update that package, and only that package, to use STDLIB_CONSTANT_FLOAT64_NAN (or STDLIB_CONSTANT_FLOAT32_NAN for float32). Updated files may include src/main.c, examples/c/example.c, benchmark/c/benchmark.c, and any C code snippets in README.md.
-
When adding the #include statement, place it with the existing stdlib includes in the file, following the include ordering already present. Do not reorder existing includes.
-
Update manifest.json to add the NaN constant package as a dependency in every confs entry that compiles the updated C source file. This typically includes the build, benchmark, and examples task entries. For example (float64 shown; use @stdlib/constants/float32/nan for float32 packages):
{
"task": "build",
"src": [
"./src/main.c"
],
"include": [
"./include"
],
"libraries": [],
"libpath": [],
"dependencies": [
- "@stdlib/some/existing/dep"
+ "@stdlib/some/existing/dep",
+ "@stdlib/constants/float64/nan"
]
}
-
Also check the package README.md for any C usage examples containing 0.0/0.0 or 0.0f/0.0f and update those to use the macro as well.
-
Build the Node add-on and run the C examples, benchmarks, and native tests using the commands below. Replace <package-path> with the path of the package you updated (e.g., stats/strided/dnanmeanpn):
cd /path/to/stdlib
# Build the Node add-on for the specific package
make install-node-addons NODE_ADDONS_PATTERN="<package-path>"
# Run C examples, benchmarks, and native tests
make EXAMPLES_FILTER=".*/<package-path>/.*" examples-c
make BENCHMARKS_FILTER=".*/<package-path>/.*" benchmark-c
make test TESTS_FILTER=".*/<package-path>/.*"
Verify that the test and example output after refactoring is identical to what it was before (i.e., NaN is returned wherever expected). No behavioral changes should result from this refactor.
-
Before opening a PR, search existing open pull requests that reference this issue to confirm no one has already submitted the same package.
-
Commit your changes and submit a PR updating only that package.
-
Use the appropriate PR title template based on which constant you replaced:
For float64 packages:
refactor: use `constants/float64/nan` in <package-name>
For float32 packages:
refactor: use `constants/float32/nan` in <package-name>
-
In the PR body, use the phrase "Resolves a part of" followed by a link to this issue. Do not use "Resolves" or "Closes", as this is a tracking issue and your PR only addresses one package of many.
Related Issues
None.
Questions
None.
Other
- For each pull request, please update only one package.
- Do not make unrelated or stylistic changes. Only replace inline NaN generation with the shared NaN constant and make the required dependency and include updates. Failure to respect this guidance will result in your PR being closed without review.
- Before opening a PR, verify that no existing open PR already addresses the same package by searching pull requests that reference this issue.
- As this is a Good First Issue, you are strongly encouraged to avoid using AI when authoring your contribution. One of the primary intents of Good First Issues is to help introduce you to stdlib, its development environment, and the contribution process, as documented in the contributing guide. Most new contributors are unfamiliar with stdlib and its conventions, and thus fail to appropriately use AI assistance, most often generating low-quality output that leads to wasted time for everyone involved. Take the time to manually author your first several PRs, and once you are intimately familiar with project conventions, you can consider leveraging AI to augment your development tasks.
Checklist
Instructions
Description
This RFC proposes replacing inline NaN generation (e.g.,
0.0/0.0or0.0f/0.0f) in C source files, examples, benchmarks, and README C usage snippets with the stdlib NaN constant from@stdlib/constants/float64/nanor@stdlib/constants/float32/nan.In short, this RFC seeks to refactor code from this pattern:
to this pattern:
This refactoring is demonstrated in PR #11768 (float64) and PR #11769 (float32). Study both PRs before starting, as they demonstrate the exact changes being sought.
In particular, notice three things:
#include "stdlib/constants/float64/nan.h".STDLIB_CONSTANT_FLOAT64_NAN.@stdlib/constants/float64/nanto all manifest configuration entries (build,benchmark,examples) which compile the updated C source file.By performing this refactoring, we facilitate:
Float32
There are also inline float32 NaN occurrences written as
0.0f/0.0fwhich must be replaced withSTDLIB_CONSTANT_FLOAT32_NANfrom@stdlib/constants/float32/nan. The equivalent include is#include "stdlib/constants/float32/nan.h"and the manifest dependency is@stdlib/constants/float32/nan. The float32 migration is demonstrated in PR #11769.Steps
Study the changes in PR #11768 (float64) and PR #11769 (float32), as these demonstrate the exact changes being sought.
Ensure your local development environment is set up by following the contributing guide, including running
make install-node-modulesandmake init.Find a package containing inline NaN generation in a C source file. A possible global project search can use the following regular expression:
From the search results, locate a package not already addressed by an open or merged PR referencing this issue.
Update that package, and only that package, to use
STDLIB_CONSTANT_FLOAT64_NAN(orSTDLIB_CONSTANT_FLOAT32_NANfor float32). Updated files may includesrc/main.c,examples/c/example.c,benchmark/c/benchmark.c, and any C code snippets inREADME.md.When adding the
#includestatement, place it with the existing stdlib includes in the file, following the include ordering already present. Do not reorder existing includes.Update
manifest.jsonto add the NaN constant package as a dependency in everyconfsentry that compiles the updated C source file. This typically includes thebuild,benchmark, andexamplestask entries. For example (float64 shown; use@stdlib/constants/float32/nanfor float32 packages):{ "task": "build", "src": [ "./src/main.c" ], "include": [ "./include" ], "libraries": [], "libpath": [], "dependencies": [ - "@stdlib/some/existing/dep" + "@stdlib/some/existing/dep", + "@stdlib/constants/float64/nan" ] }Also check the package
README.mdfor any C usage examples containing0.0/0.0or0.0f/0.0fand update those to use the macro as well.Build the Node add-on and run the C examples, benchmarks, and native tests using the commands below. Replace
<package-path>with the path of the package you updated (e.g.,stats/strided/dnanmeanpn):Verify that the test and example output after refactoring is identical to what it was before (i.e.,
NaNis returned wherever expected). No behavioral changes should result from this refactor.Before opening a PR, search existing open pull requests that reference this issue to confirm no one has already submitted the same package.
Commit your changes and submit a PR updating only that package.
Use the appropriate PR title template based on which constant you replaced:
For float64 packages:
For float32 packages:
In the PR body, use the phrase "Resolves a part of" followed by a link to this issue. Do not use "Resolves" or "Closes", as this is a tracking issue and your PR only addresses one package of many.
Related Issues
None.
Questions
None.
Other
Checklist
RFC:.