All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.jas.ufd.FactorsMap Maven / Gradle / Ivy

/*
 * $Id: FactorsMap.java 3992 2012-07-14 21:32:18Z kredel $
 */

package edu.jas.ufd;


import java.io.Serializable;
import java.util.SortedMap;

import edu.jas.poly.AlgebraicNumberRing;
import edu.jas.poly.GenPolynomial;
import edu.jas.structure.GcdRingElem;


/**
 * Container for the factors of a eventually non-squarefree factorization.
 * @author Heinz Kredel
 * @param  coefficient type
 */

public class FactorsMap> implements Serializable {


    /**
     * Original polynomial to be factored with coefficients from C.
     */
    public final GenPolynomial poly;


    /**
     * List of factors with coefficients from C.
     */
    public final SortedMap, Long> factors;


    /**
     * List of factors with coefficients from AlgebraicNumberRings.
     */
    public final SortedMap, Long> afactors;


    /**
     * Constructor.
     * @param p given GenPolynomial over C.
     * @param map irreducible factors of p with coefficients from C.
     */
    public FactorsMap(GenPolynomial p, SortedMap, Long> map) {
        this(p, map, null);
    }


    /**
     * Constructor.
     * @param p given GenPolynomial over C.
     * @param map irreducible factors of p with coefficients from C.
     * @param amap irreducible factors of p with coefficients from an algebraic
     *            number field.
     */
    public FactorsMap(GenPolynomial p, SortedMap, Long> map,
            SortedMap, Long> amap) {
        poly = p;
        factors = map;
        afactors = amap;
    }


    /**
     * Get the String representation.
     * @see java.lang.Object#toString()
     */
    @Override
    public String toString() {
        StringBuffer sb = new StringBuffer();
        sb.append(poly.toString());
        sb.append(" =\n");
        boolean first = true;
        for (GenPolynomial p : factors.keySet()) {
            if (first) {
                first = false;
            } else {
                sb.append(",\n ");
            }
            sb.append(p.toString());
            long e = factors.get(p);
            if (e > 1) {
                sb.append("**" + e);
            }
        }
        if (afactors == null) {
            return sb.toString();
        }
        for (Factors f : afactors.keySet()) {
            if (first) {
                first = false;
            } else {
                sb.append(",\n ");
            }
            sb.append(f.toString());
            Long e = afactors.get(f);
            if ( e == null ) {
                continue;
            }
            if (e > 1) {
                sb.append("**" + e);
            }
        }
        return sb.toString();
    }


    /**
     * Get a scripting compatible string representation.
     * @return script compatible representation for this container.
     * @see edu.jas.structure.ElemFactory#toScript()
     */
    public String toScript() {
        // Python case
        StringBuffer sb = new StringBuffer();
        //sb.append(poly.toScript());
        //sb.append(" =\n");
        boolean first = true;
        for (GenPolynomial p : factors.keySet()) {
            if (first) {
                first = false;
            } else {
                sb.append("\n * ");
            }
            sb.append(p.toScript());
            long e = factors.get(p);
            if (e > 1) {
                sb.append("**" + e);
            }
        }
        if (afactors == null) {
            return sb.toString();
        }
        for (Factors f : afactors.keySet()) {
            if (first) {
                first = false;
            } else {
                sb.append("\n * ");
            }
            Long e = afactors.get(f);
            if ( e == null ) { // should not happen
                System.out.println("f = " + f);
                System.out.println("afactors = " + afactors);
                throw new RuntimeException("this should not happen");
            }
            if (e == 1) {
                sb.append(f.toScript());
            } else {
                sb.append("(\n");
                sb.append(f.toScript());
                sb.append("\n)**" + e);
            }
        }
        return sb.toString();
    }


    /**
     * Find largest extension field.
     * @return largest extension field or null if no extension field
     */
    public AlgebraicNumberRing findExtensionField() {
        if (afactors == null) {
            return null;
        }
        AlgebraicNumberRing ar = null;
        int depth = 0;
        for (Factors f : afactors.keySet()) {
            AlgebraicNumberRing aring = f.findExtensionField();
            if (aring == null) {
                continue;
            }
            int d = aring.depth();
            if (d > depth) {
                depth = d;
                ar = aring;
            }
        }
        return ar;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy