Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/keiichiw/buechi-nonemptiness


https://github.com/keiichiw/buechi-nonemptiness

Last synced: 12 days ago
JSON representation

Awesome Lists containing this project

README

        

# nonemptiness check of Büchi automata

## Requirement
* OCaml 4.02.1
* ocamllex 4.02.1
* ocamlyacc 4.02.1
* ocamlbuild 4.02.1

## How to use

```
$ make
$ ./main.native ./sample/nonempty1.txt
nonempty!
./sample/nonempty1.dot created!
$ dot -Tpng ./sample/nonempty1.dot -o nonempty1.png
```

## Syntax of input file

```
::=
::= { "->" }
::= "S0:" {}
::= "F:" {}
::= ( | )+
::= 'a'|..|'z'|'A'|..|'Z'|'_'
::= '0'|..|'9'
```