https://github.com/neemiasbsilva/lfa
Linguagens Formais e Autômatos -- (LFA) Implementações
https://github.com/neemiasbsilva/lfa
Last synced: 8 months ago
JSON representation
Linguagens Formais e Autômatos -- (LFA) Implementações
- Host: GitHub
- URL: https://github.com/neemiasbsilva/lfa
- Owner: neemiasbsilva
- Created: 2019-08-25T16:29:24.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-09-26T03:45:03.000Z (about 6 years ago)
- Last Synced: 2025-01-05T13:13:40.309Z (10 months ago)
- Language: C++
- Size: 202 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Automate Formal Language AFL Readme
## This repository have three implementation of the assignment for the course AFL. The course was ministered for the teacher PhD Elisângela Silva da Cunha Rodrigues.###### For the implementation 3 follow one instance (or one automate for minimize):
1. Begin states: A
2. Bength of the final states: 3
3. Final states respectively: C D E
4. Length of the Aphabets symbols: 2
5. Respectively for the Aphabets symbols: 0 1
6. Trasiction Function:
- A 0 B
- A 1 C
- B 0 A
- B 1 D
- C 0 E
- C 1 F
- D 0 E
- D 1 F
- E 0 E
- E 1 F
- F 0 F
- F 1 F
- z -1 z **stop condition for the transiction function**
7. 1 **transiction function of the AFD**
8. 2 **transiction function of the AFDM**
9. 0 **Program Output**