Package cc.redberry.core.indices

Source Code of cc.redberry.core.indices.IndicesSymmetries

/*
* 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.core.indices;

import cc.redberry.core.combinatorics.InconsistentGeneratorsException;
import cc.redberry.core.combinatorics.Symmetry;
import cc.redberry.core.combinatorics.symmetries.Symmetries;
import cc.redberry.core.combinatorics.symmetries.SymmetriesFactory;
import java.util.Arrays;
import java.util.Iterator;
import java.util.List;
import java.util.Objects;

/**
*
* @author Dmitry Bolotin
* @author Stanislav Poslavsky
*/
public class IndicesSymmetries implements Iterable<Symmetry> {

    private final IndicesTypeStructure indicesTypeStructure;
    private final Symmetries symmetries;
    private short[] diffIds = null;

    IndicesSymmetries(IndicesTypeStructure indicesTypeStructure) {
        this.indicesTypeStructure = indicesTypeStructure;
        this.symmetries = SymmetriesFactory.createSymmetries(indicesTypeStructure.size());
    }

    private IndicesSymmetries(IndicesTypeStructure indicesTypeStructure, Symmetries symmetries, short[] diffIds) {
        this.indicesTypeStructure = indicesTypeStructure;
        this.symmetries = symmetries;
        this.diffIds = diffIds;
    }

    IndicesSymmetries(IndicesTypeStructure indicesTypeStructure, Symmetries symmetries) {
        this.indicesTypeStructure = indicesTypeStructure;
        this.symmetries = symmetries;
    }

    public IndicesTypeStructure getIndicesTypeStructure() {
        return indicesTypeStructure;
    }

    public Symmetries getInnerSymmetries() {
        return symmetries;
    }

    @Override
    public Iterator<Symmetry> iterator() {
        return symmetries.iterator();
    }

    public short[] getDiffIds() {
        //TODO synchronize
        if (diffIds == null) {
            List<Symmetry> list = symmetries.getBasisSymmetries();
            diffIds = new short[symmetries.dimension()];
            Arrays.fill(diffIds, (short) -1);
            short number = 0;
            int i0, i1;
            for (Symmetry symmetry : list)
                for (i0 = 0; i0 < symmetry.dimension(); ++i0)
                    if ((i1 = symmetry.newIndexOf(i0)) != i0)
                        if (diffIds[i0] == -1 && diffIds[i1] == -1)
                            diffIds[i0] = diffIds[i1] = number++;
                        else if (diffIds[i0] == -1)
                            diffIds[i0] = diffIds[i1];
                        else
                            diffIds[i1] = diffIds[i0];
            for (i1 = 0; i1 < diffIds.length; ++i1)
                if (diffIds[i1] == -1)
                    diffIds[i1] = number++;
        }
        return diffIds;
    }

    public boolean add(IndexType type, boolean sign, int... permutation) {
        return add(type.getType(), new Symmetry(permutation, sign));
    }

    public boolean add(byte type, boolean sign, int... permutation) {
        return add(type, new Symmetry(permutation, sign));
    }

    public boolean add(byte type, Symmetry symmetry) {
        IndicesTypeStructure.TypeData data = indicesTypeStructure.getTypeData(type);
        if (data == null)
            throw new IllegalArgumentException("No such type: " + IndexType.getType(type));
        if (data.length != symmetry.dimension())
            throw new IllegalArgumentException("Wrong symmetry length.");
        int[] s = new int[indicesTypeStructure.size()];
        int i = 0;
        for (; i < data.from; ++i)
            s[i] = i;
        for (int j = 0; j < data.length; ++j, ++i)
            s[i] = symmetry.newIndexOf(j) + data.from;
        for (; i < indicesTypeStructure.size(); ++i)
            s[i] = i;
        try {
            if (symmetries.add(new Symmetry(s, symmetry.isAntiSymmetry()))) {
                diffIds = null;
                return true;
            }
            return false;
        } catch (InconsistentGeneratorsException exception) {
            throw new InconsistentGeneratorsException("Adding inconsistent symmetry to tensor indices symmetries.");
        }
    }

    public boolean addUnsafe(byte type, Symmetry symmetry) {
        IndicesTypeStructure.TypeData data = indicesTypeStructure.getTypeData(type);
        if (data == null)
            throw new IllegalArgumentException("No such type: " + IndexType.getType(type));
        if (data.length != symmetry.dimension())
            throw new IllegalArgumentException("Wrong symmetry length.");
        int[] s = new int[indicesTypeStructure.size()];
        int i = 0;
        for (; i < data.from; ++i)
            s[i] = i;
        for (int j = 0; j < data.length; ++j, ++i)
            s[i] = symmetry.newIndexOf(j) + data.from;
        for (; i < indicesTypeStructure.size(); ++i)
            s[i] = i;
        symmetries.addUnsafe(new Symmetry(s, symmetry.isAntiSymmetry()));
        return true;
    }

    public boolean addUnsafe(Symmetry symmetry) {
        return this.symmetries.addUnsafe(symmetry);
    }

    public final boolean isEmpty() {
        return symmetries.isEmpty();
    }

    @Override
    public IndicesSymmetries clone() {
        return new IndicesSymmetries(indicesTypeStructure, symmetries.clone(), diffIds);
    }

    @Override
    public String toString() {
        return symmetries.toString();
    }

//    @Override
//    public boolean equals(Object obj) {
//        if (obj == null)
//            return false;
//        if (getClass() != obj.getClass())
//            return false;
//        final IndicesSymmetries other = (IndicesSymmetries) obj;
//        if (!this.indicesTypeStructure.equals(other.indicesTypeStructure))
//            return false;
//        if (!Objects.equals(this.symmetries, other.symmetries))
//            return false;
//        if (!Arrays.equals(this.diffIds, other.diffIds))
//            return false;
//        return true;
//    }
    @Override
    public int hashCode() {
        return 301 + Objects.hashCode(this.symmetries);
    }

    /*
     * private static void checkConsistent(IndicesTypeStructure
     * indicesTypeStructure, SymmetriesImpl symmetries) { List<Symmetry> list =
     * symmetries.getBasisSymmetries(); for (Symmetry s : list)
     * checkConsistent(indicesTypeStructure, s); }
     *
     * private static void checkConsistent(IndicesTypeStructure
     * indicesTypeStructure, Symmetry symmetry) { for (int i = 0; i <
     * symmetry.dimension(); ++i) if (indicesTypeStructure.data[i] !=
     * indicesTypeStructure.data[symmetry.newIndexOf(i)]) throw new
     * IllegalArgumentException("Inconsistent symmetry: permutes indices with
     * different types."); }
     */
    public static IndicesSymmetries create(IndicesTypeStructure indicesTypeStructure) {
        if (indicesTypeStructure.size() == 0)
            return EMPTY_SYMMETRIES;
        return new IndicesSymmetries(indicesTypeStructure);
    }
    public static final IndicesSymmetries EMPTY_SYMMETRIES =
            new IndicesSymmetries(new IndicesTypeStructure(EmptySimpleIndices.EMPTY_SIMPLE_INDICES_INSTANCE),
                                  SymmetriesFactory.createSymmetries(0), new short[0]) {

                @Override
                public IndicesSymmetries clone() {
                    return this;
                }
            };
}
TOP

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

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.