Skip to content

Commit 09f0849

Browse files
committed
Tag to remove weird fix when sympy is updated
1 parent 8e15d95 commit 09f0849

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lips/algebraic_geometry/covariant_ideal.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def __init__(self, ring_or_multiplicity, generators_or_covariants, momentum_cons
3333
oParticles.make_analytical_d()
3434
generators = []
3535
for covariant in generators_or_covariants:
36-
poly_or_polys = 4 * oParticles(covariant)
36+
poly_or_polys = 4 * oParticles(covariant) # TODO: remove 4 * when https://github.com/sympy/sympy/pull/28139 is accepted
3737
if hasattr(poly_or_polys, 'shape'):
3838
polys = flatten(poly_or_polys)
3939
for poly in polys:
@@ -60,7 +60,7 @@ def __contains__(self, covariant):
6060
oParticles = Particles(self.multiplicity)
6161
oParticles.make_analytical_d()
6262
try:
63-
poly_or_polys = 4 * oParticles(covariant)
63+
poly_or_polys = 4 * oParticles(covariant) # TODO: remove 4 * when https://github.com/sympy/sympy/pull/28139 is accepted
6464
except TypeError:
6565
poly_or_polys = covariant
6666
if isinstance(poly_or_polys, numpy.ndarray):

0 commit comments

Comments
 (0)