author | huffman |
Fri, 05 Mar 2010 14:05:25 -0800 | |
changeset 35596 | 49a02dab35ed |
parent 33615 | 261abc2e3155 |
permissions | -rw-r--r-- |
1465 | 1 |
(* Title: HOL/Subst/ROOT.ML |
33615 | 2 |
Authors: Martin Coen, Cambridge University Computer Laboratory |
3 |
Konrad Slind, TU Munich |
|
3192
a75558a4ed37
New version, modified by Konrad Slind and LCP for TFL
paulson
parents:
1465
diff
changeset
|
4 |
Copyright 1993 University of Cambridge, |
a75558a4ed37
New version, modified by Konrad Slind and LCP for TFL
paulson
parents:
1465
diff
changeset
|
5 |
1996 TU Munich |
968 | 6 |
|
7 |
Substitution and Unification in Higher-Order Logic. |
|
8 |
||
3192
a75558a4ed37
New version, modified by Konrad Slind and LCP for TFL
paulson
parents:
1465
diff
changeset
|
9 |
Implements Manna & Waldinger's formalization, with Paulson's simplifications, |
a75558a4ed37
New version, modified by Konrad Slind and LCP for TFL
paulson
parents:
1465
diff
changeset
|
10 |
and some new simplifications by Slind. |
968 | 11 |
|
12 |
Z Manna & R Waldinger, Deductive Synthesis of the Unification Algorithm. |
|
13 |
SCP 1 (1981), 5-48 |
|
14 |
||
15 |
L C Paulson, Verifying the Unification Algorithm in LCF. SCP 5 (1985), 143-170 |
|
16 |
||
3192
a75558a4ed37
New version, modified by Konrad Slind and LCP for TFL
paulson
parents:
1465
diff
changeset
|
17 |
AList - association lists |
a75558a4ed37
New version, modified by Konrad Slind and LCP for TFL
paulson
parents:
1465
diff
changeset
|
18 |
UTerm - data type of terms |
a75558a4ed37
New version, modified by Konrad Slind and LCP for TFL
paulson
parents:
1465
diff
changeset
|
19 |
Subst - substitutions |
a75558a4ed37
New version, modified by Konrad Slind and LCP for TFL
paulson
parents:
1465
diff
changeset
|
20 |
Unifier - specification of unification and conditions for |
968 | 21 |
correctness and termination |
3192
a75558a4ed37
New version, modified by Konrad Slind and LCP for TFL
paulson
parents:
1465
diff
changeset
|
22 |
Unify - the unification function |
968 | 23 |
|
24 |
*) |
|
25 |
||
33615 | 26 |
use_thys ["Unify"]; |