conspire::math

Trait ContractSecondIndexWithFirstIndexOf

Source
pub trait ContractSecondIndexWithFirstIndexOf<TJN> {
    type Output;

    // Required method
    fn contract_second_index_with_first_index_of(
        &self,
        tensor_rank_2: TJN,
    ) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn contract_second_index_with_first_index_of( &self, tensor_rank_2: TJN, ) -> Self::Output

Implementors§

Source§

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

Source§

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