Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
We follow SemVer as most of the Julia ecosystem. Below you might see the "breaking" label even for minor version bumps -- we use it a bit more loosely to denote things that are not breaking by SemVer's definition but might cause breakage to people using internal or experimental APIs or undocumented implementation details.

## unreleased
- KADABRA betweenness centrality approximation algorithm
- `is_articulation(g, v)` for checking whether a single vertex is an articulation point
- The iFUB algorithm is used for faster diameter calculation and now supports weighted graph diameter calculation
- ECG community detection algorithm
Expand Down
1 change: 1 addition & 0 deletions docs/src/algorithms/centrality.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Pages = ["centrality.md"]
Modules = [Graphs]
Pages = [
"centrality/betweenness.jl",
"centrality/kadabra.jl",
"centrality/closeness.jl",
"centrality/degree.jl",
"centrality/eigenvector.jl",
Expand Down
5 changes: 5 additions & 0 deletions src/Graphs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ using Random:
AbstractRNG,
GLOBAL_RNG,
MersenneTwister,
Xoshiro,
default_rng,
randperm,
randsubseq!,
seed!,
Expand Down Expand Up @@ -277,6 +279,8 @@ export
eigenvector_centrality,
stress_centrality,
radiality_centrality,
kadabra_centrality,
kadabra_top_k,

# spectral
adjacency_matrix,
Expand Down Expand Up @@ -548,6 +552,7 @@ include("centrality/betweenness.jl")
include("centrality/closeness.jl")
include("centrality/stress.jl")
include("centrality/degree.jl")
include("centrality/kadabra.jl")
include("centrality/katz.jl")
include("centrality/pagerank.jl")
include("centrality/eigenvector.jl")
Expand Down
Loading
Loading