src/HOL/Subst/ROOT.ML
author clasohm
Tue, 30 Jan 1996 15:24:36 +0100
changeset 1465 5d7a7e439cec
parent 1351 4a960c012383
child 3192 a75558a4ed37
permissions -rw-r--r--
expanded tabs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1351
diff changeset
     1
(*  Title:      HOL/Subst/ROOT.ML
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1165
diff changeset
     2
    ID:         $Id$
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1351
diff changeset
     3
    Author:     Martin Coen, Cambridge University Computer Laboratory
968
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
     4
    Copyright   1993  University of Cambridge
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
     5
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
     6
Substitution and Unification in Higher-Order Logic. 
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
     7
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
     8
Implements Manna & Waldinger's formalization, with Paulson's simplifications:
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
     9
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    10
Z Manna & R Waldinger, Deductive Synthesis of the Unification Algorithm. 
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    11
SCP 1 (1981), 5-48
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    12
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    13
L C Paulson, Verifying the Unification Algorithm in LCF. SCP 5 (1985), 143-170
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    14
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    15
setplus      -  minor additions to HOL's set theory
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    16
alist        -  association lists
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    17
uterm        -  inductive data type of terms
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    18
utlemmas     -  definition of occurs and vars_of for terms
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    19
subst        -  substitutions
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    20
unifier      -  specification of unification and conditions for 
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    21
                correctness and termination
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    22
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    23
To load, go to the parent directory and type use"Subst/ROOT.ML";
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    24
*)
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    25
1165
97b2bb5d43c3 renamed CHOL to HOL
clasohm
parents: 968
diff changeset
    26
HOL_build_completed;    (*Cause examples to fail if HOL did*)
968
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    27
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    28
writeln"Root file for Substitutions and Unification";
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    29
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1165
diff changeset
    30
use_thy "Unifier";
968
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    31
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    32
writeln"END: Root file for Substitutions and Unification";