pub struct StronglyRegularParams {
pub n: u32,
pub k: u32,
pub lambda: u32,
pub mu: u32,
}Expand description
Result of strongly regular graph recognition.
Fields§
§n: u32Number of vertices.
k: u32Degree of each vertex.
lambda: u32Number of common neighbors for each pair of adjacent vertices.
mu: u32Number of common neighbors for each pair of non-adjacent vertices.
Trait Implementations§
Source§impl Clone for StronglyRegularParams
impl Clone for StronglyRegularParams
Source§fn clone(&self) -> StronglyRegularParams
fn clone(&self) -> StronglyRegularParams
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 StronglyRegularParams
impl Debug for StronglyRegularParams
Source§impl PartialEq for StronglyRegularParams
impl PartialEq for StronglyRegularParams
impl Eq for StronglyRegularParams
impl StructuralPartialEq for StronglyRegularParams
Auto Trait Implementations§
impl Freeze for StronglyRegularParams
impl RefUnwindSafe for StronglyRegularParams
impl Send for StronglyRegularParams
impl Sync for StronglyRegularParams
impl Unpin for StronglyRegularParams
impl UnsafeUnpin for StronglyRegularParams
impl UnwindSafe for StronglyRegularParams
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