NFA and DFA algorithms visualized using Haskell
Find a file
2019-10-31 19:33:43 +00:00
app Do some basic setup 2019-10-21 11:58:32 +00:00
resources Prepare files for making repository public 2019-10-31 19:33:43 +00:00
src/Rextra Implement DFA minimization 2019-10-31 19:10:33 +00:00
test Create new project with stack 2019-10-21 11:43:55 +00:00
.gitignore Change project name 2019-10-28 13:48:28 +00:00
LICENSE Prepare files for making repository public 2019-10-31 19:33:43 +00:00
package.yaml Prepare files for making repository public 2019-10-31 19:33:43 +00:00
README.md Prepare files for making repository public 2019-10-31 19:33:43 +00:00
Setup.hs Create new project with stack 2019-10-21 11:43:55 +00:00
stack.yaml Create new project with stack 2019-10-21 11:43:55 +00:00
stack.yaml.lock Do some basic setup 2019-10-21 11:58:32 +00:00

rextra

At the moment, rextra can display DFAs and NFAs using Graphviz, convert between NFAs and DFAs, and minimize DFAs.

The representation of DFAs and NFAs assumes an infinite alphabet:

DFA states always contain a default transition (marked with * in the visualisations), which is taken if the current token doesn't appear in any of the other transitions.

NFA transitions either apply to a set of tokens, or to all tokens except a specified set. In the visualisation, the character Σ denotes the alphabet of tokens.

Example

This example minimizes the DFA shown on the wikipedia article about DFA minimization.

Transitions for the token 1 are specified explicitly (where necessary), while transitions for the token 0 are represented by the default transition marked with *.

This ghci session shows the minimization of the DFA mentioned above.

>>> Just a = dfa [ ("a",[('1',"c")],"b"), ("b",[('1',"d")],"a"), ("c",[('1',"f")],"e"), ("d",[('1',"f")],"e"), ("e",[('1',"f")],"e"), ("f",[],"f") ] "a" ["c","d","e"]
>>> saveDotAsPng "dfa.png" $ dfaToDot a

>>> saveDotAsPng "dfa_minimized.png" $ dfaToDot $ minimizeDfa a