pub struct GraphletDecomposition {
pub cliques: Vec<Vec<VertexId>>,
pub mu: Vec<f64>,
}Expand description
Result of graphlets: basis cliques with their projected weights,
sorted by decreasing weight.
Fields§
§cliques: Vec<Vec<VertexId>>Basis cliques, sorted by decreasing projected weight.
mu: Vec<f64>mu[i] is the projected weight coefficient of cliques[i].
Trait Implementations§
Source§impl Clone for GraphletDecomposition
impl Clone for GraphletDecomposition
Source§fn clone(&self) -> GraphletDecomposition
fn clone(&self) -> GraphletDecomposition
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 GraphletDecomposition
impl Debug for GraphletDecomposition
Source§impl PartialEq for GraphletDecomposition
impl PartialEq for GraphletDecomposition
impl StructuralPartialEq for GraphletDecomposition
Auto Trait Implementations§
impl Freeze for GraphletDecomposition
impl RefUnwindSafe for GraphletDecomposition
impl Send for GraphletDecomposition
impl Sync for GraphletDecomposition
impl Unpin for GraphletDecomposition
impl UnsafeUnpin for GraphletDecomposition
impl UnwindSafe for GraphletDecomposition
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