• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package org.bouncycastle.math.field;
2 
3 public interface Polynomial
4 {
getDegree()5     int getDegree();
6 
7 //    BigInteger[] getCoefficients();
8 
getExponentsPresent()9     int[] getExponentsPresent();
10 
11 //    Term[] getNonZeroTerms();
12 }
13