Skip to content

Commit 8e4af09

Browse files
committed
style: add empty lines between code generation blocks
--- 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 8b654d1 commit 8e4af09

File tree

1 file changed

+10
-4
lines changed
  • lib/node_modules/@stdlib/math/base/special/kernel-sincos/src

1 file changed

+10
-4
lines changed

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

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ static double polyval_s24( const double x ) {
3838
return 0.00833333333332249 + (x * (-0.0001984126982985795 + (x * 0.0000027557313707070068)));
3939
}
4040

41-
// END: polyval_s24// BEGIN: polyval_s56
41+
// END: polyval_s24
42+
43+
// BEGIN: polyval_s56
4244

4345
/**
4446
* Evaluates a polynomial.
@@ -56,7 +58,9 @@ static double polyval_s56( const double x ) {
5658
return -2.5050760253406863e-8 + (x * 1.58969099521155e-10);
5759
}
5860

59-
// END: polyval_s56// BEGIN: polyval_c13
61+
// END: polyval_s56
62+
63+
// BEGIN: polyval_c13
6064

6165
/**
6266
* Evaluates a polynomial.
@@ -74,7 +78,9 @@ static double polyval_c13( const double x ) {
7478
return 0.0416666666666666 + (x * (-0.001388888888887411 + (x * 0.00002480158728947673)));
7579
}
7680

77-
// END: polyval_c13// BEGIN: polyval_c46
81+
// END: polyval_c13
82+
83+
// BEGIN: polyval_c46
7884

7985
/**
8086
* Evaluates a polynomial.
@@ -95,7 +101,7 @@ static double polyval_c46( const double x ) {
95101
// END: polyval_c46
96102

97103
/**
98-
* Simultaneously computes the sine and cosine of an angle measured in radians on the interval \\( \approx \[-\pi/4, \pi/4\] \\) (except for \\(-0\\)), where \\( \pi/4 \approx 0.7854 \\).
104+
* Simultaneously computes the sine and cosine of an angle measured in radians within the interval \\( \approx \[-\pi/4, \pi/4\] \\) (except for \\(-0\\)), where \\( \pi/4 \approx 0.7854 \\), and stores the results in the provided output parameters.
99105
*
100106
* @param x input value (in radians, assumed to be bounded by `~π/4` in magnitude)
101107
* @param y tail of `x`

0 commit comments

Comments
 (0)