The Forlan Project (Version 4.15)


Introduction

The Forlan Project consists of a toolset (called Forlan) for experimenting with formal languages, a graphical editor for Forlan automata and trees called JForlan, and a draft textbook entitled Formal Language Theory: Integrating Experimentation and Proof. The toolset, graphical editor and book are released under free software/documentation licenses.

The Forlan toolset is a library on top of the Standard ML of New Jersey (SML/NJ) implementation of Standard ML (SML). It's used interactively, and users are able to extend Forlan by defining SML functions.

When citing the book or project, you can use these BibTeX entries.

Feedback Request

Feedback concerning the Forlan Project is very welcome. Email: alley.stoughton@icloud.com.

News

Version 4.15
The Forlan function for simplifying finite automata now favors removing transitions whose labels are longer, bringing it in agreement with the function for simplifying grammars. Small revisions to book.
Version 4.14
Added functions for computing the reachable, live and dead states of finite automata. Small revisions to book.
Version 4.13
Continuing revision of book, including filling in gaps in Section 3.3, and making a rough version of a complete index.
Version 4.12
Defined version of eliminateVariable that takes constraints on the maximum number of productions the variable to be eliminated has, as well as the maximum size of the right sides of those productions. Continuing revision of book.
Version 4.11
Added functions to StrSet for computing the set of suffixes and substrings of a string. Continuing revision of book.
Older News
News archive.

Papers on Forlan

Textbook

The Forlan toolset has been developed together with an introductory textbook entitled Formal Language Theory: Integrating Experimentation and Proof. An attempt has been made to keep the conceptual and notational distance between the textbook and toolset as small as possible. The book treats most concepts and algorithms both theoretically, especially using proof, and through experimentation, using Forlan. In contrast to some books on formal language theory, the book emphasizes the concrete over the abstract, providing numerous, fully worked-out examples of how regular expressions, finite automata, grammars and programs (its substitute for Turing machines) can be designed and proved correct.

The textbook is still a work-in-progress, but the most recent version is the Spring 2022 Draft. The LaTeX source for the draft is part of Forlan's distribution. It is released under the GNU Free Documentation License.

Standard ML

Very little knowledge of Standard ML is required in order to use Forlan in simple ways. But users who are more familiar with ML will be able to use Forlan in more sophisticated ways. The book assumes no previous knowledge of Standard ML. In order to understand and extend the implementation of Forlan, though, one must have a good working knowledge of Standard ML.

More information about SML can be obtained from L. C. Paulson's ML for the Working Programmer, second edition, Cambridge University Press, 1966. It is available online, for personal use.

If you like learning from examples, here's a brief tutorial on SML.

You may also consult these other books and draft books:

People who are already familiar with Objective Caml (OCaml), can consult a comparison of Objective Caml and Standard ML.

Before installing Forlan, one must first install the Standard ML of New Jersey (SML/NJ) compiler, which can be obtained from www.smlnj.org. Install the most recent version. There are installers for macOS and Windows, and you can build a Linux version from source.

The Standard ML Basis Library is included as part of the SML/NJ distribution and contains many useful functions.

The best way to run ML is as a sub-process of the Emacs text editor, using the SML mode for Emacs.

Forlan Manual

A manual for Version 4.15 of Forlan is available. The manual is also available as a compressed tarball, and as a zip archive. The root HTML file is index.html

Installing Forlan on Linux, macOS and Windows

Here are instructions for downloading and installing Forlan Version 4.15 on a machine running Linux, macOS or Windows.

The instructions assume that SML/NJ has been installed in the following locations:

Linux/macOS Distribution: /usr/local/smlnj
Binary: /usr/local/bin/sml
Windows Distribution: C:\Program Files\SMLNJ
Binary: C:\Program Files\SMLNJ\bin\sml

Copy the SML/NJ binary (sml) from the bin directory of the SML/NJ distribution to the binary directory (folder), if necssary. And make sure the binary directory is on your shell's search path. Test this by running sml, and making sure it starts correctly. (You can exit by typing CTRL-d on Linux/macOS or CTRL-z on Windows.)

If you install SML/NJ somewhere else, you'll have to modify the instructions accordingly. But you'll also have to make appropriate edits to the script forlan (under Linux/macOS) or forlan.bat (under Windows).

Installing Forlan under Linux and macOS

Transfer the compressed tarball forlan-min-src-4.15.tgz to a temporary directory. (This tarball contains the minimum source needed to compile Forlan. If you plan to make changes to Forlan, you should get the full source. See below.) Then, run the following commands, after changing directory to the temporary directory:

  gunzip forlan-min-src-4.15.tgz
  tar xf forlan-min-src-4.15.tar
  cd forlan-min-src-4.15
  ./build-heap-image

This will cause an SML/NJ heap image for Forlan to be written to the file forlan-heap.x86-linux (Linux) or forlan-heap.x86-darwin (macOS Intel). If you get an error saying that sml was not found, refer to the above instructions for making sure sml is on your shell's search path.

Then move the bash shell script forlan to /usr/local/bin, and move the heap image to /usr/local/smlnj/bin/.heap.

Installing Forlan under Windows

Transfer the zip archive forlan-min-src-4.15.zip to a temporary directory. (This zip archive contains the minimum source needed to compile Forlan. If you plan to make changes to Forlan, you should get the full source. See below.) Extract the directory forlan-min-src-4.15 from this archive.

Then, run the following commands, after changing directory to the temporary directory:

  cd forlan-min-src-4.15
  sml
  Control.trackExn := false;
  CM.make "forlan.cm";
  open TopLevel;
  Export.export();

This will cause an SML/NJ heap image for Forlan to be written to the file forlan-heap.x86-win32. If you get an error saying that sml was not found, refer to the above instructions for making sure sml is on your shell's search path.

Then move the shell script forlan.bat to the directory C:\Program Files\SMLNJ\bin, and move the heap image to the directory C:\Program Files\SMLNJ\bin\.heap.

Create a desktop and/or startup menu shortcut to the command

  C:\Program Files\SMLNJ\bin\forlan.bat

Set the working directory for the shortcut to the one where your personal SML and Forlan files will reside.

JForlan — a Java Graphical Editor for Forlan Finite Automata and Trees

JForlan is a Java program for creating and editing Forlan automata and trees: finite automata, regular expression finite automata, parse trees, regular expression trees, and program trees. JForlan automatically maintains the connections between the components of automata and trees, as those components are repositioned using the mouse. And it handles the conversion of diagrams from and to Forlan's concrete syntax. JForlan can be invoked directly (as a standalone applications) or from Forlan.

Forlan Project Distribution

Version 4.15 of the Forlan Project distribution is available as a compressed tarball. The distribution contains:

The Forlan distribution is hosted on GitHub, and may be cloned or forked there: https://github.com/alleystoughton/Forlan/.

The Forlan toolset and JForlan are released under the GNU General Public License, and the textbook is released under the GNU Free Documentation License.

Contributors

Alley Stoughton created the Forlan project, designed, implemented and documented its modules, and wrote the textbook.

Leonard Lee and Jessica Sherrill designed and implemented graphical editors for Forlan finite automata (JFA), and regular expression and parse trees (JTR), respectively. Their work was unified and enhanced (of particular note was the addition of support for program trees) by Srinivasa Aditya Uppu, resulting in an initial version of JForlan. Subsequently, Kenton Born carried out a major redevelopment of JForlan, resulting in JForlan Version 1.0. Further revisions, by Alley Stoughton, led to JForlan Versions 2.0 and 2.1.


Alley Stoughton (alley.stoughton@icloud.com)