@@ -14530,7 +14530,7 @@ struct PyMethodDef igraphmodule_Graph_methods[] = {
14530
14530
"the number of vertices in the graph, a list of shifts giving\n"
14531
14531
"additional edges to a cycle backbone and another integer giving how\n"
14532
14532
"many times the shifts should be performed. See\n"
14533
- "U{http ://mathworld.wolfram.com/LCFNotation.html} for details.\n\n"
14533
+ "U{https ://mathworld.wolfram.com/LCFNotation.html} for details.\n\n"
14534
14534
"@param n: the number of vertices\n"
14535
14535
"@param shifts: the shifts in a list or tuple\n"
14536
14536
"@param repeats: the number of repeats\n"
@@ -16222,7 +16222,7 @@ struct PyMethodDef igraphmodule_Graph_methods[] = {
16222
16222
" small-world networks. I{Nature} 393(6884):440-442, 1998.\n"
16223
16223
" - Barrat A, Barthelemy M, Pastor-Satorras R and Vespignani A:\n"
16224
16224
" The architecture of complex weighted networks. I{PNAS} 101, 3747 (2004).\n"
16225
- " U{http ://arxiv.org/abs/cond-mat/0311416}.\n\n"
16225
+ " U{https ://arxiv.org/abs/cond-mat/0311416}.\n\n"
16226
16226
"@param vertices: a list containing the vertex IDs which should be\n"
16227
16227
" included in the result. C{None} means all of the vertices.\n"
16228
16228
"@param mode: defines how to treat vertices with degree less than two.\n"
@@ -16820,7 +16820,8 @@ struct PyMethodDef igraphmodule_Graph_methods[] = {
16820
16820
"forces among the vertices and then the physical system is simulated\n"
16821
16821
"until it reaches an equilibrium or the maximal number of iterations is\n"
16822
16822
"reached.\n\n"
16823
- "See U{http://www.schmuhl.org/graphopt/} for the original graphopt.\n\n"
16823
+ "See U{https://web.archive.org/web/20220611030748/http://www.schmuhl.org/graphopt/}\n"
16824
+ "and U{https://sourceforge.net/projects/graphopt/} for the original graphopt.\n\n"
16824
16825
"@param niter: the number of iterations to perform. Should be a couple\n"
16825
16826
" of hundred in general.\n\n"
16826
16827
"@param node_charge: the charge of the vertices, used to calculate electric\n"
@@ -17135,7 +17136,7 @@ struct PyMethodDef igraphmodule_Graph_methods[] = {
17135
17136
"Read_DIMACS(f, directed=False)\n--\n\n"
17136
17137
"Reads a graph from a file conforming to the DIMACS minimum-cost flow file format.\n\n"
17137
17138
"For the exact description of the format, see\n"
17138
- "U{http ://lpsolve.sourceforge.net/5.5/DIMACS.htm}\n\n"
17139
+ "U{https ://lpsolve.sourceforge.net/5.5/DIMACS.htm}\n\n"
17139
17140
"Restrictions compared to the official description of the format:\n\n"
17140
17141
" - igraph's DIMACS reader requires only three fields in an arc definition,\n"
17141
17142
" describing the edge's source and target node and its capacity.\n"
@@ -17171,7 +17172,7 @@ struct PyMethodDef igraphmodule_Graph_methods[] = {
17171
17172
"Read_GraphDB(f, directed=False)\n--\n\n"
17172
17173
"Reads a GraphDB format file and creates a graph based on it.\n\n"
17173
17174
"GraphDB is a binary format, used in the graph database for\n"
17174
- "isomorphism testing (see U{http ://amalfi.dis.unina. it/graph/}).\n\n"
17175
+ "isomorphism testing (see U{https ://mivia.unisa. it/datasets/ graph-database/arg-database /}).\n\n"
17175
17176
"@param f: the name of the file or a Python file handle\n"
17176
17177
"@param directed: whether the generated graph should be directed.\n"},
17177
17178
/* interface to igraph_read_graph_graphml */
@@ -17394,7 +17395,7 @@ struct PyMethodDef igraphmodule_Graph_methods[] = {
17394
17395
"algorithm.\n\n"
17395
17396
"Passing the permutation returned here to L{permute_vertices()} will\n"
17396
17397
"transform the graph into its canonical form.\n\n"
17397
- "See U{http ://www.tcs.hut. fi/Software /bliss/index.html } for more information\n"
17398
+ "See U{https ://users.aalto. fi/~tjunttil /bliss/} for more information\n"
17398
17399
"about the BLISS algorithm and canonical permutations.\n\n"
17399
17400
"@param sh: splitting heuristics for graph as a case-insensitive string,\n"
17400
17401
" with the following possible values:\n\n"
@@ -17420,7 +17421,7 @@ struct PyMethodDef igraphmodule_Graph_methods[] = {
17420
17421
"count_automorphisms(sh=\"fl\", color=None)\n--\n\n"
17421
17422
"Calculates the number of automorphisms of a graph using the BLISS isomorphism\n"
17422
17423
"algorithm.\n\n"
17423
- "See U{http ://www.tcs.hut. fi/Software /bliss/index.html } for more information\n"
17424
+ "See U{https ://users.aalto. fi/~tjunttil /bliss/} for more information\n"
17424
17425
"about the BLISS algorithm and canonical permutations.\n\n"
17425
17426
"@param sh: splitting heuristics for graph as a case-insensitive string,\n"
17426
17427
" with the following possible values:\n\n"
@@ -17471,7 +17472,7 @@ struct PyMethodDef igraphmodule_Graph_methods[] = {
17471
17472
" sh1=\"fl\", sh2=None, color1=None, color2=None)\n--\n\n"
17472
17473
"Checks whether the graph is isomorphic to another graph, using the\n"
17473
17474
"BLISS isomorphism algorithm.\n\n"
17474
- "See U{http ://www.tcs.hut. fi/Software /bliss/index.html } for more information\n"
17475
+ "See U{https ://users.aalto. fi/~tjunttil /bliss/} for more information\n"
17475
17476
"about the BLISS algorithm.\n\n"
17476
17477
"@param other: the other graph with which we want to compare the graph.\n"
17477
17478
"@param color1: optional vector storing the coloring of the vertices of\n"
@@ -18264,15 +18265,15 @@ struct PyMethodDef igraphmodule_Graph_methods[] = {
18264
18265
"community_infomap(edge_weights=None, vertex_weights=None, trials=10)\n--\n\n"
18265
18266
"Finds the community structure of the network according to the Infomap\n"
18266
18267
"method of Martin Rosvall and Carl T. Bergstrom.\n\n"
18267
- "See U{http ://www.mapequation.org} for a visualization of the algorithm\n"
18268
+ "See U{https ://www.mapequation.org} for a visualization of the algorithm\n"
18268
18269
"or one of the references provided below.\n"
18269
18270
"B{References}\n"
18270
18271
" - M. Rosvall and C. T. Bergstrom: I{Maps of information flow reveal\n"
18271
18272
" community structure in complex networks}. PNAS 105, 1118 (2008).\n"
18272
- " U{http ://arxiv.org/abs/0707.0609}\n"
18273
+ " U{https ://arxiv.org/abs/0707.0609}\n"
18273
18274
" - M. Rosvall, D. Axelsson and C. T. Bergstrom: I{The map equation}.\n"
18274
18275
" I{Eur Phys J Special Topics} 178, 13 (2009).\n"
18275
- " U{http ://arxiv.org/abs/0906.1405}\n"
18276
+ " U{https ://arxiv.org/abs/0906.1405}\n"
18276
18277
"\n"
18277
18278
"@param edge_weights: name of an edge attribute or a list containing\n"
18278
18279
" edge weights.\n"
@@ -18301,7 +18302,7 @@ struct PyMethodDef igraphmodule_Graph_methods[] = {
18301
18302
"B{Reference}: Raghavan, U.N. and Albert, R. and Kumara, S. Near linear\n"
18302
18303
"time algorithm to detect community structures in large-scale\n"
18303
18304
"networks. I{Phys Rev E} 76:036106, 2007.\n"
18304
- "U{http ://arxiv.org/abs/0709.2938}.\n"
18305
+ "U{https ://arxiv.org/abs/0709.2938}.\n"
18305
18306
"\n"
18306
18307
"@param weights: name of an edge attribute or a list containing\n"
18307
18308
" edge weights\n"
@@ -18356,7 +18357,7 @@ struct PyMethodDef igraphmodule_Graph_methods[] = {
18356
18357
"\n"
18357
18358
"B{Reference}: VD Blondel, J-L Guillaume, R Lambiotte and E Lefebvre: Fast\n"
18358
18359
"unfolding of community hierarchies in large networks. J Stat Mech\n"
18359
- "P10008 (2008), U{http ://arxiv.org/abs/0803.0476}\n"
18360
+ "P10008 (2008), U{https ://arxiv.org/abs/0803.0476}\n"
18360
18361
"\n"
18361
18362
"Attention: this function is wrapped in a more convenient syntax in the\n"
18362
18363
"derived class L{Graph}. It is advised to use that instead of this version.\n\n"
@@ -18495,7 +18496,7 @@ struct PyMethodDef igraphmodule_Graph_methods[] = {
18495
18496
"Attention: this function is wrapped in a more convenient syntax in the\n"
18496
18497
"derived class L{Graph}. It is advised to use that instead of this version.\n\n"
18497
18498
"B{Reference}: Pascal Pons, Matthieu Latapy: Computing communities in large\n"
18498
- "networks using random walks, U{http ://arxiv.org/abs/physics/0512106}.\n\n"
18499
+ "networks using random walks, U{https ://arxiv.org/abs/physics/0512106}.\n\n"
18499
18500
"@param weights: name of an edge attribute or a list containing\n"
18500
18501
" edge weights\n"
18501
18502
"@return: a tuple with the list of merges and the modularity scores corresponding\n"
0 commit comments