pub struct GraphletBasis {
pub cliques: Vec<Vec<VertexId>>,
pub thresholds: Vec<f64>,
}Expand description
Result of graphlets_candidate_basis: a list of basis cliques with
their associated weight thresholds.
Fields§
§cliques: Vec<Vec<VertexId>>Each element is a sorted list of vertex IDs forming a basis clique.
thresholds: Vec<f64>thresholds[i] is the weight threshold at which cliques[i] was
found (the minimum edge weight within that clique).
Trait Implementations§
Source§impl Clone for GraphletBasis
impl Clone for GraphletBasis
Source§fn clone(&self) -> GraphletBasis
fn clone(&self) -> GraphletBasis
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GraphletBasis
impl Debug for GraphletBasis
Source§impl PartialEq for GraphletBasis
impl PartialEq for GraphletBasis
impl StructuralPartialEq for GraphletBasis
Auto Trait Implementations§
impl Freeze for GraphletBasis
impl RefUnwindSafe for GraphletBasis
impl Send for GraphletBasis
impl Sync for GraphletBasis
impl Unpin for GraphletBasis
impl UnsafeUnpin for GraphletBasis
impl UnwindSafe for GraphletBasis
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more