https://github.com/martincastroalvarez/automata-python
Implementation of automatas using Python
https://github.com/martincastroalvarez/automata-python
Last synced: about 1 year ago
JSON representation
Implementation of automatas using Python
- Host: GitHub
- URL: https://github.com/martincastroalvarez/automata-python
- Owner: MartinCastroAlvarez
- Created: 2024-04-07T21:02:35.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-20T01:26:37.000Z (about 2 years ago)
- Last Synced: 2025-02-14T17:30:03.086Z (over 1 year ago)
- Language: Python
- Size: 492 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python Automata
Implementation Automatas using Python
## Papers
* [Automatas Finitos No Deterministas](AFN1.pdf)
## Instructions
#### Run the AFN that accepts email addresses.
```bash
python3 emailAfn.py "loremipsum@gmail.com"
```
```bash
Transitioning: causes (, ) => {}
Transitioning: causes (, ) => {}
Transitioning: causes (, ) => {}
Transitioning: causes (, ) => {}
Transitioning: causes (, ) => {}
Transitioning: causes (, ) => {}
Transitioning: causes (, ) => {}
Transitioning: causes (, ) => {}
Transitioning: causes (, ) => {}
Transitioning: causes (, ) => {}
Transitioning: causes (, ) => {}
Transitioning: causes (, ) => {}
Transitioning: causes (, ) => {}
Transitioning: causes (, ) => {}
Transitioning: causes (, ) => {}
Transitioning: causes (, ) => {}
Transitioning: causes (, ) => {}
Transitioning: causes (, ) => {}
Transitioning: causes (, ) => {}
Transitioning: causes (, ) => {}
Accepted: 'loremipsum@gmail.com'
```