diff --git a/build/pkgs/configure/checksums.ini b/build/pkgs/configure/checksums.ini index da9cfbb1ff9..2a7ddea5551 100644 --- a/build/pkgs/configure/checksums.ini +++ b/build/pkgs/configure/checksums.ini @@ -1,3 +1,3 @@ tarball=configure-VERSION.tar.gz -sha1=f3e560bbf33add8504ba9f7ba93fff9e82e3e445 -sha256=bef93be1bb978fa34cd5aaa9c041d1a97a33ff35f88c9df2f9c25e6764770c56 +sha1=1008e954db67a27133b23b338a178fb34ff401e1 +sha256=3fe774fa4d3941621927c328f7c9271ad683f78fb0e5ae7da349e3ba2b0eb0a3 diff --git a/build/pkgs/configure/package-version.txt b/build/pkgs/configure/package-version.txt index ca5926f5634..63fdd2fd9f1 100644 --- a/build/pkgs/configure/package-version.txt +++ b/build/pkgs/configure/package-version.txt @@ -1 +1 @@ -5c12765f7e585b58ab0cd99f7998cfa615f85247 +d11870b4b14ec0f61ebc141ecb80525815d29acf diff --git a/src/sage/graphs/traversals.pyx b/src/sage/graphs/traversals.pyx index b6c6a4c5b6a..4b9ba208b01 100644 --- a/src/sage/graphs/traversals.pyx +++ b/src/sage/graphs/traversals.pyx @@ -1601,7 +1601,7 @@ def maximum_cardinality_search(G, reverse=False, tree=False, initial_vertex=None INPUT: - - ``G`` -- a Sage Graph + - ``G`` -- a Sage graph - ``reverse`` -- boolean (default: ``False``); whether to return the vertices in discovery order, or the reverse @@ -1616,8 +1616,8 @@ def maximum_cardinality_search(G, reverse=False, tree=False, initial_vertex=None By default, return the ordering `\alpha` as a list. When ``tree`` is ``True``, the method returns a tuple `(\alpha, T)`, where `T` is a directed - tree with the same set of vertices as `G`and a directed edge from `u` to `v` - if `u` was the first vertex to saw `v`. + tree with the same set of vertices as `G` and a directed edge from `u` to `v` + if `u` was the first vertex to see `v`. EXAMPLES: