igraph 1.4.2
Breaking changes
-
Remove
igraph.eigen.default()
andeigen_defaults
, introduce internaleigen_defaults()
as a function (#741). -
Remove broken
nexus*()
functions (#705), andsrand()
(#701).
C core
-
Update C core.
-
ARPACK-based calculations are now interruptible.
-
shortest_paths()
andall_shortest_paths()
no longer crash when an invalidfrom
vertex is passed and weights are being used.
See diff for details.
Printing
-
Use true vertex names for printing vertex sets. If a vertex set captures a relationship between vertices (e.g., the
father
component ofbfs()
), the vertex set is printed as a named vector (#754). -
Suggest restarting R session after fatal error (#745).
Bug fixes
-
as_long_data_frame()
now correctly processes vertex attributes and works with graphs without vertex attributes (#748). -
as.hclust(hrg.fit(g))
works again (#721).
Documentation
-
The documentation is now available at https://igraph.org/ (#743).
-
Reorganize function reference (#662).
-
Replace
graph()
withmake_graph()
in examples (#738). -
Add docs for
as.hclust.igraphHRG()
(#733). -
Merged man page of
hub_score()
andauthority_score()
(#698). -
Refactor contributors listing (#647).
-
Improve "family" titles (#679).
-
Improve docs of ego/neighborhood functions.
-
Improve
transitivity()
docs.