expression
.ldivide(
exp
)
//
An expression which denotes the left-quotient of both expressions. Beware that the notation lhs // rhs is somewhat misleading, and corresponds to lhs \ rhs, i.e. lhs is the divisor, and rhs the dividend.
lhs // rhs
lhs \ rhs
lhs
rhs
Preconditions:
See also:
import vcsn ctx = vcsn.context('lal, q') exp = lambda p: ctx.expression(p) exp('ab') // exp('abc')
exp('a+b') // exp('aa+ab+ba+bb')
exp('<2>\e') // exp('a+<2>b')