From 3fda65ebe1f994d659e0894145b8af48b504944b Mon Sep 17 00:00:00 2001 From: dcoudert Date: Sat, 27 Jul 2024 16:57:47 +0200 Subject: [PATCH] improve documentation --- src/sage/graphs/generic_graph.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/sage/graphs/generic_graph.py b/src/sage/graphs/generic_graph.py index 9a5941f4aa3..6e15246c125 100644 --- a/src/sage/graphs/generic_graph.py +++ b/src/sage/graphs/generic_graph.py @@ -244,7 +244,8 @@ :meth:`~GenericGraph.blocks_and_cut_vertices` | Compute the blocks and cut vertices of the graph. :meth:`~GenericGraph.blocks_and_cuts_tree` | Compute the blocks-and-cuts tree of the graph. :meth:`~GenericGraph.is_cut_edge` | Return True if the input edge is a cut-edge or a bridge. - :meth:`~GenericGraph.is_cut_vertex` | Return True if the input vertex is a cut-vertex. + :meth:`~GenericGraph.is_cut_vertex` | Check whether the input vertex is a cut-vertex. + :meth:`~GenericGraph.is_vertex_cut` | Check whether ``cut`` is a vertex cut of ``G``. :meth:`~GenericGraph.edge_cut` | Return a minimum edge cut between vertices `s` and `t` :meth:`~GenericGraph.vertex_cut` | Return a minimum vertex cut between non-adjacent vertices `s` and `t` :meth:`~GenericGraph.flow` | Return a maximum flow in the graph from ``x`` to ``y``