conspire::math

Trait ContractThirdFourthIndicesWithFirstSecondIndicesOf

Source
pub trait ContractThirdFourthIndicesWithFirstSecondIndicesOf<TKL> {
    type Output;

    // Required method
    fn contract_third_fourth_indices_with_first_second_indices_of(
        &self,
        tensor_rank_2: 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> ContractThirdFourthIndicesWithFirstSecondIndicesOf<&TensorRank2<D, K, L>> for TensorRank4<D, I, J, K, L>

Source§

type Output = TensorRank2<D, I, J>