Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Views: 45896
Kernel: Python 3

automaton | aut

The (accessible part of the) "tuple" of automata, ie the kk-tape automaton whose behavior is the Cartesian product of the behaviors of the input automata.

See also:

Examples

import vcsn exp = vcsn.context('lan, q').expression e1 = exp('abc') a1 = e1.automaton() a1
Image in a Jupyter notebook
e2 = exp('(<2>x)*') a2 = e2.automaton() a2
Image in a Jupyter notebook
a1 | a2
Image in a Jupyter notebook
(e1 | e2).automaton()
Image in a Jupyter notebook