conspire::math

Trait ContractAllIndicesWithFirstIndicesOf

Source
pub trait ContractAllIndicesWithFirstIndicesOf<TIM, TJN, TKO, TLP> {
    type Output;

    // Required method
    fn contract_all_indices_with_first_indices_of(
        &self,
        tensor_rank_2_a: TIM,
        tensor_rank_2_b: TJN,
        tensor_rank_2_c: TKO,
        tensor_rank_2_d: TLP,
    ) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn contract_all_indices_with_first_indices_of( &self, tensor_rank_2_a: TIM, tensor_rank_2_b: TJN, tensor_rank_2_c: TKO, tensor_rank_2_d: TLP, ) -> Self::Output

Implementors§

Source§

impl<const D: usize, const I: usize, const J: usize, const K: usize, const L: usize, const M: usize, const N: usize, const O: usize, const P: usize> ContractAllIndicesWithFirstIndicesOf<&TensorRank2<D, I, M>, &TensorRank2<D, J, N>, &TensorRank2<D, K, O>, &TensorRank2<D, L, P>> for TensorRank4<D, I, J, K, L>

Source§

type Output = TensorRank4<D, M, N, O, P>