polynomial
.add(
poly
)
A polynomial which denotes the sum (or disjunction) of both polynomials.
Preconditions:
See also:
import vcsn ctx = vcsn.context('lal_char, q') poly = lambda p: ctx.polynomial(p) poly('a+b') + poly('a+b')
poly('<2>a') + poly('<3>a')
poly('<2>a') + poly('<3>a') + poly('<-5>a')
poly('<2>a') + poly('\z')