Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
49391 views
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