From 2584191530aa3a327ca9609f9a5a29e771ffd32f Mon Sep 17 00:00:00 2001 From: jalajk3004 Date: Mon, 3 Mar 2025 16:08:24 +0530 Subject: [PATCH] edited --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na --- --- .../@stdlib/stats/base/dists/hypergeometric/logpmf/README.md | 2 +- .../@stdlib/stats/base/dists/hypergeometric/logpmf/src/main.c | 2 +- .../stats/base/dists/hypergeometric/logpmf/test/test.native.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/hypergeometric/logpmf/README.md b/lib/node_modules/@stdlib/stats/base/dists/hypergeometric/logpmf/README.md index 2798e66e45ab..1ea2f7790191 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/hypergeometric/logpmf/README.md +++ b/lib/node_modules/@stdlib/stats/base/dists/hypergeometric/logpmf/README.md @@ -200,7 +200,7 @@ The function accepts the following arguments: - **n**: `[in] int32_t` number of draws. ```c -double stdlib_base_dists_hypergeometric_logpmf ( const double x, const int32_t N, const int32_t K, const int32_t n ); +double stdlib_base_dists_hypergeometric_logpmf( const double x, const int32_t N, const int32_t K, const int32_t n ); ``` diff --git a/lib/node_modules/@stdlib/stats/base/dists/hypergeometric/logpmf/src/main.c b/lib/node_modules/@stdlib/stats/base/dists/hypergeometric/logpmf/src/main.c index 4a712cf680ce..887a0c34f430 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/hypergeometric/logpmf/src/main.c +++ b/lib/node_modules/@stdlib/stats/base/dists/hypergeometric/logpmf/src/main.c @@ -26,7 +26,7 @@ #include /** -* Evaluates the natural logarithm of the probability mass function (PMF) for a hypergeometric distribution with population size `N`, subpopulation size `K` and number of draws `n`. +* Evaluates the natural logarithm of the probability mass function (PMF) for a hypergeometric distribution with population size `N`, subpopulation size `K`, and number of draws `n`. * * @param x input value * @param N population size diff --git a/lib/node_modules/@stdlib/stats/base/dists/hypergeometric/logpmf/test/test.native.js b/lib/node_modules/@stdlib/stats/base/dists/hypergeometric/logpmf/test/test.native.js index 3ceaf3c515ae..5167ae9fe1c1 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/hypergeometric/logpmf/test/test.native.js +++ b/lib/node_modules/@stdlib/stats/base/dists/hypergeometric/logpmf/test/test.native.js @@ -68,7 +68,7 @@ tape( 'if provided an integer `x` greater than `min( n, K )`, the function retur t.equal( y, NINF, 'returns expected value' ); y = logpmf( 100, 20, 20, 10 ); - t.equal( y, NINF, 'returns -Infinity' ); + t.equal( y, NINF, 'returns expected value' ); t.end(); });