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

automaton.is_proper

Whether the automaton is proper, i.e. has no spontaneous transitions.

See also:

Examples

import vcsn exp = vcsn.context('lan, b').expression('ab')
a = exp.standard() a
Image in a Jupyter notebook
a.is_proper()
True
a = exp.thompson() a
Image in a Jupyter notebook
a.is_proper()
False