Skip to content

Commit a12c38c

Browse files
author
Matthias Koeppe
committed
More # optional
1 parent a37b456 commit a12c38c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/sage/sat/solvers/dimacs.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -490,14 +490,14 @@ def __call__(self, assumptions=None):
490490
TESTS::
491491
492492
sage: from sage.sat.boolean_polynomials import solve as solve_sat
493-
sage: sr = mq.SR(1,1,1,4,gf2=True,polybori=True)
494-
sage: while True: # workaround (see :trac:`31891`)
493+
sage: sr = mq.SR(1, 1, 1, 4, gf2=True, polybori=True) # optional - sage.rings.finite_rings sage.rings.polynomial.pbori
494+
sage: while True: # workaround (see :trac:`31891`) # optional - sage.rings.finite_rings sage.rings.polynomial.pbori
495495
....: try:
496496
....: F, s = sr.polynomial_system()
497497
....: break
498498
....: except ZeroDivisionError:
499499
....: pass
500-
sage: solve_sat(F, solver=sage.sat.solvers.RSat) # optional - RSat
500+
sage: solve_sat(F, solver=sage.sat.solvers.RSat) # optional - RSat # optional - sage.rings.finite_rings sage.rings.polynomial.pbori
501501
502502
"""
503503
if assumptions is not None:

0 commit comments

Comments
 (0)