[][src]Struct flag_algebra::SubClass

pub struct SubClass<F, A> {
    pub content: F,
    // some fields omitted
}

A wrapper type for flags from a sub-class of flags.

Fields

content: F

Flag wrapped.

Trait Implementations

impl<F, A> Flag for SubClass<F, A> where
    A: SubFlag<F>,
    F: Flag
[src]

fn generate_next(previous: &[Self]) -> Vec<Self>
[src]

Return the list of flags of size self.size() + 1 that contain self as an induced subflag reduced modulo isomorphism. Read more

fn generate(n: usize) -> Vec<Self>
[src]

Return the list of flags of size n reduced modulo isomorphism.

fn generate_typed_up(type_flag: &Self, g_vec: &[Self]) -> Vec<Self>
[src]

Return the list of flags of g_vec that can be rooted on the flag type_flag. Each different way to root this flag give a different flag in the result. Read more

fn generate_typed(type_flag: &Self, size: usize) -> Vec<Self>
[src]

Return the list of flag of size size rooted on type_flag reduced modulo (typed) isomorphism. Read more

fn select_type(&self, eta: &[usize]) -> Self
[src]

Reorder self so that the eta.len() first vertices are the values of eta in the corresonding order. Read more

impl<F: Flag, A> PartialEq<SubClass<F, A>> for SubClass<F, A>
[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl<F: Flag, A> Eq for SubClass<F, A>
[src]

impl<F: Flag, A> PartialOrd<SubClass<F, A>> for SubClass<F, A>
[src]

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl<F: Flag, A> Ord for SubClass<F, A>
[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl<F: Flag, A> Clone for SubClass<F, A>
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<F, A> From<F> for SubClass<F, A>
[src]

impl<F: Flag, A> Display for SubClass<F, A>
[src]

impl<F: Flag, A> Debug for SubClass<F, A>
[src]

impl<F: Flag, A> Serialize for SubClass<F, A>
[src]

impl<'de, F: Flag, A> Deserialize<'de> for SubClass<F, A>
[src]

impl<F, A> Canonize for SubClass<F, A> where
    F: Flag
[src]

fn invariant_coloring(&self) -> Option<Vec<u64>>
[src]

Can return a coloring that is invariant by isomorphism. Read more

Auto Trait Implementations

impl<F, A> Send for SubClass<F, A> where
    A: Send,
    F: Send

impl<F, A> Sync for SubClass<F, A> where
    A: Sync,
    F: Sync

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>, 

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]