Skip to content

Commit b5cea72

Browse files
author
Aadish Jain
committed
feat(binomial-cdf): made the suggested changes
1 parent 4d65fac commit b5cea72

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/binomial/cdf/include/stdlib/stats/base/dists/binomial

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/dists/binomial/cdf/include/stdlib/stats/base/dists/binomial/cdf.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ extern "C" {
3434
* @param p success probability
3535
* @return evaluated CDF
3636
*/
37-
double stdlib_base_dists_binomial_cdf( const int k, const int n, const double p );
37+
double stdlib_base_dists_binomial_cdf( const int64_t k, const int64_t n, const double p );
3838

3939
#ifdef __cplusplus
4040
}
4141
#endif
4242

43-
#endif // !STDLIB_STATS_BASE_DISTS_BINOMIAL_CDF_H
43+
#endif // !STDLIB_STATS_BASE_DISTS_BINOMIAL_CDF_H

0 commit comments

Comments
 (0)