[][src]Enum ndarray_einsum_beta::ContractionOrder

pub enum ContractionOrder {
    Singleton(SizedContraction),
    Pairs(Vec<Pair>),
}

The order in which to contract pairs of tensors and the specific contractions to be performed between the pairs.

Either a singleton contraction, in the case of a single input operand, or a list of pair contractions, given two or more input operands

Variants

Singleton(SizedContraction)

If there's only one input operand, this is simply a clone of the original SizedContraction

Pairs(Vec<Pair>)

If there are two or more input operands, this is a vector of pairwise contractions between input operands and/or intermediate results from prior contractions.

Trait Implementations

impl Clone for ContractionOrder[src]

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

Performs copy-assignment from source. Read more

impl Debug for ContractionOrder[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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