Cleaning up last few things before the release I tried to add poission_binomial to the language but C++ issue arose and should be cleaned up so we can finally expose it (no rush though):
poisson_binomial_rng(int) and poisson_binomial_rng(real) fail to compile to C++ (I think the C++ was not written with these in mind but we typically support rngs for scalars as well)
poisson_binomial_rng(vector) and poisson_binomial_rng(row_vector) fail with expressions tests (I think the input is evaluated multiple times)
poisson_binomial_lpmf(int, int), poisson_binomial_lpmf(int, real), poisson_binomial_lpmf(array[] int, int), poisson_binomial_lpmf(array[] int, int) and the same for _cdf, _lcdf, _lccdf fail to compile to C++ (I think the C++ was not written with these in mind)
- the
_lpmf/_cdf/_lcdf/_lccdf do not compile for array[] real as the second argument.
Cleaning up last few things before the release I tried to add poission_binomial to the language but C++ issue arose and should be cleaned up so we can finally expose it (no rush though):
poisson_binomial_rng(int)andpoisson_binomial_rng(real)fail to compile to C++ (I think the C++ was not written with these in mind but we typically support rngs for scalars as well)poisson_binomial_rng(vector)andpoisson_binomial_rng(row_vector)fail with expressions tests (I think the input is evaluated multiple times)poisson_binomial_lpmf(int, int),poisson_binomial_lpmf(int, real),poisson_binomial_lpmf(array[] int, int),poisson_binomial_lpmf(array[] int, int)and the same for_cdf,_lcdf,_lccdffail to compile to C++ (I think the C++ was not written with these in mind)_lpmf/_cdf/_lcdf/_lccdfdo not compile forarray[] realas the second argument.