diff --git a/articles/igraph.html b/articles/igraph.html index 6d9e9b1fc2..dd35f5861d 100644 --- a/articles/igraph.html +++ b/articles/igraph.html @@ -155,9 +155,9 @@
g
## IGRAPH 8e011c2 UN-- 10 2 --
+## IGRAPH d3f69ad UN-- 10 2 --
## + attr: name (v/c)
-## + edges from 8e011c2 (vertex names):
+## + edges from d3f69ad (vertex names):
## [1] 1--2 1--5
This means: Undirected Named graph
with 10 vertices and 2 edges, with the
@@ -169,7 +169,7 @@
Creating a graph
summary(g)
-## IGRAPH 8e011c2 UN-- 10 2 --
+## IGRAPH d3f69ad UN-- 10 2 --
## + attr: name (v/c)
The same function make_graph
can create some notable
graphs by just specifying their name. For example you can create the
@@ -247,9 +247,9 @@
Adding/deleting vertices and edgesg <- g %>% add_edges(edges=c(1,34)) %>% add_vertices(3) %>%
add_edges(edges=c(38,39, 39,40, 40,38, 40,37))
g
-## IGRAPH 16a48f2 U--- 40 86 -- Zachary
+## IGRAPH 7f79014 U--- 40 86 -- Zachary
## + attr: name (g/c)
-## + edges from 16a48f2:
+## + edges from 7f79014:
## [1] 1-- 2 1-- 3 1-- 4 1-- 5 1-- 6 1-- 7 1-- 8 1-- 9 1--11 1--12
## [11] 1--13 1--14 1--18 1--20 1--22 1--32 2-- 3 2-- 4 2-- 8 2--14
## [21] 2--18 2--20 2--22 2--31 3-- 4 3-- 8 3--28 3--29 3--33 3--10
@@ -332,7 +332,7 @@ Constructing graphs
graph1 <- make_tree(127, 2, mode = "undirected")
summary(g)
-## IGRAPH d56b127 U--- 5 3 -- Ring graph
+## IGRAPH c1d8067 U--- 5 3 -- Ring graph
## + attr: name (g/c), mutual (g/l), circular (g/l)
This generates a regular tree graph with 127 vertices, each vertex
having two children. No matter how many times you call
@@ -349,7 +349,7 @@
Constructing graphs
graph1 <- sample_grg(100, 0.2)
summary(graph1)
-## IGRAPH 0486ce6 U--- 100 502 -- Geometric random graph
+## IGRAPH 26fe2b4 U--- 100 508 -- Geometric random graph
## + attr: name (g/c), radius (g/n), torus (g/l)
This generates a geometric random graph: n points are chosen
randomly and uniformly inside the unit square and pairs of points closer
@@ -400,7 +400,7 @@
Setting and retrieving attributesV(g)$gender <- c("f", "m", "f", "m", "m", "f", "m")
E(g)$is_formal <- c(FALSE, FALSE, TRUE, TRUE, TRUE, FALSE, TRUE, FALSE, FALSE)
summary(g)
-## IGRAPH 3e0c36c UN-- 7 9 --
+## IGRAPH e8c4e4b UN-- 7 9 --
## + attr: name (v/c), age (v/n), gender (v/c), is_formal (e/l)
V
and E
are the standard way to obtain a
sequence of all vertices and edges, respectively. This assigns an
@@ -442,7 +442,7 @@
Setting and retrieving attributes
V(g)$name[1:3] <- c("Alejandra", "Bruno", "Carmina")
V(g)
-## + 7/7 vertices, named, from 3e0c36c:
+## + 7/7 vertices, named, from e8c4e4b:
## [1] Alejandra Bruno Carmina Frank Dennis Esther George
To delete attributes:
@@ -554,12 +554,12 @@ Selecting vertices
seq <- V(graph)[2, 3, 7]
seq
-## + 3/10 vertices, from 0cd1503:
+## + 3/10 vertices, from e853541:
## [1] 2 3 7
seq <- seq[1, 3] # filtering an existing vertex set
seq
-## + 2/10 vertices, from 0cd1503:
+## + 2/10 vertices, from e853541:
## [1] 2 7
Selecting a vertex that does not exist results in an error:
@@ -655,12 +655,12 @@ Selecting edges
E(g)[.from(3)]
-## + 4/9 edges from 3e0c36c (vertex names):
+## + 4/9 edges from e8c4e4b (vertex names):
## [1] Alejandra--Carmina Carmina --Frank Carmina --Dennis Carmina --Esther
Of course it also works with vertex names:
E(g)[.from("Carmina")]
-## + 4/9 edges from 3e0c36c (vertex names):
+## + 4/9 edges from e8c4e4b (vertex names):
## [1] Alejandra--Carmina Carmina --Frank Carmina --Dennis Carmina --Esther
Using .to
filters edge sequences based on the target
vertices. This is different from .from
if the graph is
@@ -675,7 +675,7 @@
Selecting edges
-## + 3/9 edges from 3e0c36c (vertex names):
+## + 3/9 edges from e8c4e4b (vertex names):
## [1] Carmina--Dennis Carmina--Esther Dennis --Esther
To make the %--%
operator work with names, you can build
string vectors containing the names and then use these vectors as
@@ -694,7 +694,7 @@
Selecting edges## [1] "Alejandra" "Carmina" "Esther"
-## + 5/9 edges from 3e0c36c (vertex names):
+## + 5/9 edges from e8c4e4b (vertex names):
## [1] Alejandra--Bruno Alejandra--Frank Carmina --Frank Carmina --Dennis
## [5] Dennis --Esther
diff --git a/articles/igraph_ES.html b/articles/igraph_ES.html
index 96ef7e2a05..cd2fd0b25d 100644
--- a/articles/igraph_ES.html
+++ b/articles/igraph_ES.html
@@ -159,9 +159,9 @@ Crear un grafo
g
-## IGRAPH 7257461 UN-- 10 2 --
+## IGRAPH 4f73d75 UN-- 10 2 --
## + attr: name (v/c)
-## + edges from 7257461 (vertex names):
+## + edges from 4f73d75 (vertex names):
## [1] 1--2 1--5
Esto significa: grafo no dirigido (Undirected) con
10 vértices y 2 aristas, que se
@@ -173,7 +173,7 @@
Crear un grafo
summary(g)
-## IGRAPH 7257461 UN-- 10 2 --
+## IGRAPH 4f73d75 UN-- 10 2 --
## + attr: name (v/c)
También make_graph
puede crear algunos grafos destacados
con sólo especificar su nombre. Por ejemplo, puedes generar el grafo que
@@ -257,9 +257,9 @@
Añadir y borrar vértices y arist
g <- g %>% add_edges(edges=c(1,34)) %>% add_vertices(3) %>%
add_edges(edges=c(38,39, 39,40, 40,38, 40,37))
g
-## IGRAPH b43350f U--- 40 86 -- Zachary
+## IGRAPH 8d77067 U--- 40 86 -- Zachary
## + attr: name (g/c)
-## + edges from b43350f:
+## + edges from 8d77067:
## [1] 1-- 2 1-- 3 1-- 4 1-- 5 1-- 6 1-- 7 1-- 8 1-- 9 1--11 1--12
## [11] 1--13 1--14 1--18 1--20 1--22 1--32 2-- 3 2-- 4 2-- 8 2--14
## [21] 2--18 2--20 2--22 2--31 3-- 4 3-- 8 3--28 3--29 3--33 3--10
@@ -346,7 +346,7 @@ Construcción de grafos
graph1 <- make_tree(127, 2, mode = "undirected")
summary(g)
-## IGRAPH 40468c3 U--- 5 3 -- Ring graph
+## IGRAPH 5af70f3 U--- 5 3 -- Ring graph
## + attr: name (g/c), mutual (g/l), circular (g/l)
Esto genera un grafo regular en forma de árbol con 127 vértices, cada
vértice con dos hijos. No importa cuántas veces llames a
@@ -363,7 +363,7 @@
Construcción de grafos
graph1 <- sample_grg(100, 0.2)
summary(graph1)
-## IGRAPH 1997c22 U--- 100 527 -- Geometric random graph
+## IGRAPH d0221c0 U--- 100 546 -- Geometric random graph
## + attr: name (g/c), radius (g/n), torus (g/l)
Esto genera un grafo geométrico aleatorio: Se eligen n
puntos de forma aleatoria y uniforme dentro del espacio métrico, y los
@@ -416,7 +416,7 @@
Establecer y recuperar atributosV(g)$gender <- c("f", "m", "f", "m", "m", "f", "m")
E(g)$is_formal <- c(FALSE, FALSE, TRUE, TRUE, TRUE, FALSE, TRUE, FALSE, FALSE)
summary(g)
-## IGRAPH 63cfc13 UN-- 7 9 --
+## IGRAPH 816870d UN-- 7 9 --
## + attr: name (v/c), age (v/n), gender (v/c), is_formal (e/l)
V
y E
son la forma estándar de obtener una
secuencia de todos los vértices y aristas respectivamente. Esto asigna
@@ -460,7 +460,7 @@
Establecer y recuperar atributos
V(g)$name[1:3] <- c("Alejandra", "Bruno", "Carmina")
V(g)
-## + 7/7 vertices, named, from 63cfc13:
+## + 7/7 vertices, named, from 816870d:
## [1] Alejandra Bruno Carmina Frank Dennis Esther George
Para eliminar atributos:
@@ -575,12 +575,12 @@ Selección de vértices
seq <- V(graph)[2, 3, 7]
seq
-## + 3/10 vertices, from 738ce2f:
+## + 3/10 vertices, from 0336316:
## [1] 2 3 7
seq <- seq[1, 3] # filtrar un conjunto de vértices existente
seq
-## + 2/10 vertices, from 738ce2f:
+## + 2/10 vertices, from 0336316:
## [1] 2 7
Al seleccionar un vértice que no existe se produce un error:
@@ -674,12 +674,12 @@ Selección de aristas
E(g)[.from(3)]
-## + 4/9 edges from 63cfc13 (vertex names):
+## + 4/9 edges from 816870d (vertex names):
## [1] Alejandra--Carmina Carmina --Frank Carmina --Dennis Carmina --Esther
Por supuesto, también funciona con nombres de vértices:
E(g)[.from("Carmina")]
-## + 4/9 edges from 63cfc13 (vertex names):
+## + 4/9 edges from 816870d (vertex names):
## [1] Alejandra--Carmina Carmina --Frank Carmina --Dennis Carmina --Esther
Al usar .to
, se filtran la serie de aristas en función
de los vértices de destino o diana. Esto es diferente de
@@ -696,7 +696,7 @@
Selección de aristas
-## + 3/9 edges from 63cfc13 (vertex names):
+## + 3/9 edges from 816870d (vertex names):
## [1] Carmina--Dennis Carmina--Esther Dennis --Esther
Para que el operador %--%
funcione con nombres, puedes
construir vectores de caracteres que contengan los nombres y luego
@@ -716,7 +716,7 @@
Selección de aristas## [1] "Alejandra" "Carmina" "Esther"
-## + 5/9 edges from 63cfc13 (vertex names):
+## + 5/9 edges from 816870d (vertex names):
## [1] Alejandra--Bruno Alejandra--Frank Carmina --Frank Carmina --Dennis
## [5] Dennis --Esther
diff --git a/articles/igraph_ES_files/figure-html/unnamed-chunk-17-1.png b/articles/igraph_ES_files/figure-html/unnamed-chunk-17-1.png
index 7868a89b81..442713feb3 100644
Binary files a/articles/igraph_ES_files/figure-html/unnamed-chunk-17-1.png and b/articles/igraph_ES_files/figure-html/unnamed-chunk-17-1.png differ
diff --git a/articles/igraph_ES_files/figure-html/unnamed-chunk-18-1.png b/articles/igraph_ES_files/figure-html/unnamed-chunk-18-1.png
index 24dbc20d41..3c02de0b48 100644
Binary files a/articles/igraph_ES_files/figure-html/unnamed-chunk-18-1.png and b/articles/igraph_ES_files/figure-html/unnamed-chunk-18-1.png differ
diff --git a/articles/igraph_ES_files/figure-html/unnamed-chunk-19-1.png b/articles/igraph_ES_files/figure-html/unnamed-chunk-19-1.png
index a64df5f33e..5e8ca38c22 100644
Binary files a/articles/igraph_ES_files/figure-html/unnamed-chunk-19-1.png and b/articles/igraph_ES_files/figure-html/unnamed-chunk-19-1.png differ
diff --git a/articles/igraph_ES_files/figure-html/unnamed-chunk-21-1.png b/articles/igraph_ES_files/figure-html/unnamed-chunk-21-1.png
index 2c3e425345..8bc609e587 100644
Binary files a/articles/igraph_ES_files/figure-html/unnamed-chunk-21-1.png and b/articles/igraph_ES_files/figure-html/unnamed-chunk-21-1.png differ
diff --git a/articles/igraph_ES_files/figure-html/unnamed-chunk-64-1.png b/articles/igraph_ES_files/figure-html/unnamed-chunk-64-1.png
index db125ec0c9..8d3f8d5875 100644
Binary files a/articles/igraph_ES_files/figure-html/unnamed-chunk-64-1.png and b/articles/igraph_ES_files/figure-html/unnamed-chunk-64-1.png differ
diff --git a/articles/igraph_ES_files/figure-html/unnamed-chunk-9-1.png b/articles/igraph_ES_files/figure-html/unnamed-chunk-9-1.png
index 9e8035f598..2fb63e7232 100644
Binary files a/articles/igraph_ES_files/figure-html/unnamed-chunk-9-1.png and b/articles/igraph_ES_files/figure-html/unnamed-chunk-9-1.png differ
diff --git a/articles/igraph_files/figure-html/unnamed-chunk-17-1.png b/articles/igraph_files/figure-html/unnamed-chunk-17-1.png
index 2c9d0b6581..98eb8c5413 100644
Binary files a/articles/igraph_files/figure-html/unnamed-chunk-17-1.png and b/articles/igraph_files/figure-html/unnamed-chunk-17-1.png differ
diff --git a/articles/igraph_files/figure-html/unnamed-chunk-18-1.png b/articles/igraph_files/figure-html/unnamed-chunk-18-1.png
index f19dad546f..e725674117 100644
Binary files a/articles/igraph_files/figure-html/unnamed-chunk-18-1.png and b/articles/igraph_files/figure-html/unnamed-chunk-18-1.png differ
diff --git a/articles/igraph_files/figure-html/unnamed-chunk-19-1.png b/articles/igraph_files/figure-html/unnamed-chunk-19-1.png
index 0e935cfb18..7037231228 100644
Binary files a/articles/igraph_files/figure-html/unnamed-chunk-19-1.png and b/articles/igraph_files/figure-html/unnamed-chunk-19-1.png differ
diff --git a/articles/igraph_files/figure-html/unnamed-chunk-21-1.png b/articles/igraph_files/figure-html/unnamed-chunk-21-1.png
index 90a26aa9a4..84e32af493 100644
Binary files a/articles/igraph_files/figure-html/unnamed-chunk-21-1.png and b/articles/igraph_files/figure-html/unnamed-chunk-21-1.png differ
diff --git a/articles/igraph_files/figure-html/unnamed-chunk-64-1.png b/articles/igraph_files/figure-html/unnamed-chunk-64-1.png
index a4bf2a1557..dc7cea31b8 100644
Binary files a/articles/igraph_files/figure-html/unnamed-chunk-64-1.png and b/articles/igraph_files/figure-html/unnamed-chunk-64-1.png differ
diff --git a/articles/igraph_files/figure-html/unnamed-chunk-9-1.png b/articles/igraph_files/figure-html/unnamed-chunk-9-1.png
index f6b7d704eb..e91a1b51bd 100644
Binary files a/articles/igraph_files/figure-html/unnamed-chunk-9-1.png and b/articles/igraph_files/figure-html/unnamed-chunk-9-1.png differ
diff --git a/pkgdown.yml b/pkgdown.yml
index 77c6312254..2e74a1049d 100644
--- a/pkgdown.yml
+++ b/pkgdown.yml
@@ -6,7 +6,7 @@ articles:
installation-troubleshooting: installation-troubleshooting.html
igraph: igraph.html
igraph_ES: igraph_ES.html
-last_built: 2024-01-21T19:37Z
+last_built: 2024-01-21T21:10Z
urls:
reference: https://r.igraph.org/reference
article: https://r.igraph.org/articles
diff --git a/reference/E.html b/reference/E.html
index cc78de420b..3c9fd91f05 100644
--- a/reference/E.html
+++ b/reference/E.html
@@ -157,14 +157,14 @@ Examples# Edges of an unnamed graph
g <- make_ring(10)
E(g)
-#> + 10/10 edges from 1f333b1:
+#> + 10/10 edges from 462b4a8:
#> [1] 1-- 2 2-- 3 3-- 4 4-- 5 5-- 6 6-- 7 7-- 8 8-- 9 9--10 1--10
# Edges of a named graph
g2 <- make_ring(10) %>%
set_vertex_attr("name", value = letters[1:10])
E(g2)
-#> + 10/10 edges from 92ede2b (vertex names):
+#> + 10/10 edges from c43307e (vertex names):
#> [1] a--b b--c c--d d--e e--f f--g g--h h--i i--j a--j
diff --git a/reference/V.html b/reference/V.html
index cdc8bd7688..235c4e8964 100644
--- a/reference/V.html
+++ b/reference/V.html
@@ -137,14 +137,14 @@ Examples# Vertex ids of an unnamed graph
g <- make_ring(10)
V(g)
-#> + 10/10 vertices, from 7fe1a55:
+#> + 10/10 vertices, from b4ed984:
#> [1] 1 2 3 4 5 6 7 8 9 10
# Vertex ids of a named graph
g2 <- make_ring(10) %>%
set_vertex_attr("name", value = letters[1:10])
V(g2)
-#> + 10/10 vertices, named, from 7d62a56:
+#> + 10/10 vertices, named, from a34cf18:
#> [1] a b c d e f g h i j
diff --git a/reference/add_edges.html b/reference/add_edges.html
index 23945b6981..eed81abc57 100644
--- a/reference/add_edges.html
+++ b/reference/add_edges.html
@@ -152,7 +152,7 @@ Examples set_edge_attr("color", value = "red") %>%
add_edges(c(5, 1), color = "green")
E(g)[[]]
-#> + 5/5 edges from a81eb43:
+#> + 5/5 edges from 06d1097:
#> tail head tid hid color
#> 1 1 2 1 2 red
#> 2 2 3 2 3 red
diff --git a/reference/add_vertices.html b/reference/add_vertices.html
index 687fe6e3e7..f5637faaca 100644
--- a/reference/add_vertices.html
+++ b/reference/add_vertices.html
@@ -143,12 +143,12 @@ Examples 4, 5
))
g
-#> IGRAPH 14ad6dc D--- 5 4 --
+#> IGRAPH ec06631 D--- 5 4 --
#> + attr: color (v/c)
-#> + edges from 14ad6dc:
+#> + edges from ec06631:
#> [1] 1->2 2->3 3->4 4->5
V(g)[[]]
-#> + 5/5 vertices, from 14ad6dc:
+#> + 5/5 vertices, from ec06631:
#> color
#> 1 red
#> 2 red
diff --git a/reference/adjacent_vertices.html b/reference/adjacent_vertices.html
index 212f7a6e58..1b3095e5f4 100644
--- a/reference/adjacent_vertices.html
+++ b/reference/adjacent_vertices.html
@@ -117,11 +117,11 @@ Examplesg <- make_graph("Zachary")
adjacent_vertices(g, c(1, 34))
#> [[1]]
-#> + 16/34 vertices, from dc78400:
+#> + 16/34 vertices, from 3c3dd7a:
#> [1] 2 3 4 5 6 7 8 9 11 12 13 14 18 20 22 32
#>
#> [[2]]
-#> + 17/34 vertices, from dc78400:
+#> + 17/34 vertices, from 3c3dd7a:
#> [1] 9 10 14 15 16 19 20 21 23 24 27 28 29 30 31 32 33
#>
diff --git a/reference/all_simple_paths.html b/reference/all_simple_paths.html
index 45e6792272..1a044ade93 100644
--- a/reference/all_simple_paths.html
+++ b/reference/all_simple_paths.html
@@ -138,28 +138,28 @@ Examplesg <- make_ring(10)
all_simple_paths(g, 1, 5)
#> [[1]]
-#> + 5/10 vertices, from e181960:
+#> + 5/10 vertices, from b05d80d:
#> [1] 1 2 3 4 5
#>
#> [[2]]
-#> + 7/10 vertices, from e181960:
+#> + 7/10 vertices, from b05d80d:
#> [1] 1 10 9 8 7 6 5
#>
all_simple_paths(g, 1, c(3, 5))
#> [[1]]
-#> + 3/10 vertices, from e181960:
+#> + 3/10 vertices, from b05d80d:
#> [1] 1 2 3
#>
#> [[2]]
-#> + 5/10 vertices, from e181960:
+#> + 5/10 vertices, from b05d80d:
#> [1] 1 2 3 4 5
#>
#> [[3]]
-#> + 7/10 vertices, from e181960:
+#> + 7/10 vertices, from b05d80d:
#> [1] 1 10 9 8 7 6 5
#>
#> [[4]]
-#> + 9/10 vertices, from e181960:
+#> + 9/10 vertices, from b05d80d:
#> [1] 1 10 9 8 7 6 5 4 3
#>
diff --git a/reference/are_adjacent.html b/reference/are_adjacent.html
index 25076906c9..eca45b2902 100644
--- a/reference/are_adjacent.html
+++ b/reference/are_adjacent.html
@@ -115,9 +115,9 @@ See alsoExamples
ug <- make_ring(10)
ug
-#> IGRAPH d9eafde U--- 10 10 -- Ring graph
+#> IGRAPH b6c269b U--- 10 10 -- Ring graph
#> + attr: name (g/c), mutual (g/l), circular (g/l)
-#> + edges from d9eafde:
+#> + edges from b6c269b:
#> [1] 1-- 2 2-- 3 3-- 4 4-- 5 5-- 6 6-- 7 7-- 8 8-- 9 9--10 1--10
are_adjacent(ug, 1, 2)
#> [1] TRUE
@@ -126,9 +126,9 @@ Examples
dg <- make_ring(10, directed = TRUE)
dg
-#> IGRAPH 5e599f8 D--- 10 10 -- Ring graph
+#> IGRAPH 887c8cc D--- 10 10 -- Ring graph
#> + attr: name (g/c), mutual (g/l), circular (g/l)
-#> + edges from 5e599f8:
+#> + edges from 887c8cc:
#> [1] 1-> 2 2-> 3 3-> 4 4-> 5 5-> 6 6-> 7 7-> 8 8-> 9 9->10 10-> 1
are_adjacent(ug, 1, 2)
#> [1] TRUE
diff --git a/reference/articulation_points.html b/reference/articulation_points.html
index 9d4d699225..e149298957 100644
--- a/reference/articulation_points.html
+++ b/reference/articulation_points.html
@@ -122,12 +122,12 @@ Examplesclu <- components(g)$membership
g <- add_edges(g, c(match(1, clu), match(2, clu)))
articulation_points(g)
-#> + 2/10 vertices, from 138c356:
+#> + 2/10 vertices, from aa7faee:
#> [1] 6 1
g <- make_graph("krackhardt_kite")
bridges(g)
-#> + 2/18 edges from 71440a4:
+#> + 2/18 edges from 8ea722e:
#> [1] 9--10 8-- 9
diff --git a/reference/as.directed.html b/reference/as.directed.html
index 4da809c9aa..c77c6c4a2f 100644
--- a/reference/as.directed.html
+++ b/reference/as.directed.html
@@ -176,16 +176,16 @@ Examples
g <- make_ring(10)
as.directed(g, "mutual")
-#> IGRAPH 7c8fc08 D--- 10 20 -- Ring graph
+#> IGRAPH 0652fb1 D--- 10 20 -- Ring graph
#> + attr: name (g/c), mutual (g/l), circular (g/l)
-#> + edges from 7c8fc08:
+#> + edges from 0652fb1:
#> [1] 1-> 2 2-> 3 3-> 4 4-> 5 5-> 6 6-> 7 7-> 8 8-> 9 9->10 1->10
#> [11] 2-> 1 3-> 2 4-> 3 5-> 4 6-> 5 7-> 6 8-> 7 9-> 8 10-> 9 10-> 1
g2 <- make_star(10)
as.undirected(g)
-#> IGRAPH 2e78e8e U--- 10 10 -- Ring graph
+#> IGRAPH 2c8e820 U--- 10 10 -- Ring graph
#> + attr: name (g/c), mutual (g/l), circular (g/l)
-#> + edges from 2e78e8e:
+#> + edges from 2c8e820:
#> [1] 1-- 2 2-- 3 3-- 4 4-- 5 5-- 6 6-- 7 7-- 8 8-- 9 9--10 1--10
# Combining edge attributes
@@ -193,9 +193,9 @@ ExamplesE(g3)$weight <- seq_len(ecount(g3))
ug3 <- as.undirected(g3)
print(ug3, e = TRUE)
-#> IGRAPH 9cbe231 U-W- 10 10 -- Ring graph
+#> IGRAPH 6e6e7eb U-W- 10 10 -- Ring graph
#> + attr: name (g/c), mutual (g/l), circular (g/l), weight (e/n)
-#> + edges from 9cbe231:
+#> + edges from 6e6e7eb:
#> [1] 1-- 2 2-- 3 3-- 4 4-- 5 5-- 6 6-- 7 7-- 8 8-- 9 1--10 9--10
if (FALSE) {
x11(width = 10, height = 5)
@@ -215,9 +215,9 @@ Examples edge.attr.comb = list(weight = length)
)
print(ug4, e = TRUE)
-#> IGRAPH 30e0ccc U-W- 10 7 --
+#> IGRAPH b2305f8 U-W- 10 7 --
#> + attr: weight (e/n)
-#> + edges from 30e0ccc:
+#> + edges from b2305f8:
#> [1] 6-- 7 7-- 8 8-- 9 8-- 9 9-- 9 10--10 10--10
diff --git a/reference/as.igraph.html b/reference/as.igraph.html
index c4ff65d57f..032c9dd69f 100644
--- a/reference/as.igraph.html
+++ b/reference/as.igraph.html
@@ -103,9 +103,9 @@ Examplesg <- make_full_graph(5) + make_full_graph(5)
hrg <- fit_hrg(g)
as.igraph(hrg)
-#> IGRAPH c4e2038 DN-- 19 18 -- Fitted HRG
+#> IGRAPH 03cdfef DN-- 19 18 -- Fitted HRG
#> + attr: name (g/c), name (v/c), prob (v/n)
-#> + edges from c4e2038 (vertex names):
+#> + edges from 03cdfef (vertex names):
#> [1] g1->g4 g2->1 g3->2 g4->g6 g5->8 g6->g2 g7->g9 g8->6 g9->7 g1->g8
#> [11] g2->g3 g3->4 g4->3 g5->9 g6->5 g7->g5 g8->g7 g9->10
diff --git a/reference/as_adj_list.html b/reference/as_adj_list.html
index a78cf49521..905975a138 100644
--- a/reference/as_adj_list.html
+++ b/reference/as_adj_list.html
@@ -153,84 +153,84 @@ Examplesg <- make_ring(10)
as_adj_list(g)
#> [[1]]
-#> + 2/10 vertices, from 7c10e21:
+#> + 2/10 vertices, from c6763b1:
#> [1] 2 10
#>
#> [[2]]
-#> + 2/10 vertices, from 7c10e21:
+#> + 2/10 vertices, from c6763b1:
#> [1] 1 3
#>
#> [[3]]
-#> + 2/10 vertices, from 7c10e21:
+#> + 2/10 vertices, from c6763b1:
#> [1] 2 4
#>
#> [[4]]
-#> + 2/10 vertices, from 7c10e21:
+#> + 2/10 vertices, from c6763b1:
#> [1] 3 5
#>
#> [[5]]
-#> + 2/10 vertices, from 7c10e21:
+#> + 2/10 vertices, from c6763b1:
#> [1] 4 6
#>
#> [[6]]
-#> + 2/10 vertices, from 7c10e21:
+#> + 2/10 vertices, from c6763b1:
#> [1] 5 7
#>
#> [[7]]
-#> + 2/10 vertices, from 7c10e21:
+#> + 2/10 vertices, from c6763b1:
#> [1] 6 8
#>
#> [[8]]
-#> + 2/10 vertices, from 7c10e21:
+#> + 2/10 vertices, from c6763b1:
#> [1] 7 9
#>
#> [[9]]
-#> + 2/10 vertices, from 7c10e21:
+#> + 2/10 vertices, from c6763b1:
#> [1] 8 10
#>
#> [[10]]
-#> + 2/10 vertices, from 7c10e21:
+#> + 2/10 vertices, from c6763b1:
#> [1] 1 9
#>
as_adj_edge_list(g)
#> [[1]]
-#> + 2/10 edges from 7c10e21:
+#> + 2/10 edges from c6763b1:
#> [1] 1-- 2 1--10
#>
#> [[2]]
-#> + 2/10 edges from 7c10e21:
+#> + 2/10 edges from c6763b1:
#> [1] 1--2 2--3
#>
#> [[3]]
-#> + 2/10 edges from 7c10e21:
+#> + 2/10 edges from c6763b1:
#> [1] 2--3 3--4
#>
#> [[4]]
-#> + 2/10 edges from 7c10e21:
+#> + 2/10 edges from c6763b1:
#> [1] 3--4 4--5
#>
#> [[5]]
-#> + 2/10 edges from 7c10e21:
+#> + 2/10 edges from c6763b1:
#> [1] 4--5 5--6
#>
#> [[6]]
-#> + 2/10 edges from 7c10e21:
+#> + 2/10 edges from c6763b1:
#> [1] 5--6 6--7
#>
#> [[7]]
-#> + 2/10 edges from 7c10e21:
+#> + 2/10 edges from c6763b1:
#> [1] 6--7 7--8
#>
#> [[8]]
-#> + 2/10 edges from 7c10e21:
+#> + 2/10 edges from c6763b1:
#> [1] 7--8 8--9
#>
#> [[9]]
-#> + 2/10 edges from 7c10e21:
+#> + 2/10 edges from c6763b1:
#> [1] 8-- 9 9--10
#>
#> [[10]]
-#> + 2/10 edges from 7c10e21:
+#> + 2/10 edges from c6763b1:
#> [1] 1--10 9--10
#>
diff --git a/reference/automorphism_group.html b/reference/automorphism_group.html
index 9dffcfcbe2..0052ef396e 100644
--- a/reference/automorphism_group.html
+++ b/reference/automorphism_group.html
@@ -161,11 +161,11 @@ Examplesg <- make_ring(10)
automorphism_group(g)
#> [[1]]
-#> + 10/10 vertices, from 583d14a:
+#> + 10/10 vertices, from cb3675b:
#> [1] 1 10 9 8 7 6 5 4 3 2
#>
#> [[2]]
-#> + 10/10 vertices, from 583d14a:
+#> + 10/10 vertices, from cb3675b:
#> [1] 2 3 4 5 6 7 8 9 10 1
#>
diff --git a/reference/bfs.html b/reference/bfs.html
index c4d6129c83..c509e5d94a 100644
--- a/reference/bfs.html
+++ b/reference/bfs.html
@@ -281,22 +281,22 @@ Examples#> [1] "out"
#>
#> $order
-#> + 20/20 vertices, from ffef767:
+#> + 20/20 vertices, from e613432:
#> [1] 1 2 10 3 9 4 8 5 7 6 11 12 20 13 19 14 18 15 17 16
#>
#> $rank
#> [1] 1 2 4 6 8 10 9 7 5 3 11 12 14 16 18 20 19 17 15 13
#>
#> $father
-#> + 20/20 vertices, from ffef767:
+#> + 20/20 vertices, from e613432:
#> [1] NA 1 2 3 4 5 8 9 10 1 NA 11 12 13 14 15 18 19 20 11
#>
#> $pred
-#> + 20/20 vertices, from ffef767:
+#> + 20/20 vertices, from e613432:
#> [1] NA 1 10 9 8 7 5 4 3 2 NA 11 20 19 18 17 15 14 13 12
#>
#> $succ
-#> + 20/20 vertices, from ffef767:
+#> + 20/20 vertices, from e613432:
#> [1] 2 10 9 8 7 NA 6 5 4 3 12 20 19 18 17 NA 16 15 14 13
#>
#> $dist
@@ -369,7 +369,7 @@ Examples#> [1] "out"
#>
#> $order
-#> + 20/20 vertices, from 50be2b3:
+#> + 20/20 vertices, from fe585c9:
#> [1] 1 2 10 3 9 4 8 5 7 6 11 12 20 13 19 14 18 15 17 16
#>
#> $rank
diff --git a/reference/bipartite_projection.html b/reference/bipartite_projection.html
index d3404f3a9e..ad7fb1d5d7 100644
--- a/reference/bipartite_projection.html
+++ b/reference/bipartite_projection.html
@@ -179,15 +179,15 @@ Examplesg2$name <- "Event network"
proj2 <- bipartite_projection(g2)
print(proj2[[1]], g = TRUE, e = TRUE)
-#> IGRAPH e5a4a63 UNW- 5 6 -- Event network
+#> IGRAPH 64f1d64 UNW- 5 6 -- Event network
#> + attr: name (g/c), name (v/c), weight (e/n)
-#> + edges from e5a4a63 (vertex names):
+#> + edges from 64f1d64 (vertex names):
#> [1] Alice--Bob Alice--Cecil Alice--Dan Bob --Cecil Bob --Dan
#> [6] Cecil--Dan
print(proj2[[2]], g = TRUE, e = TRUE)
-#> IGRAPH 0dd5eb3 UNW- 3 2 -- Event network
+#> IGRAPH e89bc5d UNW- 3 2 -- Event network
#> + attr: name (g/c), name (v/c), weight (e/n)
-#> + edges from 0dd5eb3 (vertex names):
+#> + edges from e89bc5d (vertex names):
#> [1] Party --Skiing Skiing--Badminton
diff --git a/reference/c.igraph.es.html b/reference/c.igraph.es.html
index bc87ba1d5f..1b356d08e9 100644
--- a/reference/c.igraph.es.html
+++ b/reference/c.igraph.es.html
@@ -112,7 +112,7 @@ See alsoExamples
g <- make_(ring(10), with_vertex_(name = LETTERS[1:10]))
c(E(g)[1], E(g)["A|B"], E(g)[1:4])
-#> + 6/10 edges from 61c4bcb (vertex names):
+#> + 6/10 edges from 8e753c7 (vertex names):
#> [1] A--B A--B A--B B--C C--D D--E
diff --git a/reference/c.igraph.vs.html b/reference/c.igraph.vs.html
index ab296687a6..171fc854f9 100644
--- a/reference/c.igraph.vs.html
+++ b/reference/c.igraph.vs.html
@@ -112,7 +112,7 @@ See alsoExamples
g <- make_(ring(10), with_vertex_(name = LETTERS[1:10]))
c(V(g)[1], V(g)["A"], V(g)[1:4])
-#> + 6/10 vertices, named, from 1bea427:
+#> + 6/10 vertices, named, from c59ca6c:
#> [1] A A A B C D
diff --git a/reference/cliques.html b/reference/cliques.html
index 493d4a22c4..1c87acf317 100644
--- a/reference/cliques.html
+++ b/reference/cliques.html
@@ -200,156 +200,156 @@ Examples#> [1] 6
cliques(g, min = 6)
#> [[1]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 6 7 20 76 87 94
#>
#> [[2]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 7 20 28 53 76 94
#>
#> [[3]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 17 24 50 57 87 93
#>
#> [[4]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 8 15 31 40 56 63
#>
#> [[5]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 8 31 40 56 63 97
#>
#> [[6]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 8 13 68 69 75 97
#>
#> [[7]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 8 13 56 68 75 97
#>
#> [[8]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 56 63 68 81 82 97
#>
#> [[9]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 15 28 31 66 85 93
#>
#> [[10]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 3 38 50 68 96 99
#>
#> [[11]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 5 14 28 72 79 94
#>
#> [[12]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 5 14 54 72 79 94
#>
#> [[13]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 5 14 63 79 94 97
#>
#> [[14]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 5 14 63 77 94 97
#>
#> [[15]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 5 13 14 33 79 97
#>
#> [[16]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 5 14 17 63 77 97
#>
#> [[17]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 8 14 18 60 63 97
#>
#> [[18]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 17 24 46 57 84 91
#>
#> [[19]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 17 24 46 47 57 91
#>
largest_cliques(g)
#> [[1]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 3 99 50 96 68 38
#>
#> [[2]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 5 14 28 72 79 94
#>
#> [[3]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 5 14 54 79 72 94
#>
#> [[4]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 5 14 97 17 63 77
#>
#> [[5]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 5 14 97 79 13 33
#>
#> [[6]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 5 14 97 79 63 94
#>
#> [[7]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 5 14 97 77 94 63
#>
#> [[8]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 6 7 94 87 20 76
#>
#> [[9]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 7 53 94 28 76 20
#>
#> [[10]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 8 97 13 68 75 56
#>
#> [[11]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 8 97 13 68 75 69
#>
#> [[12]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 8 97 63 14 60 18
#>
#> [[13]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 8 97 63 40 56 31
#>
#> [[14]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 8 15 63 56 40 31
#>
#> [[15]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 15 93 31 85 28 66
#>
#> [[16]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 17 93 50 87 57 24
#>
#> [[17]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 17 46 91 57 24 84
#>
#> [[18]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 17 46 91 57 24 47
#>
#> [[19]]
-#> + 6/100 vertices, from bcc36d7:
+#> + 6/100 vertices, from b149911:
#> [1] 56 97 82 68 81 63
#>
@@ -357,567 +357,567 @@ Examplesg <- sample_gnp(100, 0.03)
max_cliques(g)
#> [[1]]
-#> + 1/100 vertex, from 3594231:
+#> + 1/100 vertex, from f14fa4f:
#> [1] 49
#>
#> [[2]]
-#> + 1/100 vertex, from 3594231:
+#> + 1/100 vertex, from f14fa4f:
#> [1] 64
#>
#> [[3]]
-#> + 1/100 vertex, from 3594231:
+#> + 1/100 vertex, from f14fa4f:
#> [1] 28
#>
#> [[4]]
-#> + 1/100 vertex, from 3594231:
+#> + 1/100 vertex, from f14fa4f:
#> [1] 27
#>
#> [[5]]
-#> + 1/100 vertex, from 3594231:
+#> + 1/100 vertex, from f14fa4f:
#> [1] 56
#>
#> [[6]]
-#> + 1/100 vertex, from 3594231:
+#> + 1/100 vertex, from f14fa4f:
#> [1] 35
#>
#> [[7]]
-#> + 1/100 vertex, from 3594231:
+#> + 1/100 vertex, from f14fa4f:
#> [1] 4
#>
#> [[8]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 89 80
#>
#> [[9]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 38 57
#>
#> [[10]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 70 1
#>
#> [[11]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 12 31
#>
#> [[12]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 93 22
#>
#> [[13]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 21 63
#>
#> [[14]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 73 50
#>
#> [[15]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 96 31
#>
#> [[16]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 25 23
#>
#> [[17]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 99 94
#>
#> [[18]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 32 75
#>
#> [[19]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 100 39
#>
#> [[20]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 44 16
#>
#> [[21]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 62 61
#>
#> [[22]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 36 2
#>
#> [[23]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 50 87
#>
#> [[24]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 51 3
#>
#> [[25]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 33 85
#>
#> [[26]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 33 65
#>
#> [[27]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 34 98
#>
#> [[28]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 34 58
#>
#> [[29]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 37 88
#>
#> [[30]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 37 85
#>
#> [[31]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 37 65
#>
#> [[32]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 39 72
#>
#> [[33]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 39 57
#>
#> [[34]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 39 46
#>
#> [[35]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 40 66
#>
#> [[36]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 40 61
#>
#> [[37]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 40 60
#>
#> [[38]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 40 31
#>
#> [[39]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 41 82
#>
#> [[40]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 41 18
#>
#> [[41]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 41 8
#>
#> [[42]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 42 79
#>
#> [[43]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 42 76
#>
#> [[44]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 43 97
#>
#> [[45]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 43 74
#>
#> [[46]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 43 58
#>
#> [[47]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 43 46
#>
#> [[48]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 45 30
#>
#> [[49]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 45 10
#>
#> [[50]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 47 19
#>
#> [[51]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 47 9
#>
#> [[52]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 47 6
#>
#> [[53]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 48 29
#>
#> [[54]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 48 5
#>
#> [[55]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 52 95
#>
#> [[56]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 52 6
#>
#> [[57]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 53 87
#>
#> [[58]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 53 9
#>
#> [[59]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 54 69
#>
#> [[60]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 54 24
#>
#> [[61]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 54 8
#>
#> [[62]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 55 78
#>
#> [[63]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 55 67
#>
#> [[64]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 55 26
#>
#> [[65]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 57 80
#>
#> [[66]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 57 69
#>
#> [[67]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 57 3
#>
#> [[68]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 58 90
#>
#> [[69]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 58 79
#>
#> [[70]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 58 59
#>
#> [[71]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 59 85
#>
#> [[72]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 60 86
#>
#> [[73]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 61 80
#>
#> [[74]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 61 75
#>
#> [[75]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 61 23
#>
#> [[76]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 63 78
#>
#> [[77]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 63 77
#>
#> [[78]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 63 19
#>
#> [[79]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 65 20
#>
#> [[80]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 65 16
#>
#> [[81]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 66 15
#>
#> [[82]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 66 13
#>
#> [[83]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 67 30
#>
#> [[84]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 67 16
#>
#> [[85]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 68 92
#>
#> [[86]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 68 85
#>
#> [[87]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 68 24
#>
#> [[88]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 68 2
#>
#> [[89]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 69 7
#>
#> [[90]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 71 87
#>
#> [[91]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 71 13
#>
#> [[92]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 71 11
#>
#> [[93]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 72 88
#>
#> [[94]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 72 78
#>
#> [[95]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 72 9
#>
#> [[96]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 74 84
#>
#> [[97]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 74 26
#>
#> [[98]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 75 90
#>
#> [[99]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 75 26
#>
#> [[100]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 76 87
#>
#> [[101]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 77 90
#>
#> [[102]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 77 87
#>
#> [[103]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 77 29
#>
#> [[104]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 77 9
#>
#> [[105]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 78 92
#>
#> [[106]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 78 13
#>
#> [[107]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 78 7
#>
#> [[108]]
-#> + 3/100 vertices, from 3594231:
+#> + 3/100 vertices, from f14fa4f:
#> [1] 81 17 84
#>
#> [[109]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 81 5
#>
#> [[110]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 82 86
#>
#> [[111]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 82 19
#>
#> [[112]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 83 22
#>
#> [[113]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 83 13
#>
#> [[114]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 84 97
#>
#> [[115]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 84 24
#>
#> [[116]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 84 22
#>
#> [[117]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 84 14
#>
#> [[118]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 85 26
#>
#> [[119]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 86 92
#>
#> [[120]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 86 90
#>
#> [[121]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 87 15
#>
#> [[122]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 90 94
#>
#> [[123]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 90 22
#>
#> [[124]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 91 14
#>
#> [[125]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 91 13
#>
#> [[126]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 94 98
#>
#> [[127]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 94 17
#>
#> [[128]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 95 26
#>
#> [[129]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 97 23
#>
#> [[130]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 98 23
#>
#> [[131]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 98 5
#>
#> [[132]]
-#> + 3/100 vertices, from 3594231:
+#> + 3/100 vertices, from f14fa4f:
#> [1] 2 13 26
#>
#> [[133]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 3 26
#>
#> [[134]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 6 26
#>
#> [[135]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 6 14
#>
#> [[136]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 10 31
#>
#> [[137]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 10 11
#>
#> [[138]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 15 30
#>
#> [[139]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 16 26
#>
#> [[140]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 18 20
#>
#> [[141]]
-#> + 2/100 vertices, from 3594231:
+#> + 2/100 vertices, from f14fa4f:
#> [1] 19 23
#>
diff --git a/reference/cohesive_blocks.html b/reference/cohesive_blocks.html
index 7132f81c18..e1657844cb 100644
--- a/reference/cohesive_blocks.html
+++ b/reference/cohesive_blocks.html
@@ -336,23 +336,23 @@ Examples#> '- B-5 c 3, n 4 ......o.oo o......... ...
blocks(mwBlocks)
#> [[1]]
-#> + 23/23 vertices, named, from b4a737c:
+#> + 23/23 vertices, named, from c9a91c0:
#> [1] 1 2 3 4 5 6 7 21 8 11 14 19 9 10 12 13 16 15 17 18 20 22 23
#>
#> [[2]]
-#> + 14/23 vertices, named, from b4a737c:
+#> + 14/23 vertices, named, from c9a91c0:
#> [1] 1 2 3 4 5 6 7 21 19 17 18 20 22 23
#>
#> [[3]]
-#> + 10/23 vertices, named, from b4a737c:
+#> + 10/23 vertices, named, from c9a91c0:
#> [1] 7 8 11 14 9 10 12 13 16 15
#>
#> [[4]]
-#> + 7/23 vertices, named, from b4a737c:
+#> + 7/23 vertices, named, from c9a91c0:
#> [1] 1 2 3 4 5 6 7
#>
#> [[5]]
-#> + 4/23 vertices, named, from b4a737c:
+#> + 4/23 vertices, named, from c9a91c0:
#> [1] 7 8 11 14
#>
cohesion(mwBlocks)
diff --git a/reference/complementer.html b/reference/complementer.html
index a82980851b..0b0d812db6 100644
--- a/reference/complementer.html
+++ b/reference/complementer.html
@@ -134,9 +134,9 @@ Examples## Complementer of a ring
g <- make_ring(10)
complementer(g)
-#> IGRAPH 9eca8b5 U--- 10 35 -- Ring graph
+#> IGRAPH 52b65f2 U--- 10 35 -- Ring graph
#> + attr: name (g/c), mutual (g/l), circular (g/l)
-#> + edges from 9eca8b5:
+#> + edges from 52b65f2:
#> [1] 1-- 9 1-- 8 1-- 7 1-- 6 1-- 5 1-- 4 1-- 3 2--10 2-- 9 2-- 8 2-- 7 2-- 6
#> [13] 2-- 5 2-- 4 3--10 3-- 9 3-- 8 3-- 7 3-- 6 3-- 5 4--10 4-- 9 4-- 8 4-- 7
#> [25] 4-- 6 5--10 5-- 9 5-- 8 5-- 7 6--10 6-- 9 6-- 8 7--10 7-- 9 8--10
@@ -146,10 +146,10 @@ Examplesgc <- complementer(g)
gu <- union(g, gc)
gu
-#> IGRAPH 40b1bd0 U--- 10 45 --
+#> IGRAPH a914cf6 U--- 10 45 --
#> + attr: name_1 (g/c), name_2 (g/c), mutual_1 (g/l), mutual_2 (g/l),
#> | circular_1 (g/l), circular_2 (g/l)
-#> + edges from 40b1bd0:
+#> + edges from a914cf6:
#> [1] 9--10 8--10 8-- 9 7--10 7-- 9 7-- 8 6--10 6-- 9 6-- 8 6-- 7 5--10 5-- 9
#> [13] 5-- 8 5-- 7 5-- 6 4--10 4-- 9 4-- 8 4-- 7 4-- 6 4-- 5 3--10 3-- 9 3-- 8
#> [25] 3-- 7 3-- 6 3-- 5 3-- 4 2--10 2-- 9 2-- 8 2-- 7 2-- 6 2-- 5 2-- 4 2-- 3
diff --git a/reference/components.html b/reference/components.html
index 299710e7d5..819ed07abd 100644
--- a/reference/components.html
+++ b/reference/components.html
@@ -226,9 +226,9 @@ Examples#> [1] 20
#>
largest_component(g)
-#> IGRAPH 54a5d93 U--- 8 8 -- Erdos-Renyi (gnp) graph
+#> IGRAPH e3d56c6 U--- 8 8 -- Erdos-Renyi (gnp) graph
#> + attr: name (g/c), type (g/c), loops (g/l), p (g/n)
-#> + edges from 54a5d93:
+#> + edges from e3d56c6:
#> [1] 1--3 2--3 2--5 3--6 3--7 4--7 3--8 5--8
diff --git a/reference/compose.html b/reference/compose.html
index 89bec1c90a..898f139a7b 100644
--- a/reference/compose.html
+++ b/reference/compose.html
@@ -163,7 +163,7 @@ Examplesg2 <- make_star(10, mode = "undirected")
gc <- compose(g1, g2)
print_all(gc)
-#> IGRAPH 0ca5313 U--- 10 36 --
+#> IGRAPH 2a2c237 U--- 10 36 --
#> + attr: name_1 (g/c), name_2 (g/c), mutual (g/l), circular (g/l), mode
#> | (g/c), center (g/n)
#> + edges:
@@ -178,7 +178,7 @@ Examples#> 9 -- 1 1 2 10
#> 10 -- 1 2 2 3 4 5 6 7 8 9 10 10
print_all(simplify(gc))
-#> IGRAPH fd85d1f U--- 10 24 --
+#> IGRAPH bb69425 U--- 10 24 --
#> + attr: name_1 (g/c), name_2 (g/c), mutual (g/l), circular (g/l), mode
#> | (g/c), center (g/n)
#> + edges:
diff --git a/reference/contract.html b/reference/contract.html
index dcf53f9054..3e59e28445 100644
--- a/reference/contract.html
+++ b/reference/contract.html
@@ -148,10 +148,10 @@ Examples## graph and edge attributes are kept, vertex attributes are
## combined using the 'toString' function.
print(g2, g = TRUE, v = TRUE, e = TRUE)
-#> IGRAPH 9428944 UNW- 5 10 -- Ring
+#> IGRAPH ecaff2c UNW- 5 10 -- Ring
#> + attr: name (g/c), mutual (g/l), circular (g/l), name (v/c), weight
#> | (e/n)
-#> + edges from 9428944 (vertex names):
+#> + edges from ecaff2c (vertex names):
#> [1] a, b--a, b a, b--c, d c, d--c, d c, d--e, f e, f--e, f e, f--g, h
#> [7] g, h--g, h g, h--i, j i, j--i, j a, b--i, j
diff --git a/reference/delete_edges.html b/reference/delete_edges.html
index 3024ce0800..3e8a51b992 100644
--- a/reference/delete_edges.html
+++ b/reference/delete_edges.html
@@ -121,25 +121,25 @@ Examplesg <- make_ring(10) %>%
delete_edges(seq(1, 9, by = 2))
g
-#> IGRAPH 377a32a U--- 10 5 -- Ring graph
+#> IGRAPH c22d6f6 U--- 10 5 -- Ring graph
#> + attr: name (g/c), mutual (g/l), circular (g/l)
-#> + edges from 377a32a:
+#> + edges from c22d6f6:
#> [1] 2-- 3 4-- 5 6-- 7 8-- 9 1--10
g <- make_ring(10) %>%
delete_edges("10|1")
g
-#> IGRAPH 06fcb87 U--- 10 9 -- Ring graph
+#> IGRAPH 145b604 U--- 10 9 -- Ring graph
#> + attr: name (g/c), mutual (g/l), circular (g/l)
-#> + edges from 06fcb87:
+#> + edges from 145b604:
#> [1] 1-- 2 2-- 3 3-- 4 4-- 5 5-- 6 6-- 7 7-- 8 8-- 9 9--10
g <- make_ring(5)
g <- delete_edges(g, get.edge.ids(g, c(1, 5, 4, 5)))
g
-#> IGRAPH ef83ca1 U--- 5 3 -- Ring graph
+#> IGRAPH f1bebe4 U--- 5 3 -- Ring graph
#> + attr: name (g/c), mutual (g/l), circular (g/l)
-#> + edges from ef83ca1:
+#> + edges from f1bebe4:
#> [1] 1--2 2--3 3--4
diff --git a/reference/delete_vertices.html b/reference/delete_vertices.html
index fc67e42ee2..b763bf7758 100644
--- a/reference/delete_vertices.html
+++ b/reference/delete_vertices.html
@@ -118,23 +118,23 @@ Examplesg <- make_ring(10) %>%
set_vertex_attr("name", value = LETTERS[1:10])
g
-#> IGRAPH 3bbad7b UN-- 10 10 -- Ring graph
+#> IGRAPH c6e26ce UN-- 10 10 -- Ring graph
#> + attr: name (g/c), mutual (g/l), circular (g/l), name (v/c)
-#> + edges from 3bbad7b (vertex names):
+#> + edges from c6e26ce (vertex names):
#> [1] A--B B--C C--D D--E E--F F--G G--H H--I I--J A--J
V(g)
-#> + 10/10 vertices, named, from 3bbad7b:
+#> + 10/10 vertices, named, from c6e26ce:
#> [1] A B C D E F G H I J
g2 <- delete_vertices(g, c(1, 5)) %>%
delete_vertices("B")
g2
-#> IGRAPH da87895 UN-- 7 5 -- Ring graph
+#> IGRAPH 549323d UN-- 7 5 -- Ring graph
#> + attr: name (g/c), mutual (g/l), circular (g/l), name (v/c)
-#> + edges from da87895 (vertex names):
+#> + edges from 549323d (vertex names):
#> [1] C--D F--G G--H H--I I--J
V(g2)
-#> + 7/7 vertices, named, from da87895:
+#> + 7/7 vertices, named, from 549323d:
#> [1] C D F G H I J
diff --git a/reference/dfs.html b/reference/dfs.html
index b89c3b5da6..7e197d743c 100644
--- a/reference/dfs.html
+++ b/reference/dfs.html
@@ -252,15 +252,15 @@ Examples#> [1] "out"
#>
#> $order
-#> + 20/20 vertices, from 8afadc6:
+#> + 20/20 vertices, from 4dc08d2:
#> [1] 1 2 4 8 9 5 10 3 6 7 11 12 14 18 19 15 20 13 16 17
#>
#> $order.out
-#> + 20/20 vertices, from 8afadc6:
+#> + 20/20 vertices, from 4dc08d2:
#> [1] 8 9 4 10 5 2 6 7 3 1 18 19 14 20 15 12 16 17 13 11
#>
#> $father
-#> + 20/20 vertices, from 8afadc6:
+#> + 20/20 vertices, from 4dc08d2:
#> [1] NA 1 1 2 2 3 3 4 4 5 NA 11 11 12 12 13 13 14 14 15
#>
#> $dist
diff --git a/reference/diameter.html b/reference/diameter.html
index 17bf688179..38877c5a57 100644
--- a/reference/diameter.html
+++ b/reference/diameter.html
@@ -147,12 +147,12 @@ Examplesdiameter(g)
#> [1] 27
get_diameter(g)
-#> + 5/10 vertices, from d626024:
+#> + 5/10 vertices, from 1677c31:
#> [1] 1 10 9 8 7
diameter(g, weights = NA)
#> [1] 5
get_diameter(g, weights = NA)
-#> + 6/10 vertices, from d626024:
+#> + 6/10 vertices, from 1677c31:
#> [1] 1 2 3 4 5 6
diff --git a/reference/difference.igraph.es.html b/reference/difference.igraph.es.html
index 5b9f837188..38ca493480 100644
--- a/reference/difference.igraph.es.html
+++ b/reference/difference.igraph.es.html
@@ -121,7 +121,7 @@ See alsoExamples
g <- make_(ring(10), with_vertex_(name = LETTERS[1:10]))
difference(V(g), V(g)[6:10])
-#> + 5/10 vertices, named, from c777ae5:
+#> + 5/10 vertices, named, from ed92891:
#> [1] A B C D E
diff --git a/reference/difference.igraph.html b/reference/difference.igraph.html
index a961a1d0d8..7048d65c11 100644
--- a/reference/difference.igraph.html
+++ b/reference/difference.igraph.html
@@ -160,7 +160,7 @@ ExamplesV(sstar)$name <- letters[c(1, 3, 5, 7, 9, 11)]
G <- wheel %m% sstar
print_all(G)
-#> IGRAPH b26caac UN-- 11 15 --
+#> IGRAPH 8594efc UN-- 11 15 --
#> + attr: name_1 (g/c), name_2 (g/c), mutual (g/l), circular (g/l), mode
#> | (g/c), center (g/n), name (v/c)
#> + edges (vertex names):
diff --git a/reference/difference.igraph.vs.html b/reference/difference.igraph.vs.html
index 6b379bb052..69af3672a3 100644
--- a/reference/difference.igraph.vs.html
+++ b/reference/difference.igraph.vs.html
@@ -121,7 +121,7 @@ See alsoExamples
g <- make_(ring(10), with_vertex_(name = LETTERS[1:10]))
difference(V(g), V(g)[6:10])
-#> + 5/10 vertices, named, from c697ce0:
+#> + 5/10 vertices, named, from 8cbccff:
#> [1] A B C D E
diff --git a/reference/disjoint_union.html b/reference/disjoint_union.html
index d399e927f6..25d3337eb5 100644
--- a/reference/disjoint_union.html
+++ b/reference/disjoint_union.html
@@ -149,10 +149,10 @@ Examplesg2 <- make_ring(10)
V(g2)$name <- letters[11:20]
print_all(g1 %du% g2)
-#> IGRAPH 0a9710c UN-- 20 19 --
+#> IGRAPH 5fe40d2 UN-- 20 19 --
#> + attr: name_1 (g/c), name_2 (g/c), mode (g/c), center (g/n), mutual
#> | (g/l), circular (g/l), name (v/c)
-#> + edges from 0a9710c (vertex names):
+#> + edges from 5fe40d2 (vertex names):
#> [1] a--b a--c a--d a--e a--f a--g a--h a--i a--j k--l l--m m--n n--o o--p p--q
#> [16] q--r r--s s--t k--t
diff --git a/reference/distances.html b/reference/distances.html
index d401716a9e..a663244660 100644
--- a/reference/distances.html
+++ b/reference/distances.html
@@ -376,43 +376,43 @@ Examplesshortest_paths(g, 5)
#> $vpath
#> $vpath[[1]]
-#> + 5/10 vertices, from f8f32ce:
+#> + 5/10 vertices, from 785660c:
#> [1] 5 4 3 2 1
#>
#> $vpath[[2]]
-#> + 4/10 vertices, from f8f32ce:
+#> + 4/10 vertices, from 785660c:
#> [1] 5 4 3 2
#>
#> $vpath[[3]]
-#> + 3/10 vertices, from f8f32ce:
+#> + 3/10 vertices, from 785660c:
#> [1] 5 4 3
#>
#> $vpath[[4]]
-#> + 2/10 vertices, from f8f32ce:
+#> + 2/10 vertices, from 785660c:
#> [1] 5 4
#>
#> $vpath[[5]]
-#> + 1/10 vertex, from f8f32ce:
+#> + 1/10 vertex, from 785660c:
#> [1] 5
#>
#> $vpath[[6]]
-#> + 2/10 vertices, from f8f32ce:
+#> + 2/10 vertices, from 785660c:
#> [1] 5 6
#>
#> $vpath[[7]]
-#> + 3/10 vertices, from f8f32ce:
+#> + 3/10 vertices, from 785660c:
#> [1] 5 6 7
#>
#> $vpath[[8]]
-#> + 4/10 vertices, from f8f32ce:
+#> + 4/10 vertices, from 785660c:
#> [1] 5 6 7 8
#>
#> $vpath[[9]]
-#> + 5/10 vertices, from f8f32ce:
+#> + 5/10 vertices, from 785660c:
#> [1] 5 6 7 8 9
#>
#> $vpath[[10]]
-#> + 6/10 vertices, from f8f32ce:
+#> + 6/10 vertices, from 785660c:
#> [1] 5 4 3 2 1 10
#>
#>
@@ -428,19 +428,19 @@ Examplesall_shortest_paths(g, 1, 6:8)
#> $vpaths
#> $vpaths[[1]]
-#> + 6/10 vertices, from f8f32ce:
+#> + 6/10 vertices, from 785660c:
#> [1] 1 10 9 8 7 6
#>
#> $vpaths[[2]]
-#> + 6/10 vertices, from f8f32ce:
+#> + 6/10 vertices, from 785660c:
#> [1] 1 2 3 4 5 6
#>
#> $vpaths[[3]]
-#> + 5/10 vertices, from f8f32ce:
+#> + 5/10 vertices, from 785660c:
#> [1] 1 10 9 8 7
#>
#> $vpaths[[4]]
-#> + 4/10 vertices, from f8f32ce:
+#> + 4/10 vertices, from 785660c:
#> [1] 1 10 9 8
#>
#>
@@ -463,19 +463,19 @@ Examples#>
#> $res
#> $res[[1]]
-#> + 6/10 vertices, from f8f32ce:
+#> + 6/10 vertices, from 785660c:
#> [1] 1 10 9 8 7 6
#>
#> $res[[2]]
-#> + 6/10 vertices, from f8f32ce:
+#> + 6/10 vertices, from 785660c:
#> [1] 1 2 3 4 5 6
#>
#> $res[[3]]
-#> + 5/10 vertices, from f8f32ce:
+#> + 5/10 vertices, from 785660c:
#> [1] 1 10 9 8 7
#>
#> $res[[4]]
-#> + 4/10 vertices, from f8f32ce:
+#> + 4/10 vertices, from 785660c:
#> [1] 1 10 9 8
#>
#>
diff --git a/reference/edge.html b/reference/edge.html
index 82e147e2c1..46a2d9c910 100644
--- a/reference/edge.html
+++ b/reference/edge.html
@@ -161,7 +161,7 @@ Examples edge("8|9")
E(g)[[]]
-#> + 11/11 edges from 42fd989:
+#> + 11/11 edges from 7c78ac9:
#> tail head tid hid color
#> 1 1 2 1 2 red
#> 2 2 3 2 3 red
diff --git a/reference/edge_attr-set.html b/reference/edge_attr-set.html
index f484669fc0..74f9692cf6 100644
--- a/reference/edge_attr-set.html
+++ b/reference/edge_attr-set.html
@@ -128,10 +128,10 @@ Examples)
edge_attr(g, "label") <- E(g)$name
g
-#> IGRAPH cc3a21d U--- 10 10 -- Ring graph
+#> IGRAPH 177ee2f U--- 10 10 -- Ring graph
#> + attr: name (g/c), mutual (g/l), circular (g/l), name (e/c), color
#> | (e/c), label (e/c)
-#> + edges from cc3a21d:
+#> + edges from 177ee2f:
#> [1] 1-- 2 2-- 3 3-- 4 4-- 5 5-- 6 6-- 7 7-- 8 8-- 9 9--10 1--10
plot(g)
diff --git a/reference/edge_attr.html b/reference/edge_attr.html
index 2a60d8d462..e3fa561bcd 100644
--- a/reference/edge_attr.html
+++ b/reference/edge_attr.html
@@ -120,10 +120,10 @@ Examples set_edge_attr("weight", value = 1:10) %>%
set_edge_attr("color", value = "red")
g
-#> IGRAPH 87efada U-W- 10 10 -- Ring graph
+#> IGRAPH 6b2c5cf U-W- 10 10 -- Ring graph
#> + attr: name (g/c), mutual (g/l), circular (g/l), weight (e/n), color
#> | (e/c)
-#> + edges from 87efada:
+#> + edges from 6b2c5cf:
#> [1] 1-- 2 2-- 3 3-- 4 4-- 5 5-- 6 6-- 7 7-- 8 8-- 9 9--10 1--10
plot(g, edge.width = E(g)$weight)
diff --git a/reference/ego.html b/reference/ego.html
index 4588b46f22..c96a142f3f 100644
--- a/reference/ego.html
+++ b/reference/ego.html
@@ -267,82 +267,82 @@ Examples
ego(g, order = 0, 1:3)
#> [[1]]
-#> + 1/10 vertex, from 1aecfbe:
+#> + 1/10 vertex, from f880ab5:
#> [1] 1
#>
#> [[2]]
-#> + 1/10 vertex, from 1aecfbe:
+#> + 1/10 vertex, from f880ab5:
#> [1] 2
#>
#> [[3]]
-#> + 1/10 vertex, from 1aecfbe:
+#> + 1/10 vertex, from f880ab5:
#> [1] 3
#>
ego(g, order = 1, 1:3)
#> [[1]]
-#> + 3/10 vertices, from 1aecfbe:
+#> + 3/10 vertices, from f880ab5:
#> [1] 1 2 10
#>
#> [[2]]
-#> + 3/10 vertices, from 1aecfbe:
+#> + 3/10 vertices, from f880ab5:
#> [1] 2 1 3
#>
#> [[3]]
-#> + 3/10 vertices, from 1aecfbe:
+#> + 3/10 vertices, from f880ab5:
#> [1] 3 2 4
#>
ego(g, order = 2, 1:3)
#> [[1]]
-#> + 5/10 vertices, from 1aecfbe:
+#> + 5/10 vertices, from f880ab5:
#> [1] 1 2 10 3 9
#>
#> [[2]]
-#> + 5/10 vertices, from 1aecfbe:
+#> + 5/10 vertices, from f880ab5:
#> [1] 2 1 3 10 4
#>
#> [[3]]
-#> + 5/10 vertices, from 1aecfbe:
+#> + 5/10 vertices, from f880ab5:
#> [1] 3 2 4 1 5
#>
# neighborhood() is an alias of ego()
neighborhood(g, order = 0, 1:3)
#> [[1]]
-#> + 1/10 vertex, from 1aecfbe:
+#> + 1/10 vertex, from f880ab5:
#> [1] 1
#>
#> [[2]]
-#> + 1/10 vertex, from 1aecfbe:
+#> + 1/10 vertex, from f880ab5:
#> [1] 2
#>
#> [[3]]
-#> + 1/10 vertex, from 1aecfbe:
+#> + 1/10 vertex, from f880ab5:
#> [1] 3
#>
neighborhood(g, order = 1, 1:3)
#> [[1]]
-#> + 3/10 vertices, from 1aecfbe:
+#> + 3/10 vertices, from f880ab5:
#> [1] 1 2 10
#>
#> [[2]]
-#> + 3/10 vertices, from 1aecfbe:
+#> + 3/10 vertices, from f880ab5:
#> [1] 2 1 3
#>
#> [[3]]
-#> + 3/10 vertices, from 1aecfbe:
+#> + 3/10 vertices, from f880ab5:
#> [1] 3 2 4
#>
neighborhood(g, order = 2, 1:3)
#> [[1]]
-#> + 5/10 vertices, from 1aecfbe:
+#> + 5/10 vertices, from f880ab5:
#> [1] 1 2 10 3 9
#>
#> [[2]]
-#> + 5/10 vertices, from 1aecfbe:
+#> + 5/10 vertices, from f880ab5:
#> [1] 2 1 3 10 4
#>
#> [[3]]
-#> + 5/10 vertices, from 1aecfbe:
+#> + 5/10 vertices, from f880ab5:
#> [1] 3 2 4 1 5
#>
@@ -350,41 +350,41 @@ ExamplesV(g)$name <- c("a", "b", "c", "d", "e", "f", "g", "h", "i", "j")
make_ego_graph(g, order = 2, 1:3)
#> [[1]]
-#> IGRAPH 83c93bd UN-- 5 4 -- Ring graph
+#> IGRAPH 0fb5de7 UN-- 5 4 -- Ring graph
#> + attr: name (g/c), mutual (g/l), circular (g/l), name (v/c)
-#> + edges from 83c93bd (vertex names):
+#> + edges from 0fb5de7 (vertex names):
#> [1] a--b b--c a--j i--j
#>
#> [[2]]
-#> IGRAPH a34e476 UN-- 5 4 -- Ring graph
+#> IGRAPH fd78497 UN-- 5 4 -- Ring graph
#> + attr: name (g/c), mutual (g/l), circular (g/l), name (v/c)
-#> + edges from a34e476 (vertex names):
+#> + edges from fd78497 (vertex names):
#> [1] a--b b--c c--d a--j
#>
#> [[3]]
-#> IGRAPH 1e1be49 UN-- 5 4 -- Ring graph
+#> IGRAPH 2d84446 UN-- 5 4 -- Ring graph
#> + attr: name (g/c), mutual (g/l), circular (g/l), name (v/c)
-#> + edges from 1e1be49 (vertex names):
+#> + edges from 2d84446 (vertex names):
#> [1] a--b b--c c--d d--e
#>
# make_neighborhood_graph() is an alias of make_ego_graph()
make_neighborhood_graph(g, order = 2, 1:3)
#> [[1]]
-#> IGRAPH 2c35ba2 UN-- 5 4 -- Ring graph
+#> IGRAPH c997034 UN-- 5 4 -- Ring graph
#> + attr: name (g/c), mutual (g/l), circular (g/l), name (v/c)
-#> + edges from 2c35ba2 (vertex names):
+#> + edges from c997034 (vertex names):
#> [1] a--b b--c a--j i--j
#>
#> [[2]]
-#> IGRAPH a7d1409 UN-- 5 4 -- Ring graph
+#> IGRAPH 40612b8 UN-- 5 4 -- Ring graph
#> + attr: name (g/c), mutual (g/l), circular (g/l), name (v/c)
-#> + edges from a7d1409 (vertex names):
+#> + edges from 40612b8 (vertex names):
#> [1] a--b b--c c--d a--j
#>
#> [[3]]
-#> IGRAPH 3bb91a3 UN-- 5 4 -- Ring graph
+#> IGRAPH 78f6c49 UN-- 5 4 -- Ring graph
#> + attr: name (g/c), mutual (g/l), circular (g/l), name (v/c)
-#> + edges from 3bb91a3 (vertex names):
+#> + edges from 78f6c49 (vertex names):
#> [1] a--b b--c c--d d--e
#>
diff --git a/reference/feedback_arc_set.html b/reference/feedback_arc_set.html
index 6ae62ddabc..e98ba10923 100644
--- a/reference/feedback_arc_set.html
+++ b/reference/feedback_arc_set.html
@@ -156,10 +156,10 @@ Examples
g <- sample_gnm(20, 40, directed = TRUE)
feedback_arc_set(g)
-#> + 8/40 edges from d15e94e:
+#> + 8/40 edges from 36ccc96:
#> [1] 2-> 9 4->10 7-> 5 7-> 8 7->15 11->18 12-> 1 12-> 9
feedback_arc_set(g, algo = "approx")
-#> + 8/40 edges from d15e94e:
+#> + 8/40 edges from 36ccc96:
#> [1] 2-> 9 4->10 7-> 5 7-> 8 7->15 11->18 12-> 1 12-> 9
diff --git a/reference/get.edge.ids.html b/reference/get.edge.ids.html
index f7f676f149..5e55f527f1 100644
--- a/reference/get.edge.ids.html
+++ b/reference/get.edge.ids.html
@@ -146,7 +146,7 @@ Examplesg <- make_ring(10)
ei <- get.edge.ids(g, c(1, 2, 4, 5))
E(g)[ei]
-#> + 2/10 edges from 012f5cf:
+#> + 2/10 edges from d88d381:
#> [1] 1--2 4--5
## non-existant edge
@@ -160,7 +160,7 @@ Exampleseis
#> [1] 5 5
E(g)[eis]
-#> + 2/5 edges from 93b3bb7:
+#> + 2/5 edges from 9ee5c6a:
#> [1] 1->2 1->2
diff --git a/reference/girth.html b/reference/girth.html
index 86c7a699c2..7117372451 100644
--- a/reference/girth.html
+++ b/reference/girth.html
@@ -157,7 +157,7 @@ Examples#> [1] Inf
#>
#> $circle
-#> + 0/1000 vertices, from 575d77b:
+#> + 0/1000 vertices, from 65bf52a:
#>
# The worst case running time is for a ring
@@ -167,7 +167,7 @@ Examples#> [1] 100
#>
#> $circle
-#> + 100/100 vertices, from e5570a3:
+#> + 100/100 vertices, from dacdddc:
#> [1] 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
#> [19] 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
#> [37] 87 88 89 90 91 92 93 94 95 96 97 98 99 100 1 2 3 4
@@ -183,7 +183,7 @@ Examples#> [1] 16
#>
#> $circle
-#> + 16/1000 vertices, from b828dc1:
+#> + 16/1000 vertices, from 3e8db1b:
#> [1] 621 656 162 333 482 437 472 845 142 114 338 717 698 147 401 270
#>
diff --git a/reference/graph_.html b/reference/graph_.html
index c921528960..c0fd8126d6 100644
--- a/reference/graph_.html
+++ b/reference/graph_.html
@@ -84,12 +84,12 @@ Details
Examples
## These are equivalent
graph_(cbind(1:5, 2:6), from_edgelist(directed = FALSE))
-#> IGRAPH bd7332e U--- 6 5 --
-#> + edges from bd7332e:
+#> IGRAPH 82cd19a U--- 6 5 --
+#> + edges from 82cd19a:
#> [1] 1--2 2--3 3--4 4--5 5--6
graph_(cbind(1:5, 2:6), from_edgelist(), directed = FALSE)
-#> IGRAPH 2228daf U--- 6 5 --
-#> + edges from 2228daf:
+#> IGRAPH 04c473a U--- 6 5 --
+#> + edges from 04c473a:
#> [1] 1--2 2--3 3--4 4--5 5--6
diff --git a/reference/graph_attr-set.html b/reference/graph_attr-set.html
index 8193907297..ed6441c628 100644
--- a/reference/graph_attr-set.html
+++ b/reference/graph_attr-set.html
@@ -118,9 +118,9 @@ Examplesg <- make_graph(~ A - B:C:D)
graph_attr(g, "name") <- "4-star"
g
-#> IGRAPH 536634e UN-- 4 3 -- 4-star
+#> IGRAPH 8f1031a UN-- 4 3 -- 4-star
#> + attr: name (g/c), name (v/c)
-#> + edges from 536634e (vertex names):
+#> + edges from 8f1031a (vertex names):
#> [1] A--B A--C A--D
graph_attr(g) <- list(
diff --git a/reference/graph_from_adjacency_matrix.html b/reference/graph_from_adjacency_matrix.html
index 2ed6a2aed8..7ccaccbeb3 100644
--- a/reference/graph_from_adjacency_matrix.html
+++ b/reference/graph_from_adjacency_matrix.html
@@ -276,7 +276,7 @@ Examplescolnames(adjm) <- seq(ncol(adjm))
g10 <- graph_from_adjacency_matrix(adjm, weighted = TRUE, add.rownames = "code")
summary(g10)
-#> IGRAPH 0fae21d DNW- 10 47 --
+#> IGRAPH 9ece35d DNW- 10 47 --
#> + attr: name (v/c), code (v/c), weight (e/n)
diff --git a/reference/graph_from_atlas.html b/reference/graph_from_atlas.html
index 12b6c46792..89350f985c 100644
--- a/reference/graph_from_atlas.html
+++ b/reference/graph_from_atlas.html
@@ -143,14 +143,14 @@ See alsoExamples
## Some randomly picked graphs from the atlas
graph_from_atlas(sample(0:1252, 1))
-#> IGRAPH 324eefe U--- 7 15 -- Graph from the Atlas #1197
+#> IGRAPH af11fa5 U--- 7 15 -- Graph from the Atlas #1197
#> + attr: name (g/c), n (g/n)
-#> + edges from 324eefe:
+#> + edges from af11fa5:
#> [1] 1--2 1--3 1--4 1--5 1--6 1--7 2--6 2--7 3--5 3--6 3--7 4--5 4--6 4--7 5--7
graph_from_atlas(sample(0:1252, 1))
-#> IGRAPH 6fffcdc U--- 6 7 -- Graph from the Atlas #112
+#> IGRAPH e63bfca U--- 6 7 -- Graph from the Atlas #112
#> + attr: name (g/c), n (g/n)
-#> + edges from 6fffcdc:
+#> + edges from e63bfca:
#> [1] 1--2 2--5 3--5 3--4 2--6 3--6 2--3
diff --git a/reference/graph_from_biadjacency_matrix.html b/reference/graph_from_biadjacency_matrix.html
index 4c6e0d9ea8..f53ff9f404 100644
--- a/reference/graph_from_biadjacency_matrix.html
+++ b/reference/graph_from_biadjacency_matrix.html
@@ -167,9 +167,9 @@ Examplescolnames(inc) <- letters[1:5]
rownames(inc) <- LETTERS[1:3]
graph_from_biadjacency_matrix(inc)
-#> IGRAPH 82655c5 UN-B 8 4 --
+#> IGRAPH 6a48304 UN-B 8 4 --
#> + attr: type (v/l), name (v/c)
-#> + edges from 82655c5 (vertex names):
+#> + edges from 6a48304 (vertex names):
#> [1] A--c B--a C--c C--d
diff --git a/reference/graph_from_data_frame.html b/reference/graph_from_data_frame.html
index fbb947eb94..c5a0c239a0 100644
--- a/reference/graph_from_data_frame.html
+++ b/reference/graph_from_data_frame.html
@@ -211,10 +211,10 @@ Examples)
g <- graph_from_data_frame(relations, directed = TRUE, vertices = actors)
print(g, e = TRUE, v = TRUE)
-#> IGRAPH 1a1fb11 DN-- 5 6 --
+#> IGRAPH a665def DN-- 5 6 --
#> + attr: name (v/c), age (v/n), gender (v/c), same.dept (e/l),
#> | friendship (e/n), advice (e/n)
-#> + edges from 1a1fb11 (vertex names):
+#> + edges from a665def (vertex names):
#> [1] Bob ->Alice Cecil ->Bob Cecil ->Alice David ->Alice
#> [5] David ->Bob Esmeralda->Alice
diff --git a/reference/graph_from_edgelist.html b/reference/graph_from_edgelist.html
index 36e27da89b..1cbdd61245 100644
--- a/reference/graph_from_edgelist.html
+++ b/reference/graph_from_edgelist.html
@@ -126,15 +126,15 @@ See alsoExamples
el <- matrix(c("foo", "bar", "bar", "foobar"), nc = 2, byrow = TRUE)
graph_from_edgelist(el)
-#> IGRAPH 0b1d70f DN-- 3 2 --
+#> IGRAPH 9b6d429 DN-- 3 2 --
#> + attr: name (v/c)
-#> + edges from 0b1d70f (vertex names):
+#> + edges from 9b6d429 (vertex names):
#> [1] foo->bar bar->foobar
# Create a ring by hand
graph_from_edgelist(cbind(1:10, c(2:10, 1)))
-#> IGRAPH bd65811 D--- 10 10 --
-#> + edges from bd65811:
+#> IGRAPH 37e3ba7 D--- 10 10 --
+#> + edges from 37e3ba7:
#> [1] 1-> 2 2-> 3 3-> 4 4-> 5 5-> 6 6-> 7 7-> 8 8-> 9 9->10 10-> 1
diff --git a/reference/graph_from_literal.html b/reference/graph_from_literal.html
index 510679a4b3..bf86a22ca3 100644
--- a/reference/graph_from_literal.html
+++ b/reference/graph_from_literal.html
@@ -162,18 +162,18 @@ Examples Cecil - Gordon
)
g
-#> IGRAPH 66c04e2 UN-- 6 6 --
+#> IGRAPH abed924 UN-- 6 6 --
#> + attr: name (v/c)
-#> + edges from 66c04e2 (vertex names):
+#> + edges from abed924 (vertex names):
#> [1] Alice--Bob Alice--Cecil Bob --Cecil Cecil--Daniel Cecil--Eugene
#> [6] Cecil--Gordon
# Another undirected graph, ":" notation
g2 <- graph_from_literal(Alice - Bob:Cecil:Daniel, Cecil:Daniel - Eugene:Gordon)
g2
-#> IGRAPH 1314ff1 UN-- 6 7 --
+#> IGRAPH 78bb4a6 UN-- 6 7 --
#> + attr: name (v/c)
-#> + edges from 1314ff1 (vertex names):
+#> + edges from 78bb4a6 (vertex names):
#> [1] Alice --Bob Alice --Cecil Alice --Daniel Cecil --Eugene Cecil --Gordon
#> [6] Daniel--Eugene Daniel--Gordon
@@ -183,18 +183,18 @@ Examples Eugene --+ Gordon:Helen
)
g3
-#> IGRAPH 4fff995 DN-- 7 6 --
+#> IGRAPH e2528b2 DN-- 7 6 --
#> + attr: name (v/c)
-#> + edges from 4fff995 (vertex names):
+#> + edges from e2528b2 (vertex names):
#> [1] Alice ->Bob Bob ->Alice Bob ->Cecil Daniel->Cecil Eugene->Gordon
#> [6] Eugene->Helen
# A graph with isolate vertices
g4 <- graph_from_literal(Alice -- Bob -- Daniel, Cecil:Gordon, Helen)
g4
-#> IGRAPH 89bc910 UN-- 6 2 --
+#> IGRAPH cb125f5 UN-- 6 2 --
#> + attr: name (v/c)
-#> + edges from 89bc910 (vertex names):
+#> + edges from cb125f5 (vertex names):
#> [1] Alice--Bob Bob --Daniel
V(g4)$name
#> [1] "Alice" "Bob" "Daniel" "Cecil" "Gordon" "Helen"
@@ -202,17 +202,17 @@ Examples# "Arrows" can be arbitrarily long
g5 <- graph_from_literal(Alice +---------+ Bob)
g5
-#> IGRAPH 9e04986 DN-- 2 2 --
+#> IGRAPH bd4965c DN-- 2 2 --
#> + attr: name (v/c)
-#> + edges from 9e04986 (vertex names):
+#> + edges from bd4965c (vertex names):
#> [1] Alice->Bob Bob ->Alice
# Special vertex names
g6 <- graph_from_literal("+" -- "-", "*" -- "/", "%%" -- "%/%")
g6
-#> IGRAPH f90d838 UN-- 6 3 --
+#> IGRAPH ea91ed0 UN-- 6 3 --
#> + attr: name (v/c)
-#> + edges from f90d838 (vertex names):
+#> + edges from ea91ed0 (vertex names):
#> [1] + --- * --/ %%--%/%
diff --git a/reference/graph_id.html b/reference/graph_id.html
index 00f851cebc..059e9ef720 100644
--- a/reference/graph_id.html
+++ b/reference/graph_id.html
@@ -100,15 +100,15 @@ Value
Examples
g <- make_ring(10)
graph_id(g)
-#> [1] "eb8936a1-c31d-4c84-a95e-40f6b3513ff5"
+#> [1] "3cbb88f0-319c-4bf1-b100-8e676f0098bb"
graph_id(V(g))
-#> [1] "eb8936a1-c31d-4c84-a95e-40f6b3513ff5"
+#> [1] "3cbb88f0-319c-4bf1-b100-8e676f0098bb"
graph_id(E(g))
-#> [1] "eb8936a1-c31d-4c84-a95e-40f6b3513ff5"
+#> [1] "3cbb88f0-319c-4bf1-b100-8e676f0098bb"
g2 <- g + 1
graph_id(g2)
-#> [1] "928c7902-8d80-4fb1-8206-a826151c9381"
+#> [1] "56be5992-a60f-4b72-b2eb-3cbe16bfa378"
diff --git a/reference/igraph-es-indexing.html b/reference/igraph-es-indexing.html
index 70f45b45d1..7284b9e7b2 100644
--- a/reference/igraph-es-indexing.html
+++ b/reference/igraph-es-indexing.html
@@ -214,13 +214,13 @@ Examples# Special operators for indexing based on graph structure
g <- sample_pa(100, power = 0.3)
E(g)[1:3 %--% 2:6]
-#> + 5/99 edges from 1a5dbe6:
+#> + 5/99 edges from dcbc819:
#> [1] 2->1 3->1 4->1 5->3 6->2
E(g)[1:5 %->% 1:6]
-#> + 4/99 edges from 1a5dbe6:
+#> + 4/99 edges from dcbc819:
#> [1] 2->1 3->1 4->1 5->3
E(g)[1:3 %<-% 2:6]
-#> + 5/99 edges from 1a5dbe6:
+#> + 5/99 edges from dcbc819:
#> [1] 2->1 3->1 4->1 5->3 6->2
# -----------------------------------------------------------------
@@ -228,7 +228,7 @@ Examplesg <- sample_pa(100, directed = FALSE)
d <- get_diameter(g)
E(g, path = d)
-#> + 14/99 edges from 276ed18:
+#> + 14/99 edges from 5e4a843:
#> [1] 57--81 56--57 24--56 18--24 17--18 3--17 2-- 3 2-- 5 5-- 7 7--39
#> [11] 39--40 40--48 48--83 83--95
@@ -237,7 +237,7 @@ Examplesg <- sample_gnp(20, 3 / 20) %>%
set_edge_attr("weight", value = rnorm(gsize(.)))
E(g)[[weight < 0]]
-#> + 9/23 edges from 6ce8e10:
+#> + 9/23 edges from 2a4027c:
#> tail head tid hid weight
#> 1 4 5 4 5 -0.69555968
#> 2 1 6 1 6 -0.05221438
@@ -254,7 +254,7 @@ ExamplesE(g)$x <- E(g)$weight
x <- 2
E(g)[.env$x]
-#> + 1/23 edge from 6ce8e10:
+#> + 1/23 edge from 2a4027c:
#> [1] 1--6
diff --git a/reference/igraph-es-indexing2.html b/reference/igraph-es-indexing2.html
index dc77cea2c1..e51a644c5a 100644
--- a/reference/igraph-es-indexing2.html
+++ b/reference/igraph-es-indexing2.html
@@ -137,10 +137,10 @@ Examples with_edge_(weight = 1:10, color = "green")
)
E(g)
-#> + 10/10 edges from 2d64484 (vertex names):
+#> + 10/10 edges from b4f85d9 (vertex names):
#> [1] A--B B--C C--D D--E E--F F--G G--H H--I I--J A--J
E(g)[[]]
-#> + 10/10 edges from 2d64484 (vertex names):
+#> + 10/10 edges from b4f85d9 (vertex names):
#> tail head tid hid weight color
#> 1 A B 1 2 1 green
#> 2 B C 2 3 2 green
@@ -153,7 +153,7 @@ Examples#> 9 I J 9 10 9 green
#> 10 A J 1 10 10 green
E(g)[[.inc("A")]]
-#> + 2/10 edges from 2d64484 (vertex names):
+#> + 2/10 edges from b4f85d9 (vertex names):
#> tail head tid hid weight color
#> 1 A B 1 2 1 green
#> 10 A J 1 10 10 green
diff --git a/reference/igraph-vs-indexing.html b/reference/igraph-vs-indexing.html
index 7340fb96b0..fa1535afe1 100644
--- a/reference/igraph-vs-indexing.html
+++ b/reference/igraph-vs-indexing.html
@@ -232,26 +232,26 @@ Examples# nei() special function
g <- make_graph(c(1, 2, 2, 3, 2, 4, 4, 2))
V(g)[.nei(c(2, 4))]
-#> + 4/4 vertices, from e30c7bd:
+#> + 4/4 vertices, from 1561c72:
#> [1] 1 2 3 4
V(g)[.nei(c(2, 4), "in")]
-#> + 3/4 vertices, from e30c7bd:
+#> + 3/4 vertices, from 1561c72:
#> [1] 1 2 4
V(g)[.nei(c(2, 4), "out")]
-#> + 3/4 vertices, from e30c7bd:
+#> + 3/4 vertices, from 1561c72:
#> [1] 2 3 4
# -----------------------------------------------------------------
# The same with vertex names
g <- make_graph(~ A -+ B, B -+ C:D, D -+ B)
V(g)[.nei(c("B", "D"))]
-#> + 4/4 vertices, named, from 8cb3532:
+#> + 4/4 vertices, named, from 7955c1e:
#> [1] A B C D
V(g)[.nei(c("B", "D"), "in")]
-#> + 3/4 vertices, named, from 8cb3532:
+#> + 3/4 vertices, named, from 7955c1e:
#> [1] A B D
V(g)[.nei(c("B", "D"), "out")]
-#> + 3/4 vertices, named, from 8cb3532:
+#> + 3/4 vertices, named, from 7955c1e:
#> [1] B C D
# -----------------------------------------------------------------
@@ -259,7 +259,7 @@ Examplesg <- make_graph(~ A -+ B, B -+ C:D, D -+ B)
V(g)$color <- c("red", "red", "green", "green")
V(g)[color == "red"]
-#> + 2/4 vertices, named, from 48e9ee5:
+#> + 2/4 vertices, named, from 61ea286:
#> [1] A B
# Indexing with a variable whose name matches the name of an attribute
@@ -267,7 +267,7 @@ ExamplesV(g)$x <- 10:13
x <- 2
V(g)[.env$x]
-#> + 1/4 vertex, named, from 48e9ee5:
+#> + 1/4 vertex, named, from 61ea286:
#> [1] B
diff --git a/reference/igraph-vs-indexing2.html b/reference/igraph-vs-indexing2.html
index 67781fe69b..e0d40f0fe8 100644
--- a/reference/igraph-vs-indexing2.html
+++ b/reference/igraph-vs-indexing2.html
@@ -135,10 +135,10 @@ Examples set_vertex_attr("color", value = "red") %>%
set_vertex_attr("name", value = LETTERS[1:10])
V(g)
-#> + 10/10 vertices, named, from 2bcc0ba:
+#> + 10/10 vertices, named, from 949834e:
#> [1] A B C D E F G H I J
V(g)[[]]
-#> + 10/10 vertices, named, from 2bcc0ba:
+#> + 10/10 vertices, named, from 949834e:
#> color name
#> 1 red A
#> 2 red B
@@ -151,10 +151,10 @@ Examples#> 9 red I
#> 10 red J
V(g)[1:5]
-#> + 5/10 vertices, named, from 2bcc0ba:
+#> + 5/10 vertices, named, from 949834e:
#> [1] A B C D E
V(g)[[1:5]]
-#> + 5/10 vertices, named, from 2bcc0ba:
+#> + 5/10 vertices, named, from 949834e:
#> color name
#> 1 red A
#> 2 red B
diff --git a/reference/incident.html b/reference/incident.html
index ca5bccda20..aa6439c8e0 100644
--- a/reference/incident.html
+++ b/reference/incident.html
@@ -114,11 +114,11 @@ See alsoExamples
g <- make_graph("Zachary")
incident(g, 1)
-#> + 16/78 edges from ec27424:
+#> + 16/78 edges from 87dacbe:
#> [1] 1-- 2 1-- 3 1-- 4 1-- 5 1-- 6 1-- 7 1-- 8 1-- 9 1--11 1--12 1--13 1--14
#> [13] 1--18 1--20 1--22 1--32
incident(g, 34)
-#> + 17/78 edges from ec27424:
+#> + 17/78 edges from 87dacbe:
#> [1] 9--34 10--34 14--34 15--34 16--34 19--34 20--34 21--34 23--34 24--34
#> [11] 27--34 28--34 29--34 30--34 31--34 32--34 33--34
diff --git a/reference/incident_edges.html b/reference/incident_edges.html
index 145dda9a50..0ae178d5b1 100644
--- a/reference/incident_edges.html
+++ b/reference/incident_edges.html
@@ -117,12 +117,12 @@ Examplesg <- make_graph("Zachary")
incident_edges(g, c(1, 34))
#> [[1]]
-#> + 16/78 edges from 7eecb02:
+#> + 16/78 edges from 85a28c7:
#> [1] 1-- 2 1-- 3 1-- 4 1-- 5 1-- 6 1-- 7 1-- 8 1-- 9 1--11 1--12 1--13 1--14
#> [13] 1--18 1--20 1--22 1--32
#>
#> [[2]]
-#> + 17/78 edges from 7eecb02:
+#> + 17/78 edges from 85a28c7:
#> [1] 9--34 10--34 14--34 15--34 16--34 19--34 20--34 21--34 23--34 24--34
#> [11] 27--34 28--34 29--34 30--34 31--34 32--34 33--34
#>
diff --git a/reference/intersection.igraph.es.html b/reference/intersection.igraph.es.html
index 71c67da904..70de6227e4 100644
--- a/reference/intersection.igraph.es.html
+++ b/reference/intersection.igraph.es.html
@@ -113,7 +113,7 @@ See alsoExamples
g <- make_(ring(10), with_vertex_(name = LETTERS[1:10]))
intersection(E(g)[1:6], E(g)[5:9])
-#> + 2/10 edges from fafed99 (vertex names):
+#> + 2/10 edges from a90bb92 (vertex names):
#> [1] E--F F--G
diff --git a/reference/intersection.igraph.html b/reference/intersection.igraph.html
index f301c67591..8ba5a13e30 100644
--- a/reference/intersection.igraph.html
+++ b/reference/intersection.igraph.html
@@ -158,7 +158,7 @@ Examples)
net2 <- graph_from_literal(D - A:F:Y, B - A - X - F - H - Z, F - Y)
print_all(net1 %s% net2)
-#> IGRAPH 1a71816 UN-- 13 4 --
+#> IGRAPH f91ce7a UN-- 13 4 --
#> + attr: name (v/c)
#> + vertex attributes:
#> | name
@@ -175,7 +175,7 @@ Examples#> | [11] Y
#> | [12] X
#> | [13] Z
-#> + edges from 1a71816 (vertex names):
+#> + edges from f91ce7a (vertex names):
#> [1] F--H A--B D--F D--A
diff --git a/reference/intersection.igraph.vs.html b/reference/intersection.igraph.vs.html
index e5d2494c37..5a630e070f 100644
--- a/reference/intersection.igraph.vs.html
+++ b/reference/intersection.igraph.vs.html
@@ -113,7 +113,7 @@ See alsoExamples
g <- make_(ring(10), with_vertex_(name = LETTERS[1:10]))
intersection(E(g)[1:6], E(g)[5:9])
-#> + 2/10 edges from fc45c86 (vertex names):
+#> + 2/10 edges from b8d8813 (vertex names):
#> [1] E--F F--G
diff --git a/reference/is_chordal.html b/reference/is_chordal.html
index 97087353df..56c8d85026 100644
--- a/reference/is_chordal.html
+++ b/reference/is_chordal.html
@@ -169,7 +169,7 @@ Examples#> [1] 9 4 6 8 3 5 7 2 1
#>
#> $alpham1
-#> + 9/9 vertices, named, from 3a3878f:
+#> + 9/9 vertices, named, from 9be7c19:
#> [1] G F D B E C H I A
#>
is_chordal(g1, fillin = TRUE)
@@ -193,7 +193,7 @@ Examples#> [1] 10 8 9 6 7 5 4 2 3 1
#>
#> $alpham1
-#> + 10/10 vertices, named, from 684fbdc:
+#> + 10/10 vertices, named, from 923e6e7:
#> [1] J H I G C F D B E A
#>
is_chordal(g2, fillin = TRUE)
diff --git a/reference/is_forest.html b/reference/is_forest.html
index 38745dabaf..345664518a 100644
--- a/reference/is_forest.html
+++ b/reference/is_forest.html
@@ -135,7 +135,7 @@ Examples#> [1] TRUE
#>
#> $roots
-#> + 2/8 vertices, from 0f7db78:
+#> + 2/8 vertices, from c82c10c:
#> [1] 1 4
#>
diff --git a/reference/is_named.html b/reference/is_named.html
index 3c23f9f6f2..92b38edae3 100644
--- a/reference/is_named.html
+++ b/reference/is_named.html
@@ -112,7 +112,7 @@ Examplesis_named(g)
#> [1] TRUE
neighbors(g, "a")
-#> + 2/10 vertices, named, from 0a5d33e:
+#> + 2/10 vertices, named, from b786043:
#> [1] b j
diff --git a/reference/is_tree.html b/reference/is_tree.html
index d5ab126bd8..44d929e8d8 100644
--- a/reference/is_tree.html
+++ b/reference/is_tree.html
@@ -136,7 +136,7 @@ Examples#> [1] TRUE
#>
#> $root
-#> + 1/7 vertex, from 7c81d2f:
+#> + 1/7 vertex, from bfeb60c:
#> [1] 1
#>
diff --git a/reference/is_weighted.html b/reference/is_weighted.html
index b5fa4a45d5..939d3f432e 100644
--- a/reference/is_weighted.html
+++ b/reference/is_weighted.html
@@ -108,7 +108,7 @@ Examplesshortest_paths(g, 8, 2)
#> $vpath
#> $vpath[[1]]
-#> + 5/10 vertices, from bdd2229:
+#> + 5/10 vertices, from a358a95:
#> [1] 8 9 10 1 2
#>
#>
@@ -125,7 +125,7 @@ Examplesshortest_paths(g, 8, 2)
#> $vpath
#> $vpath[[1]]
-#> + 7/10 vertices, from bdd2229:
+#> + 7/10 vertices, from a358a95:
#> [1] 8 7 6 5 4 3 2
#>
#>
diff --git a/reference/ivs.html b/reference/ivs.html
index 09c93ed620..2637eff321 100644
--- a/reference/ivs.html
+++ b/reference/ivs.html
@@ -159,83 +159,83 @@ Examples#> [1] 4
ivs(g, min = ivs_size(g))
#> [[1]]
-#> + 4/100 vertices, from c5ee751:
+#> + 4/100 vertices, from 73247ec:
#> [1] 7 37 55 56
#>
#> [[2]]
-#> + 4/100 vertices, from c5ee751:
+#> + 4/100 vertices, from 73247ec:
#> [1] 7 55 56 69
#>
#> [[3]]
-#> + 4/100 vertices, from c5ee751:
+#> + 4/100 vertices, from 73247ec:
#> [1] 7 56 69 74
#>
#> [[4]]
-#> + 4/100 vertices, from c5ee751:
+#> + 4/100 vertices, from 73247ec:
#> [1] 8 15 73 80
#>
#> [[5]]
-#> + 4/100 vertices, from c5ee751:
+#> + 4/100 vertices, from 73247ec:
#> [1] 8 15 73 84
#>
#> [[6]]
-#> + 4/100 vertices, from c5ee751:
+#> + 4/100 vertices, from 73247ec:
#> [1] 13 16 37 40
#>
#> [[7]]
-#> + 4/100 vertices, from c5ee751:
+#> + 4/100 vertices, from 73247ec:
#> [1] 21 32 45 61
#>
#> [[8]]
-#> + 4/100 vertices, from c5ee751:
+#> + 4/100 vertices, from 73247ec:
#> [1] 22 55 56 64
#>
#> [[9]]
-#> + 4/100 vertices, from c5ee751:
+#> + 4/100 vertices, from 73247ec:
#> [1] 23 69 75 90
#>
largest_ivs(g)
#> [[1]]
-#> + 4/100 vertices, from c5ee751:
+#> + 4/100 vertices, from 73247ec:
#> [1] 21 32 45 61
#>
#> [[2]]
-#> + 4/100 vertices, from c5ee751:
+#> + 4/100 vertices, from 73247ec:
#> [1] 7 37 55 56
#>
#> [[3]]
-#> + 4/100 vertices, from c5ee751:
+#> + 4/100 vertices, from 73247ec:
#> [1] 7 55 56 69
#>
#> [[4]]
-#> + 4/100 vertices, from c5ee751:
+#> + 4/100 vertices, from 73247ec:
#> [1] 7 56 69 74
#>
#> [[5]]
-#> + 4/100 vertices, from c5ee751:
+#> + 4/100 vertices, from 73247ec:
#> [1] 8 15 73 80
#>
#> [[6]]
-#> + 4/100 vertices, from c5ee751:
+#> + 4/100 vertices, from 73247ec:
#> [1] 8 15 73 84
#>
#> [[7]]
-#> + 4/100 vertices, from c5ee751:
+#> + 4/100 vertices, from 73247ec:
#> [1] 22 55 56 64
#>
#> [[8]]
-#> + 4/100 vertices, from c5ee751:
+#> + 4/100 vertices, from 73247ec:
#> [1] 23 69 75 90
#>
#> [[9]]
-#> + 4/100 vertices, from c5ee751:
+#> + 4/100 vertices, from 73247ec:
#> [1] 13 16 37 40
#>
# Empty graph
induced_subgraph(g, largest_ivs(g)[[1]])
-#> IGRAPH b2259d3 U--- 4 0 -- Erdos-Renyi (gnp) graph
+#> IGRAPH 1f39c3b U--- 4 0 -- Erdos-Renyi (gnp) graph
#> + attr: name (g/c), type (g/c), loops (g/l), p (g/n)
-#> + edges from b2259d3:
+#> + edges from 1f39c3b:
length(maximal_ivs(g))
#> [1] 326
diff --git a/reference/keeping_degseq.html b/reference/keeping_degseq.html
index ce3aaa337a..10de29b2c1 100644
--- a/reference/keeping_degseq.html
+++ b/reference/keeping_degseq.html
@@ -113,7 +113,7 @@ Examples degree()
#> [1] 2 2 2 2 2 2 2 2 2 2
print_all(rewire(g, with = keeping_degseq(niter = vcount(g) * 10)))
-#> IGRAPH c44c827 U--- 10 10 -- Ring graph
+#> IGRAPH 7a0151e U--- 10 10 -- Ring graph
#> + attr: name (g/c), mutual (g/l), circular (g/l)
#> + graph attributes:
#> | + name:
@@ -122,7 +122,7 @@ Examples#> | [1] FALSE
#> | + circular:
#> | [1] TRUE
-#> + edges from c44c827:
+#> + edges from 7a0151e:
#> [1] 2-- 8 3-- 7 6-- 9 4-- 5 5--10 1-- 7 6--10 2-- 3 4-- 9 1-- 8
diff --git a/reference/make_bipartite_graph.html b/reference/make_bipartite_graph.html
index 9aff81c333..cc933c9c87 100644
--- a/reference/make_bipartite_graph.html
+++ b/reference/make_bipartite_graph.html
@@ -147,9 +147,9 @@
g <- make_bipartite_graph(rep(0:1, length.out = 10), c(1:10))
print(g, v = TRUE)
-#> IGRAPH ec5f8d5 U--B 10 5 --
+#> IGRAPH 5b55b9a U--B 10 5 --
#> + attr: type (v/l)
-#> + edges from ec5f8d5:
+#> + edges from 5b55b9a:
#> [1] 1-- 2 3-- 4 5-- 6 7-- 8 9--10
diff --git a/reference/make_de_bruijn_graph.html b/reference/make_de_bruijn_graph.html
index f02d126da1..38c80b37d9 100644
--- a/reference/make_de_bruijn_graph.html
+++ b/reference/make_de_bruijn_graph.html
@@ -120,14 +120,14 @@ make_empty_graph(n = 10)
-#> IGRAPH 005c67a D--- 10 0 --
-#> + edges from 005c67a:
+#> IGRAPH b7f419c D--- 10 0 --
+#> + edges from b7f419c:
make_empty_graph(n = 5, directed = FALSE)
-#> IGRAPH 5383268 U--- 5 0 --
-#> + edges from 5383268:
+#> IGRAPH c08356d U--- 5 0 --
+#> + edges from c08356d: