9 lines
125 B
C#
9 lines
125 B
C#
namespace Org.BouncyCastle.Math.Field;
|
|
|
|
public interface IPolynomial
|
|
{
|
|
int Degree { get; }
|
|
|
|
int[] GetExponentsPresent();
|
|
}
|