Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 606 Bytes

README.md

File metadata and controls

33 lines (25 loc) · 606 Bytes

SyntacticalAnalyzer

Finite Automata Syntactical Analyzer: BISON

Pre-requisites

You should have flex and bison installed.

Finite Automatas have to had the following format:

	% Autómata Finito
	Alfabeto { símbolo , símbolo , ... }
	Estados { num }
	Transiciones { (num , símbolo ; num), ... }
	Inicial { num }
	Finales { num, ... }

Functioning

Compile the program:

./make

Test it with files:

./a.out < example.txt

Authors