Package cc.redberry.core.tensor

Examples of cc.redberry.core.tensor.Power


    private ProviderPower() {
    }

    @Override
    public IndexMappingProvider create(IndexMappingProvider opu, Tensor from, Tensor to) {
        final Power fromP = (Power) from, toP = (Power) to;
        if (IndexMappings.mappingExists(fromP.get(1), toP.get(1)) && IndexMappings.mappingExists(fromP.get(0), toP.get(0)))
            return new DummyIndexMappingProvider(opu);
        return IndexMappingProvider.Util.EMPTY_PROVIDER;
    }
View Full Code Here

TOP

Related Classes of cc.redberry.core.tensor.Power

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.