The class Basis contains the following methods:
) |
) |
) |
) |
) |
) |
) |
) |
) |
) |
) |
) |
) |
) |
monom) |
The monomials in the basis and monom must have the same interface.
poly) |
Polynomials in the basis and poly must have the same interface.
poly) |
Polynomials in the basis and poly must have the same interface.
poly) |
Polynomials in the basis and poly must have the same interface.
poly) |
Polynomials in the basis and poly must have the same interface.
The class Basis can be an argument of the following functions:
basis) |
[] ( |
basis, i) |
The basis is given by the following iterator of Python:
import ginv st = ginv.SystemType("Polynomial") im = ginv.MonomInterface("Lex", st, ['x', 'y', 'z']) ic = ginv.CoeffInterface("GmpZ", st) ip = ginv.PolyInterface("PolyList", st, im, ic) iw = ginv.WrapInterface("CritPartially", ip) iD = ginv.DivisionInterface("Janet", iw) basis = ginv.basisBuild("TQ", iD, \ ['x^3 - y^2 + z - 1',\ 'y^3 - z^2 + x - 1',\ 'z^3 - x^2 + y - 1']) for w in basis: print w.lm(),