src/HOL/Subst/ROOT.ML
author clasohm
Thu, 29 Jun 1995 12:48:48 +0200
changeset 1165 97b2bb5d43c3
parent 968 3cdaa8724175
child 1266 3ae9fe3c0f68
permissions -rw-r--r--
renamed CHOL to HOL
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1165
97b2bb5d43c3 renamed CHOL to HOL
clasohm
parents: 968
diff changeset
     1
(*  Title: 	HOL/Subst
968
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
     2
    Author: 	Martin Coen, Cambridge University Computer Laboratory
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
     3
    Copyright   1993  University of Cambridge
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
     4
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
     5
Substitution and Unification in Higher-Order Logic. 
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
     6
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
     7
Implements Manna & Waldinger's formalization, with Paulson's simplifications:
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
     8
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
     9
Z Manna & R Waldinger, Deductive Synthesis of the Unification Algorithm. 
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    10
SCP 1 (1981), 5-48
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    11
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    12
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
    13
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    14
setplus      -  minor additions to HOL's set theory
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    15
alist        -  association lists
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    16
uterm        -  inductive data type of terms
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    17
utlemmas     -  definition of occurs and vars_of for terms
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    18
subst        -  substitutions
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    19
unifier      -  specification of unification and conditions for 
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    20
                correctness and termination
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    21
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    22
To load, go to the parent directory and type use"Subst/ROOT.ML";
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    23
*)
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    24
1165
97b2bb5d43c3 renamed CHOL to HOL
clasohm
parents: 968
diff changeset
    25
HOL_build_completed;    (*Cause examples to fail if HOL did*)
968
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    26
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    27
writeln"Root file for Substitutions and Unification";
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    28
loadpath := ["Subst"];
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    29
use_thy "Subst/Setplus";
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    30
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    31
use_thy "Subst/AList";
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    32
use_thy "Subst/UTerm";
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    33
use_thy "Subst/UTLemmas";
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    34
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    35
use_thy "Subst/Subst";
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    36
use_thy "Subst/Unifier";
3cdaa8724175 converted Subst with curried function application
clasohm
parents:
diff changeset
    37
writeln"END: Root file for Substitutions and Unification";