src/HOL/Subst/ROOT.ML
author clasohm
Wed, 04 Oct 1995 13:12:14 +0100
changeset 1266 3ae9fe3c0f68
parent 1165 97b2bb5d43c3
child 1296 ae31bb7774a7
permissions -rw-r--r--
added local simpsets
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1165
diff changeset
     1
(*  Title: 	HOL/Subst/ROOT.ML
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1165
diff changeset
     2
    ID:         $Id$
968
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
     3
    Author: 	Martin Coen, Cambridge University Computer Laboratory
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
loadpath := ["Subst"];
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    30
1266
3ae9fe3c0f68 added local simpsets
clasohm
parents: 1165
diff changeset
    31
use_thy "Unifier";
968
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    32
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    33
writeln"END: Root file for Substitutions and Unification";