Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 354 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 354 Bytes

Left Factoring

JavaFx GUI Application

Graphical User Interface Based JavaFX Program for computing Left Factoring. Left Factoring is a grammar transformation technique. It consists in "factoring out" prefixes which are common to two or more productions.

For example, going from:

A → α β | α γ

to:

A → α A'

A' → β | γ