Skip to content

igraph 0.10.6

Compare
Choose a tag to compare
@ntamas ntamas released this 13 Jul 14:24
· 188 commits to main since this release
786eaf2

Changed

  • The C core of igraph was updated to version 0.10.6.

  • Graph.Incidence() is now deprecated in favour of Graph.Biadjacency() as it constructs a bipartite graph from a bipartite adjacency matrix. (The previous name was a mistake). Future versions might re-introduce Graph.Incidence() to construct a graph from its incidence matrix.

  • Graph.get_incidence() is now deprecated in favour of Graph.get_biadjacency() as it returns the bipartite adjacency matrix of a graph and not its incidence matrix. (The previous name was a mistake). Future versions might re-introduce Graph.get_incidence() to return the incidence matrix of a graph.

  • Reverted the change in 0.10.5 that prevented adding vertices with integers as vertex names. Now we show a deprecation warning instead, and the addition of vertices with integer names will be prevented from version 0.11.0 only.

Fixed

  • Fixed a minor memory leak in Graph.decompose().

  • The default vertex size of the Plotly backend was fixed so the vertices are now visible by default without specifying an explicit size for them.