Docs.rs
  • networkit-rs-0.1.0
    • networkit-rs 0.1.0
    • Permalink
    • Docs.rs crate page
    • MIT
    • 08 March 2025
    • Links
    • Repository
    • crates.io
    • Source
    • Owners
    • zh217
    • Dependencies
      • cxx ^1.0 normal
      • miette ^5.5.0 normal
      • openmp-sys ^1.2.3 normal
      • cmake ^0.1.49 build
      • cxx-build ^1.0 build
      • miette ^5 build
    • Versions
    • 0% of the crate is documented
  • Platform
    • x86_64-unknown-linux-gnu
  • Feature flags
  • docs.rs
    • About docs.rs
    • Badges
    • Builds
    • Metadata
    • Shorthand URLs
    • Download
    • Rustdoc JSON
    • Build queue
    • Privacy policy
  • Rust
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation

networkit_rs0.1.0

SelectiveCommunityDetector

Required Methods

  • expand_one_community
  • into_base
  • run

Implementors

In networkit_rs::scd

networkit_rs::scd

Trait SelectiveCommunityDetector

Source
pub trait SelectiveCommunityDetector {
    // Required methods
    fn run(&mut self, seeds: &[u64]) -> BTreeMap<u64, Vec<u64>>;
    fn expand_one_community(&mut self, seeds: &[u64]) -> Vec<u64>;
    fn into_base(self) -> SelectiveCommunityDetectorBase;
}

Required Methods§

Source

fn run(&mut self, seeds: &[u64]) -> BTreeMap<u64, Vec<u64>>

Source

fn expand_one_community(&mut self, seeds: &[u64]) -> Vec<u64>

Source

fn into_base(self) -> SelectiveCommunityDetectorBase

Implementors§

Source§

impl SelectiveCommunityDetector for CliqueDetect

Source§

impl SelectiveCommunityDetector for CombinedSCD

Source§

impl SelectiveCommunityDetector for GCE

Source§

impl SelectiveCommunityDetector for LFMLocal

Source§

impl SelectiveCommunityDetector for LocalT

Source§

impl SelectiveCommunityDetector for LocalTightnessExpansion

Source§

impl SelectiveCommunityDetector for PageRankNibble

Source§

impl SelectiveCommunityDetector for RandomBFS

Source§

impl SelectiveCommunityDetector for TCE

Source§

impl SelectiveCommunityDetector for TwoPhaseL