Skip to content

Commit 068ffb7

Browse files
committed
more doc formatting
1 parent 7c30c6c commit 068ffb7

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/_igraph/graphobject.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18784,6 +18784,13 @@ struct PyMethodDef igraphmodule_Graph_methods[] = {
1878418784
"C{s * m / (m + k)}, where s is the strength of the vertex, m is the number of\n"
1878518785
"edges within the vertex's first order neighborhood, while k is the number of\n"
1878618786
"edges with only one endpoint within this neighborhood.\n\n"
18787+
"B{References}\n\n"
18788+
" - Deritei et al., Community detection by graph Voronoi diagrams,\n"
18789+
" New Journal of Physics 16, 063007 (2014)\n"
18790+
" U{https://doi.org/10.1088/1367-2630/16/6/063007}\n"
18791+
" - Molnár et al., Community Detection in Directed Weighted Networks\n"
18792+
" using Voronoi Partitioning, Scientific Reports 14, 8124 (2024)\n"
18793+
" U{https://doi.org/10.1038/s41598-024-58624-4}\n\n"
1878718794
"@param lengths: edge lengths, or C{None} to consider all edges as having\n"
1878818795
" unit length. Voronoi partitioning will use edge lengths equal to\n"
1878918796
" lengths / ECC where ECC is the edge clustering coefficient.\n"
@@ -18799,14 +18806,7 @@ struct PyMethodDef igraphmodule_Graph_methods[] = {
1879918806
" to automatically select the radius that maximizes modularity.\n"
1880018807
"@return: a tuple containing the membership vector, generator vertices, and\n"
1880118808
" modularity score: (membership, generators, modularity).\n"
18802-
"@rtype: tuple\n\n"
18803-
"B{References}\n\n"
18804-
" - Deritei et al., Community detection by graph Voronoi diagrams,\n"
18805-
" New Journal of Physics 16, 063007 (2014)\n"
18806-
" https://doi.org/10.1088/1367-2630/16/6/063007\n"
18807-
" - Molnár et al., Community Detection in Directed Weighted Networks\n"
18808-
" using Voronoi Partitioning, Scientific Reports 14, 8124 (2024)\n"
18809-
" https://doi.org/10.1038/s41598-024-58624-4\n"
18809+
"@rtype: tuple\n"
1881018810
},
1881118811
{"community_leiden",
1881218812
(PyCFunction) igraphmodule_Graph_community_leiden,

0 commit comments

Comments
 (0)