ContractThirdIndexWithFirstIndexOf

Trait ContractThirdIndexWithFirstIndexOf 

Source
pub trait ContractThirdIndexWithFirstIndexOf<TKL> {
    type Output;

    // Required method
    fn contract_third_index_with_first_index_of(
        &self,
        tensor: TKL,
    ) -> Self::Output;
}

Required Associated Types§

Required Methods§

Implementors§

Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize, const M: usize> ContractThirdIndexWithFirstIndexOf<&TensorRank2<D, M, K>> for TensorRank4<D, I, J, M, L>

Source§

type Output = TensorRank4<D, I, J, K, L>