You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
New Leiden community detection algorithm (unoptimized).
Added boundary and cuts modules to support Leiden.
Fixed a bug in fast_gnp_random_graph undirected.
Made clustering for directed weighted use into_par_iter.
Fixed bug with directed graphs in Louvain community detection.
Corrected karate club graph weights.
Fixed bug in graph creation where self-loop edges get added to adjacency vecs multiple times.
Put spectral_gap behind the "adjacency_matrix" feature.
Added a algorithms::resiliency module to with a spectral_gap function.
Expanded the ability to get adjacency matrices with new Graph methods:
get_adjacency_matrix_vec
get_adjacency_matrix_vec_vec
get_adjacency_matrix_nalgebra
get_adjacency_matrix_ndarray
get_adjacency_matrix_sprs
To use the nalgebra, ndarray or sprs methods you must enable the "adjacency_matrix" feature in Cargo.toml: graphrs = { version = "x.y.z", features = ["adjacency_matrix"] }