pub trait InnerProd {
    // Required method
    fn inner_prod(
        self,
        rank_combinations: &[HashMap<usize, String>]
    ) -> TensorExpression;
}

Required Methods§

source

fn inner_prod( self, rank_combinations: &[HashMap<usize, String>] ) -> TensorExpression

Implementors§

source§

impl<I> InnerProd for Iwhere I: Iterator<Item = TensorExpression>,