[][src]Struct flag_algebra::sdp::Select

pub struct Select<'a, A, B> { /* fields omitted */ }

Implementations

impl<'a, F> Select<'a, Vec<MulAndUnlabel<F>>, Vec<ArrayVec<[CSMode; 2]>>>[src]

pub fn iter(&self) -> CsIter<'a, F>

Notable traits for CsIter<'a, F>

impl<'a, F> Iterator for CsIter<'a, F> type Item = CauchySchwarzMatrix<F>;
[src]

pub fn len(&self) -> usize[src]

pub fn get(&self) -> Vec<Vec<CsMat<i64>>> where
    F: Flag
[src]

impl<'a, N, F> Select<'a, Vec<Ineq<N, F>>, Vec<Vec<usize>>>[src]

pub fn iter(&'a self) -> SelectIter<'a, Vec<Ineq<N, F>>, Vec<Vec<usize>>>

Notable traits for SelectIter<'a, Ineq<N, F>, Vec<usize>>

impl<'a, N, F> Iterator for SelectIter<'a, Ineq<N, F>, Vec<usize>> type Item = &'a IneqData<N>;impl<'a, N, F> Iterator for SelectIter<'a, Vec<Ineq<N, F>>, Vec<Vec<usize>>> type Item = Select<'a, Ineq<N, F>, Vec<usize>>;
[src]

pub fn len(&self) -> usize[src]

Compute the number of group of inequalities

pub fn get(&self, i: usize) -> Option<Select<'a, Ineq<N, F>, Vec<usize>>>[src]

impl<'a, N, F> Select<'a, Ineq<N, F>, Vec<usize>>[src]

pub fn iter(&'a self) -> SelectIter<'a, Ineq<N, F>, Vec<usize>>

Notable traits for SelectIter<'a, Ineq<N, F>, Vec<usize>>

impl<'a, N, F> Iterator for SelectIter<'a, Ineq<N, F>, Vec<usize>> type Item = &'a IneqData<N>;impl<'a, N, F> Iterator for SelectIter<'a, Vec<Ineq<N, F>>, Vec<Vec<usize>>> type Item = Select<'a, Ineq<N, F>, Vec<usize>>;
[src]

pub fn len(&self) -> usize[src]

Number of (in)equalities in the selected group.

pub fn len_spliting_equalities(&self) -> usize[src]

Number of equalities in the selected group where equalities count for 2 (for ≥ and ≤).

pub fn meta(&self) -> &IneqMeta<N, F>[src]

Trait Implementations

impl<'a, A: Clone, B: Clone> Clone for Select<'a, A, B>[src]

impl<'a, A: Debug, B: Debug> Debug for Select<'a, A, B>[src]

impl<'a, N, F> Index<usize> for Select<'a, Ineq<N, F>, Vec<usize>>[src]

type Output = IneqData<N>

The returned type after indexing.

Auto Trait Implementations

impl<'a, A, B> RefUnwindSafe for Select<'a, A, B> where
    A: RefUnwindSafe,
    B: RefUnwindSafe

impl<'a, A, B> Send for Select<'a, A, B> where
    A: Sync,
    B: Sync

impl<'a, A, B> Sync for Select<'a, A, B> where
    A: Sync,
    B: Sync

impl<'a, A, B> Unpin for Select<'a, A, B>

impl<'a, A, B> UnwindSafe for Select<'a, A, B> where
    A: RefUnwindSafe,
    B: RefUnwindSafe

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,