pub trait ContractSecondWithFirst<TJN> {
type Output;
// Required method
fn contract_second_with_first(self, tensor_rank_2: TJN) -> Self::Output;
}Expand description
Transforms the second index of a rank-4 tensor.
Contracts it with the first index of a rank-2 tensor.