expression.conjunction(exp)
¶Create an expression which denotes the conjunction of both series.
Preconditions:
Properties:
See also:
import vcsn
a = vcsn.B.expression('a*b')
b = vcsn.B.expression('ab*')
c = a & b
c
c.derived_term()
c.shortest(10)