File: READ-ME

package info (click to toggle)
hol88 2.02.19940316dfsg-5
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 65,816 kB
  • sloc: ml: 199,939; ansic: 9,666; sh: 6,913; makefile: 6,032; lisp: 2,747; yacc: 894; sed: 201; cpp: 87; awk: 5
file content (25 lines) | stat: -rw-r--r-- 1,177 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
This directory contains a subset of the HOL term parser. 

In order to accomplish the typechecking properly, some lisp hacks were
implemented by MJCG.  We parse to a recursive data type that is then
sent to the HOL typechecker for conversion to a term.  The datatype
is defined to mirror the construction of the underlying representation
of terms as much as possible.

The type parser defined in the user guide is incorporated into the
term parser.  In order to do so, modifications were required to the
action symbols defined for the raw type parser.  The functionality is
the same, it was only necessary to modify them to reflect the new
data type they are dealing with.

The term parser is a more extended excercise in operator precedence. 
For that reason, the grammar is looks extensive.  It is, however, only
repetitive.

The files *.grm contain the grammars for the term parser.  term_help.ml
defines the action symbols.  To make, change the pathnames in Makefile
to suit your purposes.  To load in the parser, change the pathname to 
general.ml in loader.ml, and then perform a loadf on it.  The parser
may be re-generated from scratch by parsing *.grm in any order.