# HG changeset patch
# Parent 0c9b9dadda729bba6ff4902285d75f8f76d14ff2
diff --git a/sage/rings/polynomial/multi_polynomial_ideal.py b/sage/rings/polynomial/multi_polynomial_ideal.py
|
a
|
b
|
|
| 761 | 761 | return matrix(self.ring(), S) |
| 762 | 762 | |
| 763 | 763 | @libsingular_standard_options |
| 764 | | def _groebner_basis_libsingular(self, algorithm="groebner", redsb=True, red_tail=True): |
| | 764 | def _groebner_basis_libsingular(self, algorithm="groebner", *args, **kwds): |
| 765 | 765 | """ |
| 766 | 766 | Return the reduced Groebner basis of this ideal. If the |
| 767 | 767 | Groebner basis for this ideal has been calculated before the |
| … |
… |
|
| 809 | 809 | b*d^4 - b + d^5 - d, b*c - b*d + c^2*d^4 + c*d - 2*d^2, |
| 810 | 810 | b^2 + 2*b*d + d^2, a + b + c + d] |
| 811 | 811 | |
| 812 | | ALGORITHM: Uses libSINGULAR. |
| | 812 | ALGORITHM: |
| | 813 | |
| | 814 | Uses libSINGULAR. |
| 813 | 815 | """ |
| 814 | 816 | from sage.rings.polynomial.multi_polynomial_ideal_libsingular import std_libsingular, slimgb_libsingular |
| 815 | 817 | from sage.libs.singular import singular_function |