conspire::math

Trait ContractSecondFourthIndicesWithFirstIndicesOf

Source
pub trait ContractSecondFourthIndicesWithFirstIndicesOf<TJ, TL> {
    type Output;

    // Required method
    fn contract_second_fourth_indices_with_first_indices_of(
        &self,
        object_a: TJ,
        object_b: TL,
    ) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn contract_second_fourth_indices_with_first_indices_of( &self, object_a: TJ, object_b: TL, ) -> Self::Output

Implementors§

Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize> ContractSecondFourthIndicesWithFirstIndicesOf<&TensorRank1<D, J>, &TensorRank1<D, L>> for TensorRank4<D, I, J, K, L>

Source§

type Output = TensorRank2<D, I, K>