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

Commit

Permalink
Link to msolve spkg page
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Sep 15, 2022
1 parent c298818 commit dd08bb1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/sage/rings/polynomial/msolve.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
based on msolve. Currently the only supported operation is the computation of
the variety of zero-dimensional ideal over the rationals.
Note that msolve must be installed separately.
Note that the `optional package msolve <../spkg/msolve.html>`_ must be installed.
.. SEEALSO::
Expand Down
16 changes: 8 additions & 8 deletions src/sage/rings/polynomial/multi_polynomial_ideal.py
Original file line number Diff line number Diff line change
Expand Up @@ -2391,7 +2391,8 @@ def variety(self, ring=None, *, algorithm="triangular_decomposition", proof=True
{y: 0.3611030805286474?, x: 2.769292354238632?},
{y: 1, x: 1}]
We can also use the external program msolve to compute the variety.
We can also use the `optional package msolve <../spkg/msolve.html>`_
to compute the variety.
See :mod:`~sage.rings.polynomial.msolve` for more information.
sage: I.variety(RBF, algorithm='msolve', proof=False) # optional - msolve
Expand Down Expand Up @@ -2467,9 +2468,9 @@ def variety(self, ring=None, *, algorithm="triangular_decomposition", proof=True
uses triangular decomposition, via Singular if possible, falling back
on a toy implementation otherwise.
- With ``algorithm`` = ``"msolve"``, calls the external program
`msolve <https://msolve.lip6.fr/>`_ (if available in the system
program search path). Note that msolve uses heuristics and therefore
- With ``algorithm`` = ``"msolve"``, uses the
`optional package msolve <../spkg/msolve.html>`_.
Note that msolve uses heuristics and therefore
requires setting the ``proof`` flag to ``False``. See
:mod:`~sage.rings.polynomial.msolve` for more information.
"""
Expand Down Expand Up @@ -4013,7 +4014,7 @@ def groebner_basis(self, algorithm='', deg_bound=None, mult_bound=None, prot=Fal
Macaulay2's ``GroebnerBasis`` command with the strategy "MGB" (if available)
'msolve'
`msolve <https://msolve.lip6.fr/>`_ (if available, degrevlex order,
`optional package msolve <../spkg/msolve.html>`_ (degrevlex order,
prime fields)
'magma:GroebnerBasis'
Expand Down Expand Up @@ -4139,9 +4140,8 @@ def groebner_basis(self, algorithm='', deg_bound=None, mult_bound=None, prot=Fal
sage: I.groebner_basis('macaulay2:mgb') # optional - macaulay2
[c^3 + 28*c^2 - 37*b + 13*c, b^2 - 41*c^2 + 20*b - 20*c, b*c - 19*c^2 + 10*b + 40*c, a + 2*b + 2*c - 1]
Over prime fields of small characteristic, we can also use
`msolve <https://msolve.lip6.fr/>`_ (if available in the system program
search path)::
Over prime fields of small characteristic, we can also use the
`optional package msolve <../spkg/msolve.html>`_::
sage: R.<a,b,c> = PolynomialRing(GF(101), 3)
sage: I = sage.rings.ideal.Katsura(R,3) # regenerate to prevent caching
Expand Down

0 comments on commit dd08bb1

Please sign in to comment.