Examples of PowerUnfoldTransformation


Examples of cc.redberry.core.transformations.powerexpand.PowerUnfoldTransformation

     * @param transformations transformations to be applied to the expression that forms the coefficient
     *                        of each term obtained
     */
    public CollectTransformation(SimpleTensor[] patterns, Transformation[] transformations) {
        patternsNames = new TIntHashSet();
        powerExpand = new PowerUnfoldTransformation(patterns);
        for (SimpleTensor t : patterns)
            patternsNames.add(t.getName());
        this.transformations = transformations;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.