Use saved searches to filter your results more quickly
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.
Python Implementation of an algorithm which converts a Non-Deterministic Finite Automaton to a reduced Deterministic Finite Automaton as a part of ‘Automata Theory’ course assignment
narenakash/NFA-to-DFA-Converter
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Sign In Required
Please sign in to use Codespaces.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
Latest commit
Git stats
Files
Failed to load latest commit information.
README.md
CS1.301 Automata Theory: Course Assignment 01
Under Prof. Venkatesh Chopella, IIIT Hyderabad
An NFA which recognizes a language L is represented formally by a 5-tuple, (Q, Σ, Δ, q0, F). Then, DFA D = (Q’, Σ, Δ’, q0, F’) can be constructed for language L.
Step 01: Initially Q’ = ɸ. Add q0 to Q’.
Step 02: For each state in Q’, add the possible set of states for each input symbol using the transition function of NFA to Q’ if not present already.
Step 03: The final state of DFA will be all states containing F.
Note: The algorithm produces only the reduced transition function of the DFA.
About
Python Implementation of an algorithm which converts a Non-Deterministic Finite Automaton to a reduced Deterministic Finite Automaton as a part of ‘Automata Theory’ course assignment
Converting Epsilon-NFA to DFA using Python and Graphviz
Finite Automata (FA) is a simple machine used to match patterns in an input string. Finite Automata is a quintuple i.e., it has five elements. In this article we are going to see how to convert epsilon-NFA to DFA using Python and Graphviz.