aboutsummaryrefslogtreecommitdiff
path: root/gfsm/gfsm/src/programs/gfsmcompile.gog
diff options
context:
space:
mode:
Diffstat (limited to 'gfsm/gfsm/src/programs/gfsmcompile.gog')
-rw-r--r--gfsm/gfsm/src/programs/gfsmcompile.gog102
1 files changed, 0 insertions, 102 deletions
diff --git a/gfsm/gfsm/src/programs/gfsmcompile.gog b/gfsm/gfsm/src/programs/gfsmcompile.gog
deleted file mode 100644
index e53307b..0000000
--- a/gfsm/gfsm/src/programs/gfsmcompile.gog
+++ /dev/null
@@ -1,102 +0,0 @@
-# -*- Mode: Shell-Script -*-
-#
-# Getopt::Gen specification
-#-----------------------------------------------------------------------------
-program "gfsmcompile"
-#program_version "0.01"
-
-purpose "Compile text format gfsm files to binary"
-author "Bryan Jurish <moocow@ling.uni-potsdam.de>"
-on_reparse "warn"
-
-#-----------------------------------------------------------------------------
-# Details
-#-----------------------------------------------------------------------------
-details ""
-
-#-----------------------------------------------------------------------------
-# Files
-#-----------------------------------------------------------------------------
-#rcfile "/etc/mootrc"
-#rcfile "~/.mootrc"
-
-#-----------------------------------------------------------------------------
-# Arguments
-#-----------------------------------------------------------------------------
-argument "TXTFILE" "Input text file" \
- details="
-If unspecified, standard input will be read
-"
-
-#argument "BINFILE" "Output binary gfsm file" \
-# details="
-#If unspecified, output will be written to standard output.
-#"
-
-#-----------------------------------------------------------------------------
-# Options
-#-----------------------------------------------------------------------------
-#group "Basic Options"
-
-flag "acceptor" a "Compile as acceptor (default=transducer)" \
- default=0
-
-string "ilabels" i "Specify input (lower) labels file." \
- arg="LABELS"
-
-string "olabels" o "Specify output (upper) labels file." \
- arg="LABELS"
-
-string "slabels" S "Specify state labels file." \
- arg="LABELS"
-
-string "semiring" s "Specify semiring type." \
- arg="SRTYPE" \
- default="tropical" \
- details="
-Specify one of the following:
-
- boolean
- log
- plog
- real
- trivial
- tropical
-
-"
-
-int "compress" z "Specify compression level of output file." \
- arg="LEVEL" \
- default="-1" \
- details="
-Specify zlib compression level of output file. -1 (default) indicates
-the default compression level, 0 (zero) indicates no zlib compression at all,
-and 9 indicates the best possible compression.
-"
-
-string "output" F "Specifiy output file (default=stdout)." \
- arg="FILE" \
- default="-"
-
-#-----------------------------------------------------------------------------
-# Addenda
-#-----------------------------------------------------------------------------
-#addenda ""
-
-#-----------------------------------------------------------------------------
-# Bugs
-#-----------------------------------------------------------------------------
-bugs "
-
-None known.
-
-"
-
-#-----------------------------------------------------------------------------
-# Footer
-#-----------------------------------------------------------------------------
-#acknowledge `cat acknowledge.pod`
-
-seealso "
-L<gfsmutils>
-"