Download Latest Version smc-maven-plugin-7.6.0.jar (25.9 kB)
Email in envelope

Get an email when there's a new version of SMC - The State Machine Compiler

Name Modified Size InfoDownloads / Week
Parent folder
AppClass.lua 2021-11-11 2.0 kB
checkstring.lua 2021-11-11 1.7 kB
Makefile 2021-11-11 2.6 kB
README.txt 2021-11-11 865 Bytes
AppClass.sm 2021-11-11 3.0 kB
Totals: 5 Items   10.2 kB 0


                         Lua Example 3


This state machine "recognizes" the palindromes (words that read the
same backwards as forwards). The words consist of the alphabet
{0, 1, c} where the letter 'c' may appear only once and marks the
words center.


+ Building
----------

NOTE: Smc.jar must be built and installed.

Unix & Windows:
    $ make checkstring


+ Executing
-----------

Unix & Windows:

    $ lua checkstring.lua <string>

Try several different strings, such as:

    $ lua checkstring.lua ""
      -> unacceptable
    $ lua checkstring.lua 00
      -> unacceptable
    $ lua checkstring.lua 1c
      -> unacceptable
    $ lua checkstring.lua c0
      -> unacceptable
    $ lua checkstring.lua abcba
      -> unacceptable
    $ lua checkstring.lua 110010c010011
      -> acceptable
    $ lua checkstring.lua 110010c110010
      -> unacceptable
Source: README.txt, updated 2021-11-11