File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1673,7 +1673,7 @@ def _sage_(self):
1673
1673
graph_cls = DiGraph
1674
1674
adj_mat = self .adjacencyMatrix ().sage ()
1675
1675
g = graph_cls (adj_mat , format = 'adjacency_matrix' )
1676
- g .relabel (self .vertices (sort = True ))
1676
+ g .relabel (self .vertices ())
1677
1677
return g
1678
1678
elif cls_str == "ChainComplex" :
1679
1679
from sage .homology .chain_complex import ChainComplex
@@ -1884,8 +1884,8 @@ def is_Macaulay2Element(x):
1884
1884
1885
1885
sage: from sage.interfaces.macaulay2 import is_Macaulay2Element
1886
1886
sage: is_Macaulay2Element(2) # optional - macaulay2
1887
- doctest:...: DeprecationWarning: the function is_Macaulay2Element is deprecated; use isinstance(x, sage.interfaces.abc.MacaulayElement ) instead
1888
- See https://github.com/sagemath/sage/issues/34823 for details.
1887
+ doctest:...: DeprecationWarning: the function is_Macaulay2Element is deprecated; use isinstance(x, sage.interfaces.abc.Macaulay2Element ) instead
1888
+ See https://github.com/sagemath/sage/issues/34804 for details.
1889
1889
False
1890
1890
sage: is_Macaulay2Element(macaulay2(2)) # optional - macaulay2
1891
1891
True
You can’t perform that action at this time.
0 commit comments