Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Trac #27328: fixup prot parameter in submethod
Browse files Browse the repository at this point in the history
  • Loading branch information
dkrenn committed Mar 28, 2019
1 parent c0b2168 commit de2dc6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/rings/polynomial/multi_polynomial_ideal.py
Original file line number Diff line number Diff line change
Expand Up @@ -525,11 +525,11 @@ def _groebner_basis_libsingular(self, algorithm="groebner", **kwds):
import sage.libs.singular.function_factory
groebner = sage.libs.singular.function_factory.ff.groebner

if get_verbose()>=2:
opt['prot'] = True
for name, value in iteritems(kwds):
if value is not None:
opt[name] = value
if get_verbose() >= 2:
opt['prot'] = True

if algorithm == "std":
S = std_libsingular(self)
Expand Down

0 comments on commit de2dc6c

Please sign in to comment.