6.1 Interface

class PolyInterface( type, systemType, monomInterface, coeffInterface)
Specifies operations on polynomials
type:
string defining the polynomial representation

Value of type Polynomial representation
"PolyList" is a singly linked list of the polynomial terms
"PolyArray" is an array of pointers to the polynomial terms

systemType:
specifies the system type (see 3)

monomInterface:
specifies the interface of monomials in polynomial (see 4.1)

coeffInterface:
specifies the interface of coefficients in polynomial (see 5.1)

The class PolyInterface contains the following methods:

type( )
returns the string defining the polynomial representation.