package org.bouncycastle.math.field;
public interface Polynomial
{
int getDegree();
// BigInteger[] getCoefficients();
int[] getExponentsPresent();
// Term[] getNonZeroTerms();
}
package org.bouncycastle.math.field;
public interface Polynomial
{
int getDegree();
// BigInteger[] getCoefficients();
int[] getExponentsPresent();
// Term[] getNonZeroTerms();
}