Skip to content

Commit

Permalink
sagemathgh-36611: fix the links to msolve spkg
Browse files Browse the repository at this point in the history
Links to spkg msolve in the manual are currently broken, e.g. in `https:
//doc.sagemath.org/html/en/reference/polynomial_rings/sage/rings/polynom
ial/multi_polynomial_ideal.html#sage.rings.polynomial.multi_polynomial_i
deal.MPolynomialIdeal.groebner_basis` the `msolve` entry in `ALGORITHMS`
:
`https://doc.sagemath.org/html/en/reference/polynomial_rings/sage/rings/
spkg/msolve.html` is  404.

We fix this.

URL: sagemath#36611
Reported by: Dima Pasechnik
Reviewer(s): John H. Palmieri
  • Loading branch information
Release Manager committed Nov 1, 2023
2 parents 85e0f54 + 7350ac3 commit 634d3bf
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions build/pkgs/configure/checksums.ini
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
tarball=configure-VERSION.tar.gz
sha1=0f90c993748bfc21ae382ac3ce6c19b434edb36c
md5=b8d9355c732997566f68b60c8a8eb9cc
cksum=2280021929
sha1=bf9f204b6e57d214d26000891d41a14e1aa35d02
md5=00e65c816d78323b5a2ff3404237523d
cksum=422414491
2 changes: 1 addition & 1 deletion build/pkgs/configure/package-version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
c0221f90a86e4b4bea4b45ff8de54727313bd755
55a0f6b93ae80a4d065a3948ceddaf1836637365
2 changes: 1 addition & 1 deletion src/sage/rings/polynomial/msolve.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
This module provide implementations of some operations on polynomial ideals
based on msolve.
Note that the `optional package msolve <../spkg/msolve.html>`_ must be installed.
Note that the `optional package msolve <../../../../spkg/msolve.html>`_ must be installed.
.. SEEALSO::
Expand Down
8 changes: 4 additions & 4 deletions src/sage/rings/polynomial/multi_polynomial_ideal.py
Original file line number Diff line number Diff line change
Expand Up @@ -2585,7 +2585,7 @@ 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 `optional package msolve <../spkg/msolve.html>`_
We can also use the `optional package msolve <../../../../spkg/msolve.html>`_
to compute the variety.
See :mod:`~sage.rings.polynomial.msolve` for more information. ::
Expand Down Expand Up @@ -2667,7 +2667,7 @@ def variety(self, ring=None, *, algorithm="triangular_decomposition", proof=True
on a toy implementation otherwise.
- With ``algorithm`` = ``"msolve"``, uses the
`optional package msolve <../spkg/msolve.html>`_.
`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 @@ -4275,7 +4275,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'``
`optional package msolve <../spkg/msolve.html>`_ (degrevlex order)
`optional package msolve <../../../../spkg/msolve.html>`_ (degrevlex order)
``'magma:GroebnerBasis'``
Magma's ``Groebnerbasis`` command (if available)
Expand Down Expand Up @@ -4403,7 +4403,7 @@ def groebner_basis(self, algorithm='', deg_bound=None, mult_bound=None, prot=Fal
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 the
`optional package msolve <../spkg/msolve.html>`_::
`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 634d3bf

Please sign in to comment.