Skip to content

Commit 3cd40dc

Browse files
committed
fix: revert changes in unrelated files
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: passed - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent f033ec6 commit 3cd40dc

File tree

1 file changed

+0
-37
lines changed
  • lib/node_modules/@stdlib/math/base/special/kernel-cos/src

1 file changed

+0
-37
lines changed

lib/node_modules/@stdlib/math/base/special/kernel-cos/src/main.c

Lines changed: 0 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -145,40 +145,3 @@ double stdlib_base_kernel_cos( const double x, const double y ) {
145145
w = 1.0 - hz;
146146
return w + ( ((1.0-w) - hz) + ((z*r) - (x*y)) );
147147
}
148-
// BEGIN: polyval_c01
149-
150-
/**
151-
* Evaluates a polynomial.
152-
*
153-
* ## Notes
154-
*
155-
* - The implementation uses [Horner's rule][horners-method] for efficient computation.
156-
*
157-
* [horners-method]: https://en.wikipedia.org/wiki/Horner%27s_method
158-
*
159-
* @param x value at which to evaluate the polynomial
160-
* @return evaluated polynomial
161-
*/
162-
static float polyval_c01( const float x ) {
163-
return -0.499999997251031f + (x * 0.04166662332373906f);
164-
}
165-
166-
// END: polyval_c01// BEGIN: polyval_c23
167-
168-
/**
169-
* Evaluates a polynomial.
170-
*
171-
* ## Notes
172-
*
173-
* - The implementation uses [Horner's rule][horners-method] for efficient computation.
174-
*
175-
* [horners-method]: https://en.wikipedia.org/wiki/Horner%27s_method
176-
*
177-
* @param x value at which to evaluate the polynomial
178-
* @return evaluated polynomial
179-
*/
180-
static float polyval_c23( const float x ) {
181-
return -0.001388676377460993f + (x * 0.00002439044879627741f);
182-
}
183-
184-
// END: polyval_c23

0 commit comments

Comments
 (0)