Skip to content

Commit b91d1c1

Browse files
committed
Update release note
1 parent 07f09ad commit b91d1c1

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

RELEASE-NOTES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ It also brings some dreadfully awaited fixes, so be sure to go through the chang
2929
- Fixed mathematical formulation in `MvStudentT` random method. (see [#4359](https://github.com/pymc-devs/pymc3/pull/4359))
3030
- Fix issue in `logp` method of `HyperGeometric`. It now returns `-inf` for invalid parameters (see [4367](https://github.com/pymc-devs/pymc3/pull/4367))
3131
- Fixed `MatrixNormal` random method to work with parameters as random variables. (see [#4368](https://github.com/pymc-devs/pymc3/pull/4368))
32-
- Fix issue in `logcdf` methods of `Uniform`, `HalfNormal`, `Gamma` and `InverseGamma`. These functions now return correct values when evaluated with invalid parameters or values (see [4393](https://github.com/pymc-devs/pymc3/pull/4393))
32+
- Update the `logcdf` method of several continuous distributions to return -inf for invalid parameters and values, and raise informative errors when multiple values cannot be evaluated. (see [4393](https://github.com/pymc-devs/pymc3/pull/4393))
3333

3434
## PyMC3 3.10.0 (7 December 2020)
3535

pymc3/distributions/continuous.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3560,7 +3560,6 @@ def logcdf(self, value):
35603560
l = self.lower
35613561
u = self.upper
35623562
c = self.c
3563-
35643563
return tt.switch(
35653564
tt.le(value, l),
35663565
-np.inf,

0 commit comments

Comments
 (0)