Package cc.redberry.tensorgenerator

Source Code of cc.redberry.tensorgenerator.TensorGenerator

/*
* Redberry: symbolic tensor computations.
*
* Copyright (c) 2010-2012:
*   Stanislav Poslavsky   <stvlpos@mail.ru>
*   Bolotin Dmitriy       <bolotin.dmitriy@gmail.com>
*
* This file is part of Redberry.
*
* Redberry is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Redberry is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Redberry. If not, see <http://www.gnu.org/licenses/>.
*/
package cc.redberry.tensorgenerator;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.List;
import cc.redberry.core.context.CC;
import cc.redberry.core.indices.Indices;
import cc.redberry.core.indices.IndicesFactory;
import cc.redberry.core.parser.ParserIndices;
import cc.redberry.core.tensor.Product;
import cc.redberry.core.tensor.Sum;
import cc.redberry.core.tensor.Tensor;
import cc.redberry.core.indexmapping.IndexMappingDirect;
import cc.redberry.core.combinatorics.Symmetries;
import cc.redberry.core.transformations.ApplyIndexMappingDirectTransformation;
import cc.redberry.transformation.symmetrize.Symmetrize;
import cc.redberry.core.utils.IntArray;
import cc.redberry.core.math.frobenius.FrobeniusSolver;

/**
*
* @author Dmitry Bolotin
* @author Stanislav Poslavsky
*/
public class TensorGenerator {
    private final Tensor[] samples;
    private final Indices indices;
    private final int[] lowArray;
    private final int[] upArray;
    private final ScalarTensorGenerator scalarTensorGenerator;
    private final Sum result = new Sum();
    private final List<Tensor> coefficients;
    private final Symmetries symmetries;

    private TensorGenerator(String indices, Symmetries symmetries, String... samples) {
        this("c", ParserIndices.parse(indices), symmetries, CC.parse(samples));
    }

    private TensorGenerator(Indices indices, Symmetries symmetries, Tensor... samples) {
        this("c", indices, symmetries, samples);
    }

    private TensorGenerator(String coef, Indices indices, Symmetries symmetries, Tensor... samples) {
        this.samples = samples;
        this.scalarTensorGenerator = new ScalarTensorGenerator(coef);
        this.lowArray = indices.getLower().copy();
        this.upArray = indices.getUpper().copy();
        this.coefficients = new ArrayList<>();
        this.symmetries = symmetries;
        Arrays.sort(lowArray);
        Arrays.sort(upArray);
        this.indices = IndicesFactory.createSorted(indices.getFreeIndices().getAllIndices().copy());
        generate();
    }

    private void generate() {

        //processing low indices
        int totalLowCount = lowArray.length, i;
        int[] lowCounts = new int[samples.length + 1];
        for (i = 0; i < samples.length; ++i)
            lowCounts[i] = samples[i].getIndices().getLower().length();
        lowCounts[i] = totalLowCount;

        //processing up indices
        int totalUpCount = upArray.length;
        int[] upCounts = new int[samples.length + 1];
        for (i = 0; i < samples.length; ++i)
            upCounts[i] = samples[i].getIndices().getUpper().length();
        upCounts[i] = totalUpCount;

        //solving Frobenius equations
        FrobeniusSolver fbSolver = new FrobeniusSolver(lowCounts, upCounts);

        //processing combinations
        int u, l;
        int[] combination;
        while((combination = fbSolver.take()) != null) {

            LinkedList<Tensor> tCombination = new LinkedList<>();
            u = 0;
            l = 0;
            for (i = 0; i < combination.length; ++i)
                for (int j = 0; j < combination[i]; ++j) {
                    Tensor temp = samples[i].clone();

                    IndexMappingDirect im = new IndexMappingDirect();
                    IntArray termLow = temp.getIndices().getLower();
                    im.add(termLow, Arrays.copyOfRange(lowArray, l, l + termLow.length()));
                    l += termLow.length();

                    IntArray termUp = temp.getIndices().getUpper();
                    im.add(termUp, Arrays.copyOfRange(upArray, u, u + termUp.length()));
                    u += termUp.length();

                    temp = ApplyIndexMappingDirectTransformation.INSTANCE.perform(temp, im);
                    tCombination.add(temp);
                }

            //creating term & processing combinatorics
            Tensor coefficient;
            if (symmetries == null) {
                Symmetrize symmetrize = new Symmetrize(indices,
                        Symmetries.getFullSymmetriesForSortedIndices(totalUpCount, totalLowCount), false);
                Tensor terms = symmetrize.transform(new Product(tCombination));
                if (terms instanceof Sum)
                    for (Tensor t : terms) {
                        result.add(new Product(coefficient = scalarTensorGenerator.next(), t));
                        coefficients.add(coefficient.clone());
                    }
                else {
                    result.add(new Product(coefficient = scalarTensorGenerator.next(), terms));
                    coefficients.add(coefficient.clone());
                }
            } else {
                Symmetrize symmetrize = new Symmetrize(indices,
                        symmetries, true);
                Tensor terms = symmetrize.transform(new Product(tCombination));
                result.add(new Product(coefficient = scalarTensorGenerator.next(), terms));
                coefficients.add(coefficient.clone());
            }
        }
    }

    public static Tensor generate(String coef, Indices indices, Tensor... samples) {
        return new TensorGenerator(coef, indices, null, samples).result.equivalent();
    }

    public static Tensor generate(Indices indices, Tensor... samples) {
        return new TensorGenerator(indices, null, samples).result.equivalent();
    }

    public static Tensor generate(String indices, String... samples) {
        return new TensorGenerator(indices, null, samples).result.equivalent();
    }

    public static Tensor generate(String indices, Symmetries symmetries, String... samples) {
        return new TensorGenerator(indices, symmetries, samples).result.equivalent();
    }

    public static GeneratedTensor generateStructure(String coef, Indices indices, Tensor... samples) {
        TensorGenerator generator = new TensorGenerator(coef, indices, null, samples);
        return new GeneratedTensor(generator.coefficients.toArray(new Tensor[generator.coefficients.size()]),
                generator.result.equivalent());
    }

    public static GeneratedTensor generateStructure(Indices indices, Tensor... samples) {
        TensorGenerator generator = new TensorGenerator(indices, null, samples);
        return new GeneratedTensor(generator.coefficients.toArray(new Tensor[generator.coefficients.size()]),
                generator.result.equivalent());
    }

    public static GeneratedTensor generateStructure(Indices indices, Symmetries symmetries, Tensor... samples) {
        TensorGenerator generator = new TensorGenerator(indices, symmetries, samples);
        return new GeneratedTensor(generator.coefficients.toArray(new Tensor[generator.coefficients.size()]),
                generator.result.equivalent());
    }

    public static GeneratedTensor generateStructure(String indices, String... samples) {
        TensorGenerator generator = new TensorGenerator(indices, null, samples);
        return new GeneratedTensor(generator.coefficients.toArray(new Tensor[generator.coefficients.size()]),
                generator.result.equivalent());
    }
}
TOP

Related Classes of cc.redberry.tensorgenerator.TensorGenerator

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.