@@ -1224,10 +1224,11 @@ def distance_matrix(self):
1224
1224
.. WARNING::
1225
1225
1226
1226
The ordering of vertices in the matrix has no reason to correspond
1227
- to the order of vertices in :meth:`~Graph.vertices`. In particular,
1228
- if two integers `i,j` are vertices of a graph `G` with distance
1229
- matrix ``M``, then ``M[i][i]`` is not necessarily the distance
1230
- between vertices `i` and `j`.
1227
+ to the order of vertices in
1228
+ :meth:`~sage.graphs.generic_graph.GenericGraph.vertices`. In
1229
+ particular, if two integers `i,j` are vertices of a graph `G` with
1230
+ distance matrix ``M``, then ``M[i][i]`` is not necessarily the
1231
+ distance between vertices `i` and `j`.
1231
1232
1232
1233
EXAMPLES::
1233
1234
@@ -1250,8 +1251,8 @@ def distance_matrix(self):
1250
1251
1251
1252
.. SEEALSO::
1252
1253
1253
- * :meth:`~sage.graphs.generic_graph.distance_all_pairs` -- computes
1254
- the distance between any two vertices.
1254
+ * :meth:`~sage.graphs.generic_graph.GenericGraph. distance_all_pairs`
1255
+ -- computes the distance between any two vertices.
1255
1256
"""
1256
1257
1257
1258
from sage.matrix.constructor import matrix
@@ -10828,9 +10829,10 @@ def is_circulant(self, certificate = False):
10828
10829
lists_of_parameters)`` each element of ``lists_of_parameters`` can be
10829
10830
used to define the graph as a circulant graph.
10830
10831
10831
- See the documentation of :meth:`graphs.CirculantGraph` and
10832
- :meth:`digraphs.CirculantGraph` for more information, and the examples
10833
- below.
10832
+ See the documentation of
10833
+ :func:`~sage.graphs.graph_generators.GraphGenerators.CirculantGraph` and
10834
+ :meth:`~sage.graphs.digraph_generators.DiGraphGenerators.Circulant` for
10835
+ more information, and the examples below.
10834
10836
10835
10837
.. SEEALSO::
10836
10838
@@ -11562,7 +11564,7 @@ def distance_all_pairs(self, algorithm = "auto"):
11562
11564
11563
11565
.. SEEALSO::
11564
11566
11565
- * :meth:`~sage.graphs.generic_graph.distance_matrix`
11567
+ * :meth:`~sage.graphs.generic_graph.GenericGraph. distance_matrix`
11566
11568
"""
11567
11569
if algorithm == "auto":
11568
11570
if self.order() <= 20:
@@ -14731,7 +14733,7 @@ def plot(self, **options):
14731
14733
be set through the :class:`~sage.misc.decorators.options`
14732
14734
mechanism. For more information on this different way to set
14733
14735
default parameters, see the help of the :class:`options decorator
14734
- <~ sage.misc.decorators.options>`.
14736
+ <sage.misc.decorators.options>`.
14735
14737
14736
14738
- See also the :mod:`sage.graphs.graph_latex` module for ways to use
14737
14739
LaTeX to produce an image of a graph.
@@ -14932,8 +14934,8 @@ def show(self, **kwds):
14932
14934
INPUT:
14933
14935
14934
14936
This method accepts any option understood by
14935
- :meth:`~sage.graphs.generic_graph.plot` (graph-specific) or by
14936
- :meth:`sage.plot.graphics.Graphics.show`.
14937
+ :meth:`~sage.graphs.generic_graph.GenericGraph. plot` (graph-specific) or
14938
+ by :meth:`sage.plot.graphics.Graphics.show`.
14937
14939
14938
14940
.. NOTE::
14939
14941
@@ -15094,7 +15096,6 @@ def plot3d(self, bgcolor=(1,1,1),
15094
15096
15095
15097
- :meth:`plot`
15096
15098
- :meth:`graphviz_string`
15097
- - :meth:`_color_by_label`
15098
15099
"""
15099
15100
import graph_plot
15100
15101
layout_options = dict( (key,kwds[key]) for key in kwds.keys() if key in graph_plot.layout_options )
@@ -15935,7 +15936,7 @@ def eigenspaces(self, laplacian=False):
15935
15936
15936
15937
For some graphs, some of the the eigenspaces are described
15937
15938
exactly by vector spaces over a
15938
- :class :`~sage.rings.number_field.number_field.NumberField`.
15939
+ :func :`~sage.rings.number_field.number_field.NumberField`.
15939
15940
For numerical eigenvectors use :meth:`eigenvectors`.
15940
15941
15941
15942
EXAMPLES::
0 commit comments