Package cc.redberry.core.indices

Examples of cc.redberry.core.indices.IndicesBuilderSorted


    public static Indices getAllIndices(final Tensor... tensors) {
        return getAllIndicesBuilder(tensors).getDistinct();
    }

    public static IndicesBuilderSorted getAllIndicesBuilder(final Tensor... tensors) {
        final IndicesBuilderSorted ib = new IndicesBuilderSorted();
        for (Tensor t : tensors)
            ib.append(getAllIndicesBuilder(t));
        return ib;
    }
View Full Code Here

TOP

Related Classes of cc.redberry.core.indices.IndicesBuilderSorted

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.