Skip to content

Commit b196b22

Browse files
author
Matthias Koeppe
committed
src/sage/knots/knotinfo.py: Use block # needs
1 parent 4013dfe commit b196b22

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/sage/knots/knotinfo.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -1520,14 +1520,16 @@ def jones_polynomial(self, variab=None, skein_normalization=False, puiseux=False
15201520
of the positive crossings of the right-handed trefoil)::
15211521
15221522
sage: K3_1 = KnotInfo.K3_1
1523-
sage: K3_1j = K3_1.jones_polynomial() # needs sage.symbolic
1523+
1524+
sage: # needs sage.symbolic
1525+
sage: K3_1j = K3_1.jones_polynomial()
15241526
sage: L2a1_1j = Ljt # see note above
15251527
sage: R = L2a1_1j.parent()
15261528
sage: Oj = R(1)
15271529
sage: t = R('t')
1528-
sage: lhs = expand(~t*K3_1j - t*Oj) # needs sage.symbolic
1530+
sage: lhs = expand(~t*K3_1j - t*Oj)
15291531
sage: rhs = expand((sqrt(t) - ~sqrt(t))*L2a1_1j)
1530-
sage: bool(lhs == rhs) # needs sage.symbolic
1532+
sage: bool(lhs == rhs)
15311533
True
15321534
15331535
The same with the Puiseux series version::

0 commit comments

Comments
 (0)