Skip to content

A library for simulating Deterministic Finite Automata written in C

License

Notifications You must be signed in to change notification settings

fauzanzaid/DFA-in-C

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DFA-in-C

A library for simulating Deterministic Finite Automata written in C

Building

First, download the dependencies:

./download_dependencies.sh

Then, to build the static library, run the following commands from the terminal:

mkdir build && cd build && cmake .. && make ; cd ..

This will build libDfa.a in ./lib directory.

Usage

See include/Dfa.h for information about functionality provided by this module, or generate doxygen documentation.