Skip to content

Commit b50909e

Browse files
committed
Remove TODO list comment
1 parent ce68f02 commit b50909e

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

pymc/distributions/multivariate.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2488,7 +2488,7 @@ def dist(cls, sigma=1, zerosum_axes=None, support_shape=None, **kwargs):
24882488
if support_shape is None:
24892489
if zerosum_axes > 0:
24902490
raise ValueError("You must specify dims, shape or support_shape parameter")
2491-
# edge-case doesn't work for now, because at.stack in get_support_shape fails
2491+
# TODO: edge-case doesn't work for now, because at.stack in get_support_shape fails
24922492
# else:
24932493
# support_shape = () # because it's just a Normal in that case
24942494
support_shape = at.as_tensor_variable(intX(support_shape))
@@ -2552,12 +2552,6 @@ def rv_op(cls, sigma, zerosum_axes, support_shape, size=None):
25522552
ndim_supp=zerosum_axes,
25532553
)(normal_dist, sigma, support_shape)
25542554

2555-
# TODO:
2556-
# test get_support_shape with 2D
2557-
# test ZSN logp
2558-
# test ZSN variance
2559-
# fix failing Ubuntu test
2560-
25612555

25622556
@_change_dist_size.register(ZeroSumNormalRV)
25632557
def change_zerosum_size(op, normal_dist, new_size, expand=False):

0 commit comments

Comments
 (0)