Skip to content

Commit c79716f

Browse files
committed
chore: clean-up
--- 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: passed - 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: passed - 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 51e3867 commit c79716f

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

lib/node_modules/@stdlib/stats/base/dists/frechet/logpdf/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,6 @@ for ( i = 0; i < 100; i++ ) {
170170

171171
<!-- /.examples -->
172172

173-
174173
<!-- C interface documentation. -->
175174

176175
* * *

lib/node_modules/@stdlib/stats/base/dists/frechet/logpdf/benchmark/c/benchmark.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
* limitations under the License.
1717
*/
1818

19+
#include "stdlib/stats/base/dists/frechet/logpdf.h"
20+
#include "stdlib/constants/float64/eps.h"
1921
#include <stdlib.h>
2022
#include <stdio.h>
2123
#include <math.h>
2224
#include <time.h>
2325
#include <sys/time.h>
24-
#include "stdlib/stats/base/dists/frechet/logpdf.h"
25-
#include "stdlib/constants/float64/eps.h"
2626

2727
#define NAME "frechet-logpdf"
2828
#define ITERATIONS 1000000

lib/node_modules/@stdlib/stats/base/dists/frechet/logpdf/src/addon.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,4 @@
1919
#include "stdlib/stats/base/dists/frechet/logpdf.h"
2020
#include "stdlib/math/base/napi/quaternary.h"
2121

22-
// cppcheck-suppress shadowFunction
2322
STDLIB_MATH_BASE_NAPI_MODULE_DDDD_D( stdlib_base_dists_frechet_logpdf )

lib/node_modules/@stdlib/stats/base/dists/frechet/logpdf/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
/**
2727
* Evaluates the logarithm of the probability density function (PDF) for a Fréchet distribution with shape `alpha`, scale `s`, and location `m` at a value `x`.
2828
*
29-
* @param x input value
29+
* @param x input value
3030
* @param alpha shape parameter
3131
* @param s scale parameter
3232
* @param m location parameter

0 commit comments

Comments
 (0)