author | wenzelm |
Sat, 29 Jun 2024 12:50:43 +0200 | |
changeset 80455 | 99e276c44121 |
parent 80328 | 559909bd7715 |
permissions | -rw-r--r-- |
15797 | 1 |
(* Title: Pure/unify.ML |
16425
2427be27cc60
accomodate identification of type Sign.sg and theory;
wenzelm
parents:
15797
diff
changeset
|
2 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
0 | 3 |
Copyright Cambridge University 1992 |
4 |
||
16425
2427be27cc60
accomodate identification of type Sign.sg and theory;
wenzelm
parents:
15797
diff
changeset
|
5 |
Higher-Order Unification. |
0 | 6 |
|
16425
2427be27cc60
accomodate identification of type Sign.sg and theory;
wenzelm
parents:
15797
diff
changeset
|
7 |
Types as well as terms are unified. The outermost functions assume |
2427be27cc60
accomodate identification of type Sign.sg and theory;
wenzelm
parents:
15797
diff
changeset
|
8 |
the terms to be unified already have the same type. In resolution, |
2427be27cc60
accomodate identification of type Sign.sg and theory;
wenzelm
parents:
15797
diff
changeset
|
9 |
this is assured because both have type "prop". |
0 | 10 |
*) |
11 |
||
16425
2427be27cc60
accomodate identification of type Sign.sg and theory;
wenzelm
parents:
15797
diff
changeset
|
12 |
signature UNIFY = |
2427be27cc60
accomodate identification of type Sign.sg and theory;
wenzelm
parents:
15797
diff
changeset
|
13 |
sig |
24178
4ff1dc2aa18d
turned Unify flags into configuration options (global only);
wenzelm
parents:
23178
diff
changeset
|
14 |
val search_bound: int Config.T |
79743
3648e9c88d0c
add option for unify trace (now disabled by default as printing is excessive and rarely used);
Fabian Huch <huch@in.tum.de>
parents:
79742
diff
changeset
|
15 |
val unify_trace: bool Config.T |
79742
2e4518e8a36b
tuned unify trace option names;
Fabian Huch <huch@in.tum.de>
parents:
79162
diff
changeset
|
16 |
val unify_trace_bound: int Config.T |
2e4518e8a36b
tuned unify trace option names;
Fabian Huch <huch@in.tum.de>
parents:
79162
diff
changeset
|
17 |
val unify_trace_simp: bool Config.T |
2e4518e8a36b
tuned unify trace option names;
Fabian Huch <huch@in.tum.de>
parents:
79162
diff
changeset
|
18 |
val unify_trace_types: bool Config.T |
78652
3c57995c255c
allow higher-order unification of open terms (reviewed by Larry Paulson)
Kevin Kappelmann <kevin.kappelmann@tum.de>
parents:
69575
diff
changeset
|
19 |
val hounifiers: (string * typ) list -> Context.generic * Envir.env * ((term * term) list) -> |
52126 | 20 |
(Envir.env * (term * term) list) Seq.seq |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
21 |
val unifiers: Context.generic * Envir.env * ((term * term) list) -> |
16425
2427be27cc60
accomodate identification of type Sign.sg and theory;
wenzelm
parents:
15797
diff
changeset
|
22 |
(Envir.env * (term * term) list) Seq.seq |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
23 |
val smash_unifiers: Context.generic -> (term * term) list -> Envir.env -> Envir.env Seq.seq |
16425
2427be27cc60
accomodate identification of type Sign.sg and theory;
wenzelm
parents:
15797
diff
changeset
|
24 |
end |
0 | 25 |
|
19864 | 26 |
structure Unify : UNIFY = |
0 | 27 |
struct |
28 |
||
29 |
(*Unification options*) |
|
30 |
||
24178
4ff1dc2aa18d
turned Unify flags into configuration options (global only);
wenzelm
parents:
23178
diff
changeset
|
31 |
(*unification quits above this depth*) |
69575 | 32 |
val search_bound = Config.declare_int ("unify_search_bound", \<^here>) (K 60); |
24178
4ff1dc2aa18d
turned Unify flags into configuration options (global only);
wenzelm
parents:
23178
diff
changeset
|
33 |
|
79742
2e4518e8a36b
tuned unify trace option names;
Fabian Huch <huch@in.tum.de>
parents:
79162
diff
changeset
|
34 |
|
2e4518e8a36b
tuned unify trace option names;
Fabian Huch <huch@in.tum.de>
parents:
79162
diff
changeset
|
35 |
(* diagnostics *) |
2e4518e8a36b
tuned unify trace option names;
Fabian Huch <huch@in.tum.de>
parents:
79162
diff
changeset
|
36 |
|
79743
3648e9c88d0c
add option for unify trace (now disabled by default as printing is excessive and rarely used);
Fabian Huch <huch@in.tum.de>
parents:
79742
diff
changeset
|
37 |
val unify_trace = Config.declare_bool ("unify_trace", \<^here>) (K false); |
3648e9c88d0c
add option for unify trace (now disabled by default as printing is excessive and rarely used);
Fabian Huch <huch@in.tum.de>
parents:
79742
diff
changeset
|
38 |
|
79742
2e4518e8a36b
tuned unify trace option names;
Fabian Huch <huch@in.tum.de>
parents:
79162
diff
changeset
|
39 |
(*tracing starts above this depth, 0 for full*) |
2e4518e8a36b
tuned unify trace option names;
Fabian Huch <huch@in.tum.de>
parents:
79162
diff
changeset
|
40 |
val unify_trace_bound = Config.declare_int ("unify_trace_bound", \<^here>) (K 50); |
2e4518e8a36b
tuned unify trace option names;
Fabian Huch <huch@in.tum.de>
parents:
79162
diff
changeset
|
41 |
|
24178
4ff1dc2aa18d
turned Unify flags into configuration options (global only);
wenzelm
parents:
23178
diff
changeset
|
42 |
(*print dpairs before calling SIMPL*) |
79742
2e4518e8a36b
tuned unify trace option names;
Fabian Huch <huch@in.tum.de>
parents:
79162
diff
changeset
|
43 |
val unify_trace_simp = Config.declare_bool ("unify_trace_simp", \<^here>) (K false); |
24178
4ff1dc2aa18d
turned Unify flags into configuration options (global only);
wenzelm
parents:
23178
diff
changeset
|
44 |
|
4ff1dc2aa18d
turned Unify flags into configuration options (global only);
wenzelm
parents:
23178
diff
changeset
|
45 |
(*announce potential incompleteness of type unification*) |
79742
2e4518e8a36b
tuned unify trace option names;
Fabian Huch <huch@in.tum.de>
parents:
79162
diff
changeset
|
46 |
val unify_trace_types = Config.declare_bool ("unify_trace_types", \<^here>) (K false); |
24178
4ff1dc2aa18d
turned Unify flags into configuration options (global only);
wenzelm
parents:
23178
diff
changeset
|
47 |
|
79743
3648e9c88d0c
add option for unify trace (now disabled by default as printing is excessive and rarely used);
Fabian Huch <huch@in.tum.de>
parents:
79742
diff
changeset
|
48 |
fun cond_tracing ctxt msg = |
3648e9c88d0c
add option for unify trace (now disabled by default as printing is excessive and rarely used);
Fabian Huch <huch@in.tum.de>
parents:
79742
diff
changeset
|
49 |
if Config.get_generic ctxt unify_trace andalso Context_Position.is_visible_generic ctxt then |
3648e9c88d0c
add option for unify trace (now disabled by default as printing is excessive and rarely used);
Fabian Huch <huch@in.tum.de>
parents:
79742
diff
changeset
|
50 |
tracing (msg ()) |
3648e9c88d0c
add option for unify trace (now disabled by default as printing is excessive and rarely used);
Fabian Huch <huch@in.tum.de>
parents:
79742
diff
changeset
|
51 |
else (); |
3648e9c88d0c
add option for unify trace (now disabled by default as printing is excessive and rarely used);
Fabian Huch <huch@in.tum.de>
parents:
79742
diff
changeset
|
52 |
|
0 | 53 |
|
52126 | 54 |
type binderlist = (string * typ) list; |
0 | 55 |
|
56 |
type dpair = binderlist * term * term; |
|
57 |
||
12231
4a25f04bea61
Moved head_norm and fastype from unify.ML to envir.ML
berghofe
parents:
8406
diff
changeset
|
58 |
fun fastype env (Ts, t) = Envir.fastype env (map snd Ts) t; |
0 | 59 |
|
60 |
||
32032 | 61 |
(* eta normal form *) |
62 |
||
63 |
fun eta_norm env = |
|
64 |
let |
|
65 |
val tyenv = Envir.type_env env; |
|
66 |
fun etif (Type ("fun", [T, U]), t) = |
|
67 |
Abs ("", T, etif (U, incr_boundvars 1 t $ Bound 0)) |
|
68 |
| etif (TVar v, t) = |
|
69 |
(case Type.lookup tyenv v of |
|
70 |
NONE => t |
|
71 |
| SOME T => etif (T, t)) |
|
72 |
| etif (_, t) = t; |
|
73 |
fun eta_nm (rbinder, Abs (a, T, body)) = |
|
74 |
Abs (a, T, eta_nm ((a, T) :: rbinder, body)) |
|
75 |
| eta_nm (rbinder, t) = etif (fastype env (rbinder, t), t); |
|
0 | 76 |
in eta_nm end; |
77 |
||
78 |
||
79 |
(*OCCURS CHECK |
|
19864 | 80 |
Does the uvar occur in the term t? |
0 | 81 |
two forms of search, for whether there is a rigid path to the current term. |
79162 | 82 |
"seen" is list of variables passed through, is a memo variable for sharing. |
15797 | 83 |
This version searches for nonrigid occurrence, returns true if found. |
84 |
Since terms may contain variables with same name and different types, |
|
85 |
the occurs check must ignore the types of variables. This avoids |
|
86 |
that ?x::?'a is unified with f(?x::T), which may lead to a cyclic |
|
87 |
substitution when ?'a is instantiated with T later. *) |
|
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
88 |
fun occurs_terms (seen: indexname list Unsynchronized.ref, |
19864 | 89 |
env: Envir.env, v: indexname, ts: term list): bool = |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
90 |
let |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
91 |
fun occurs [] = false |
37636 | 92 |
| occurs (t :: ts) = occur t orelse occurs ts |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
93 |
and occur (Const _) = false |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
94 |
| occur (Bound _) = false |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
95 |
| occur (Free _) = false |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
96 |
| occur (Var (w, T)) = |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
97 |
if member (op =) (!seen) w then false |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
98 |
else if Term.eq_ix (v, w) then true |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
99 |
(*no need to lookup: v has no assignment*) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
100 |
else |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
101 |
(seen := w :: !seen; |
51700 | 102 |
case Envir.lookup env (w, T) of |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
103 |
NONE => false |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
104 |
| SOME t => occur t) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
105 |
| occur (Abs (_, _, body)) = occur body |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
106 |
| occur (f $ t) = occur t orelse occur f; |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
107 |
in occurs ts end; |
0 | 108 |
|
109 |
||
52126 | 110 |
(* f a1 ... an ----> f using the assignments*) |
111 |
fun head_of_in env t = |
|
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
112 |
(case t of |
52126 | 113 |
f $ _ => head_of_in env f |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
114 |
| Var vT => |
51700 | 115 |
(case Envir.lookup env vT of |
52126 | 116 |
SOME u => head_of_in env u |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
117 |
| NONE => t) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
118 |
| _ => t); |
0 | 119 |
|
120 |
||
121 |
datatype occ = NoOcc | Nonrigid | Rigid; |
|
122 |
||
123 |
(* Rigid occur check |
|
124 |
Returns Rigid if it finds a rigid occurrence of the variable, |
|
125 |
Nonrigid if it finds a nonrigid path to the variable. |
|
126 |
NoOcc otherwise. |
|
127 |
Continues searching for a rigid occurrence even if it finds a nonrigid one. |
|
128 |
||
129 |
Condition for detecting non-unifable terms: [ section 5.3 of Huet (1975) ] |
|
130 |
a rigid path to the variable, appearing with no arguments. |
|
131 |
Here completeness is sacrificed in order to reduce danger of divergence: |
|
132 |
reject ALL rigid paths to the variable. |
|
19864 | 133 |
Could check for rigid paths to bound variables that are out of scope. |
0 | 134 |
Not necessary because the assignment test looks at variable's ENTIRE rbinder. |
135 |
||
136 |
Treatment of head(arg1,...,argn): |
|
137 |
If head is a variable then no rigid path, switch to nonrigid search |
|
19864 | 138 |
for arg1,...,argn. |
139 |
If head is an abstraction then possibly no rigid path (head could be a |
|
0 | 140 |
constant function) so again use nonrigid search. Happens only if |
19864 | 141 |
term is not in normal form. |
0 | 142 |
|
143 |
Warning: finds a rigid occurrence of ?f in ?f(t). |
|
144 |
Should NOT be called in this case: there is a flex-flex unifier |
|
145 |
*) |
|
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
146 |
fun rigid_occurs_term (seen: indexname list Unsynchronized.ref, env, v: indexname, t) = |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
147 |
let |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
148 |
fun nonrigid t = |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
149 |
if occurs_terms (seen, env, v, [t]) then Nonrigid |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
150 |
else NoOcc |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
151 |
fun occurs [] = NoOcc |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
152 |
| occurs (t :: ts) = |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
153 |
(case occur t of |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
154 |
Rigid => Rigid |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
155 |
| oc => (case occurs ts of NoOcc => oc | oc2 => oc2)) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
156 |
and occomb (f $ t) = |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
157 |
(case occur t of |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
158 |
Rigid => Rigid |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
159 |
| oc => (case occomb f of NoOcc => oc | oc2 => oc2)) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
160 |
| occomb t = occur t |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
161 |
and occur (Const _) = NoOcc |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
162 |
| occur (Bound _) = NoOcc |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
163 |
| occur (Free _) = NoOcc |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
164 |
| occur (Var (w, T)) = |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
165 |
if member (op =) (!seen) w then NoOcc |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
166 |
else if Term.eq_ix (v, w) then Rigid |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
167 |
else |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
168 |
(seen := w :: !seen; |
51700 | 169 |
case Envir.lookup env (w, T) of |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
170 |
NONE => NoOcc |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
171 |
| SOME t => occur t) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
172 |
| occur (Abs (_, _, body)) = occur body |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
173 |
| occur (t as f $ _) = (*switch to nonrigid search?*) |
52126 | 174 |
(case head_of_in env f of |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
175 |
Var (w,_) => (*w is not assigned*) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
176 |
if Term.eq_ix (v, w) then Rigid |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
177 |
else nonrigid t |
37636 | 178 |
| Abs _ => nonrigid t (*not in normal form*) |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
179 |
| _ => occomb t) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
180 |
in occur t end; |
0 | 181 |
|
182 |
||
19864 | 183 |
exception CANTUNIFY; (*Signals non-unifiability. Does not signal errors!*) |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
184 |
exception ASSIGN; (*Raised if not an assignment*) |
0 | 185 |
|
186 |
||
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
187 |
fun unify_types context TU env = |
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
188 |
Pattern.unify_types context TU env handle Pattern.Unif => raise CANTUNIFY; |
0 | 189 |
|
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
190 |
fun test_unify_types context (T, U) env = |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
191 |
let |
79743
3648e9c88d0c
add option for unify trace (now disabled by default as printing is excessive and rarely used);
Fabian Huch <huch@in.tum.de>
parents:
79742
diff
changeset
|
192 |
fun msg () = |
3648e9c88d0c
add option for unify trace (now disabled by default as printing is excessive and rarely used);
Fabian Huch <huch@in.tum.de>
parents:
79742
diff
changeset
|
193 |
let val str_of = Syntax.string_of_typ (Context.proof_of context) |
3648e9c88d0c
add option for unify trace (now disabled by default as printing is excessive and rarely used);
Fabian Huch <huch@in.tum.de>
parents:
79742
diff
changeset
|
194 |
in "Potential loss of completeness: " ^ str_of U ^ " = " ^ str_of T end |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
195 |
val env' = unify_types context (T, U) env; |
79743
3648e9c88d0c
add option for unify trace (now disabled by default as printing is excessive and rarely used);
Fabian Huch <huch@in.tum.de>
parents:
79742
diff
changeset
|
196 |
in if is_TVar T orelse is_TVar U then cond_tracing context msg else (); env' end; |
0 | 197 |
|
198 |
(*Is the term eta-convertible to a single variable with the given rbinder? |
|
199 |
Examples: ?a ?f(B.0) ?g(B.1,B.0) |
|
200 |
Result is var a for use in SIMPL. *) |
|
52220
c4264f71dc3b
backout 3b9c31867707 -- too risky to "amend" modules from 25 years ago that don't handle Vars with different types;
wenzelm
parents:
52179
diff
changeset
|
201 |
fun get_eta_var ([], _, Var vT) = vT |
c4264f71dc3b
backout 3b9c31867707 -- too risky to "amend" modules from 25 years ago that don't handle Vars with different types;
wenzelm
parents:
52179
diff
changeset
|
202 |
| get_eta_var (_::rbinder, n, f $ Bound i) = |
c4264f71dc3b
backout 3b9c31867707 -- too risky to "amend" modules from 25 years ago that don't handle Vars with different types;
wenzelm
parents:
52179
diff
changeset
|
203 |
if n = i then get_eta_var (rbinder, n + 1, f) |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
204 |
else raise ASSIGN |
52220
c4264f71dc3b
backout 3b9c31867707 -- too risky to "amend" modules from 25 years ago that don't handle Vars with different types;
wenzelm
parents:
52179
diff
changeset
|
205 |
| get_eta_var _ = raise ASSIGN; |
0 | 206 |
|
207 |
||
208 |
(*Solve v=u by assignment -- "fixedpoint" to Huet -- if v not in u. |
|
209 |
If v occurs rigidly then nonunifiable. |
|
210 |
If v occurs nonrigidly then must use full algorithm. *) |
|
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
211 |
fun assignment context (rbinder, t, u) env = |
52220
c4264f71dc3b
backout 3b9c31867707 -- too risky to "amend" modules from 25 years ago that don't handle Vars with different types;
wenzelm
parents:
52179
diff
changeset
|
212 |
let val vT as (v,T) = get_eta_var (rbinder, 0, t) in |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
213 |
(case rigid_occurs_term (Unsynchronized.ref [], env, v, u) of |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
214 |
NoOcc => |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
215 |
let val env = unify_types context (Envir.body_type env T, fastype env (rbinder, u)) env |
52220
c4264f71dc3b
backout 3b9c31867707 -- too risky to "amend" modules from 25 years ago that don't handle Vars with different types;
wenzelm
parents:
52179
diff
changeset
|
216 |
in Envir.update (vT, Logic.rlist_abs (rbinder, u)) env end |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
217 |
| Nonrigid => raise ASSIGN |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
218 |
| Rigid => raise CANTUNIFY) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
219 |
end; |
0 | 220 |
|
221 |
||
222 |
(*Extends an rbinder with a new disagreement pair, if both are abstractions. |
|
52220
c4264f71dc3b
backout 3b9c31867707 -- too risky to "amend" modules from 25 years ago that don't handle Vars with different types;
wenzelm
parents:
52179
diff
changeset
|
223 |
Tries to unify types of the bound variables! |
0 | 224 |
Checks that binders have same length, since terms should be eta-normal; |
225 |
if not, raises TERM, probably indicating type mismatch. |
|
19864 | 226 |
Uses variable a (unless the null string) to preserve user's naming.*) |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
227 |
fun new_dpair context (rbinder, Abs (a, T, body1), Abs (b, U, body2)) env = |
52220
c4264f71dc3b
backout 3b9c31867707 -- too risky to "amend" modules from 25 years ago that don't handle Vars with different types;
wenzelm
parents:
52179
diff
changeset
|
228 |
let |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
229 |
val env' = unify_types context (T, U) env; |
52220
c4264f71dc3b
backout 3b9c31867707 -- too risky to "amend" modules from 25 years ago that don't handle Vars with different types;
wenzelm
parents:
52179
diff
changeset
|
230 |
val c = if a = "" then b else a; |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
231 |
in new_dpair context ((c,T) :: rbinder, body1, body2) env' end |
52126 | 232 |
| new_dpair _ (_, Abs _, _) _ = raise TERM ("new_dpair", []) |
233 |
| new_dpair _ (_, _, Abs _) _ = raise TERM ("new_dpair", []) |
|
234 |
| new_dpair _ (rbinder, t1, t2) env = ((rbinder, t1, t2), env); |
|
0 | 235 |
|
52220
c4264f71dc3b
backout 3b9c31867707 -- too risky to "amend" modules from 25 years ago that don't handle Vars with different types;
wenzelm
parents:
52179
diff
changeset
|
236 |
|
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
237 |
fun head_norm_dpair context (env, (rbinder, t, u)) : dpair * Envir.env = |
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
238 |
new_dpair context (rbinder, |
19864 | 239 |
eta_norm env (rbinder, Envir.head_norm env t), |
52126 | 240 |
eta_norm env (rbinder, Envir.head_norm env u)) env; |
0 | 241 |
|
242 |
||
52220
c4264f71dc3b
backout 3b9c31867707 -- too risky to "amend" modules from 25 years ago that don't handle Vars with different types;
wenzelm
parents:
52179
diff
changeset
|
243 |
|
0 | 244 |
(*flexflex: the flex-flex pairs, flexrigid: the flex-rigid pairs |
245 |
Does not perform assignments for flex-flex pairs: |
|
646 | 246 |
may create nonrigid paths, which prevent other assignments. |
67725 | 247 |
Does not even identify Vars in dpairs such as ?a \<equiv>\<^sup>? ?b; an attempt to |
646 | 248 |
do so caused numerous problems with no compensating advantage. |
249 |
*) |
|
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
250 |
fun SIMPL0 context dp0 (env,flexflex,flexrigid) : Envir.env * dpair list * dpair list = |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
251 |
let |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
252 |
val (dp as (rbinder, t, u), env) = head_norm_dpair context (env, dp0); |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
253 |
fun SIMRANDS (f $ t, g $ u, env) = |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
254 |
SIMPL0 context (rbinder, t, u) (SIMRANDS (f, g, env)) |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
255 |
| SIMRANDS (t as _$_, _, _) = |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
256 |
raise TERM ("SIMPL: operands mismatch", [t, u]) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
257 |
| SIMRANDS (t, u as _ $ _, _) = |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
258 |
raise TERM ("SIMPL: operands mismatch", [t, u]) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
259 |
| SIMRANDS (_, _, env) = (env, flexflex, flexrigid); |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
260 |
in |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
261 |
(case (head_of t, head_of u) of |
52220
c4264f71dc3b
backout 3b9c31867707 -- too risky to "amend" modules from 25 years ago that don't handle Vars with different types;
wenzelm
parents:
52179
diff
changeset
|
262 |
(Var (_, T), Var (_, U)) => |
c4264f71dc3b
backout 3b9c31867707 -- too risky to "amend" modules from 25 years ago that don't handle Vars with different types;
wenzelm
parents:
52179
diff
changeset
|
263 |
let |
52221 | 264 |
val T' = Envir.body_type env T and U' = Envir.body_type env U; |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
265 |
val env = unify_types context (T', U') env; |
52220
c4264f71dc3b
backout 3b9c31867707 -- too risky to "amend" modules from 25 years ago that don't handle Vars with different types;
wenzelm
parents:
52179
diff
changeset
|
266 |
in (env, dp :: flexflex, flexrigid) end |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
267 |
| (Var _, _) => |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
268 |
((assignment context (rbinder,t,u) env, flexflex, flexrigid) |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
269 |
handle ASSIGN => (env, flexflex, dp :: flexrigid)) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
270 |
| (_, Var _) => |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
271 |
((assignment context (rbinder, u, t) env, flexflex, flexrigid) |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
272 |
handle ASSIGN => (env, flexflex, (rbinder, u, t) :: flexrigid)) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
273 |
| (Const (a, T), Const (b, U)) => |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
274 |
if a = b then SIMRANDS (t, u, unify_types context (T, U) env) |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
275 |
else raise CANTUNIFY |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
276 |
| (Bound i, Bound j) => |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
277 |
if i = j then SIMRANDS (t, u, env) else raise CANTUNIFY |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
278 |
| (Free (a, T), Free (b, U)) => |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
279 |
if a = b then SIMRANDS (t, u, unify_types context (T, U) env) |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
280 |
else raise CANTUNIFY |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
281 |
| _ => raise CANTUNIFY) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
282 |
end; |
0 | 283 |
|
284 |
||
285 |
(* changed(env,t) checks whether the head of t is a variable assigned in env*) |
|
52126 | 286 |
fun changed env (f $ _) = changed env f |
287 |
| changed env (Var v) = (case Envir.lookup env v of NONE => false | _ => true) |
|
288 |
| changed _ _ = false; |
|
0 | 289 |
|
290 |
||
291 |
(*Recursion needed if any of the 'head variables' have been updated |
|
292 |
Clever would be to re-do just the affected dpairs*) |
|
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
293 |
fun SIMPL context (env,dpairs) : Envir.env * dpair list * dpair list = |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
294 |
let |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
295 |
val all as (env', flexflex, flexrigid) = fold_rev (SIMPL0 context) dpairs (env, [], []); |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
296 |
val dps = flexrigid @ flexflex; |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
297 |
in |
52126 | 298 |
if exists (fn (_, t, u) => changed env' t orelse changed env' u) dps |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
299 |
then SIMPL context (env', dps) else all |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
300 |
end; |
0 | 301 |
|
302 |
||
19864 | 303 |
(*Makes the terms E1,...,Em, where Ts = [T...Tm]. |
0 | 304 |
Each Ei is ?Gi(B.(n-1),...,B.0), and has type Ti |
305 |
The B.j are bound vars of binder. |
|
19864 | 306 |
The terms are not made in eta-normal-form, SIMPL does that later. |
0 | 307 |
If done here, eta-expansion must be recursive in the arguments! *) |
37636 | 308 |
fun make_args _ (_, env, []) = (env, []) (*frequent case*) |
0 | 309 |
| make_args name (binder: typ list, env, Ts) : Envir.env * term list = |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
310 |
let |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
311 |
fun funtype T = binder ---> T; |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
312 |
val (env', vars) = Envir.genvars name (env, map funtype Ts); |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
313 |
in (env', map (fn var => Logic.combound (var, 0, length binder)) vars) end; |
0 | 314 |
|
315 |
||
46219
426ed18eba43
discontinued old-style Term.list_abs in favour of plain Term.abs;
wenzelm
parents:
42279
diff
changeset
|
316 |
(*Abstraction over a list of types*) |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
317 |
fun types_abs ([], u) = u |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
318 |
| types_abs (T :: Ts, u) = Abs ("", T, types_abs (Ts, u)); |
0 | 319 |
|
320 |
(*Abstraction over the binder of a type*) |
|
52221 | 321 |
fun type_abs (env, T, t) = types_abs (Envir.binder_types env T, t); |
0 | 322 |
|
323 |
||
324 |
(*MATCH taking "big steps". |
|
325 |
Copies u into the Var v, using projection on targs or imitation. |
|
326 |
A projection is allowed unless SIMPL raises an exception. |
|
327 |
Allocates new variables in projection on a higher-order argument, |
|
328 |
or if u is a variable (flex-flex dpair). |
|
329 |
Returns long sequence of every way of copying u, for backtracking |
|
330 |
For example, projection in ?b'(?a) may be wrong if other dpairs constrain ?a. |
|
19864 | 331 |
The order for trying projections is crucial in ?b'(?a) |
0 | 332 |
NB "vname" is only used in the call to make_args!! *) |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
333 |
fun matchcopy context vname = |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
334 |
let |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
335 |
fun mc (rbinder, targs, u, ed as (env, dpairs)) : (term * (Envir.env * dpair list)) Seq.seq = |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
336 |
let |
79742
2e4518e8a36b
tuned unify trace option names;
Fabian Huch <huch@in.tum.de>
parents:
79162
diff
changeset
|
337 |
val unify_trace_types = Config.get_generic context unify_trace_types; |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
338 |
(*Produce copies of uarg and cons them in front of uargs*) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
339 |
fun copycons uarg (uargs, (env, dpairs)) = |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
340 |
Seq.map (fn (uarg', ed') => (uarg' :: uargs, ed')) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
341 |
(mc (rbinder, targs,eta_norm env (rbinder, Envir.head_norm env uarg), |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
342 |
(env, dpairs))); |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
343 |
(*Produce sequence of all possible ways of copying the arg list*) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
344 |
fun copyargs [] = Seq.cons ([], ed) Seq.empty |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
345 |
| copyargs (uarg :: uargs) = Seq.maps (copycons uarg) (copyargs uargs); |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
346 |
val (uhead, uargs) = strip_comb u; |
52221 | 347 |
val base = Envir.body_type env (fastype env (rbinder, uhead)); |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
348 |
fun joinargs (uargs', ed') = (list_comb (uhead, uargs'), ed'); |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
349 |
(*attempt projection on argument with given typ*) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
350 |
val Ts = map (curry (fastype env) rbinder) targs; |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
351 |
fun projenv (head, (Us, bary), targ, tail) = |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
352 |
let |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
353 |
val env = |
79742
2e4518e8a36b
tuned unify trace option names;
Fabian Huch <huch@in.tum.de>
parents:
79162
diff
changeset
|
354 |
if unify_trace_types then test_unify_types context (base, bary) env |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
355 |
else unify_types context (base, bary) env |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
356 |
in |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
357 |
Seq.make (fn () => |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
358 |
let |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
359 |
val (env', args) = make_args vname (Ts, env, Us); |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
360 |
(*higher-order projection: plug in targs for bound vars*) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
361 |
fun plugin arg = list_comb (head_of arg, targs); |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
362 |
val dp = (rbinder, list_comb (targ, map plugin args), u); |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
363 |
val (env2, frigid, fflex) = SIMPL context (env', dp :: dpairs); |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
364 |
(*may raise exception CANTUNIFY*) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
365 |
in |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
366 |
SOME ((list_comb (head, args), (env2, frigid @ fflex)), tail) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
367 |
end handle CANTUNIFY => Seq.pull tail) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
368 |
end handle CANTUNIFY => tail; |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
369 |
(*make a list of projections*) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
370 |
fun make_projs (T::Ts, targ::targs) = |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
371 |
(Bound(length Ts), T, targ) :: make_projs (Ts,targs) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
372 |
| make_projs ([],[]) = [] |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
373 |
| make_projs _ = raise TERM ("make_projs", u::targs); |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
374 |
(*try projections and imitation*) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
375 |
fun matchfun ((bvar,T,targ)::projs) = |
52221 | 376 |
(projenv(bvar, Envir.strip_type env T, targ, matchfun projs)) |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
377 |
| matchfun [] = (*imitation last of all*) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
378 |
(case uhead of |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
379 |
Const _ => Seq.map joinargs (copyargs uargs) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
380 |
| Free _ => Seq.map joinargs (copyargs uargs) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
381 |
| _ => Seq.empty) (*if Var, would be a loop!*) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
382 |
in |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
383 |
(case uhead of |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
384 |
Abs (a, T, body) => |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
385 |
Seq.map (fn (body', ed') => (Abs (a, T, body'), ed')) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
386 |
(mc ((a, T) :: rbinder, (map (incr_boundvars 1) targs) @ [Bound 0], body, ed)) |
37636 | 387 |
| Var (w, _) => |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
388 |
(*a flex-flex dpair: make variable for t*) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
389 |
let |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
390 |
val (env', newhd) = Envir.genvar (#1 w) (env, Ts ---> base); |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
391 |
val tabs = Logic.combound (newhd, 0, length Ts); |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
392 |
val tsub = list_comb (newhd, targs); |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
393 |
in Seq.single (tabs, (env', (rbinder, tsub, u) :: dpairs)) end |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
394 |
| _ => matchfun (rev (make_projs (Ts, targs)))) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
395 |
end; |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
396 |
in mc end; |
0 | 397 |
|
398 |
||
399 |
(*Call matchcopy to produce assignments to the variable in the dpair*) |
|
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
400 |
fun MATCH context (env, (rbinder, t, u), dpairs) : (Envir.env * dpair list) Seq.seq = |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
401 |
let |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
402 |
val (Var (vT as (v, T)), targs) = strip_comb t; |
52221 | 403 |
val Ts = Envir.binder_types env T; |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
404 |
fun new_dset (u', (env', dpairs')) = |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
405 |
(*if v was updated to s, must unify s with u' *) |
51700 | 406 |
(case Envir.lookup env' vT of |
407 |
NONE => (Envir.update (vT, types_abs (Ts, u')) env', dpairs') |
|
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
408 |
| SOME s => (env', ([], s, types_abs (Ts, u')) :: dpairs')); |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
409 |
in |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
410 |
Seq.map new_dset (matchcopy context (#1 v) (rbinder, targs, u, (env, dpairs))) |
0 | 411 |
end; |
412 |
||
413 |
||
414 |
||
415 |
(**** Flex-flex processing ****) |
|
416 |
||
19864 | 417 |
(*At end of unification, do flex-flex assignments like ?a -> ?f(?b) |
0 | 418 |
Attempts to update t with u, raising ASSIGN if impossible*) |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
419 |
fun ff_assign context (env, rbinder, t, u) : Envir.env = |
52220
c4264f71dc3b
backout 3b9c31867707 -- too risky to "amend" modules from 25 years ago that don't handle Vars with different types;
wenzelm
parents:
52179
diff
changeset
|
420 |
let val vT as (v, T) = get_eta_var (rbinder, 0, t) in |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
421 |
if occurs_terms (Unsynchronized.ref [], env, v, [u]) then raise ASSIGN |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
422 |
else |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
423 |
let val env = unify_types context (Envir.body_type env T, fastype env (rbinder, u)) env |
52220
c4264f71dc3b
backout 3b9c31867707 -- too risky to "amend" modules from 25 years ago that don't handle Vars with different types;
wenzelm
parents:
52179
diff
changeset
|
424 |
in Envir.vupdate (vT, Logic.rlist_abs (rbinder, u)) env end |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
425 |
end; |
0 | 426 |
|
427 |
||
37720
50a9e2fa4f6b
Unification (flexflex) bug fix; making "auto" deterministic
paulson
parents:
37637
diff
changeset
|
428 |
(*If an argument contains a banned Bound, then it should be deleted. |
50a9e2fa4f6b
Unification (flexflex) bug fix; making "auto" deterministic
paulson
parents:
37637
diff
changeset
|
429 |
But if the only path is flexible, this is difficult; the code gives up! |
67725 | 430 |
In \<lambda>x y. ?a x \<equiv>\<^sup>? \<lambda>x y. ?b (?c y) should we instantiate ?b or ?c *) |
37720
50a9e2fa4f6b
Unification (flexflex) bug fix; making "auto" deterministic
paulson
parents:
37637
diff
changeset
|
431 |
exception CHANGE_FAIL; (*flexible occurrence of banned variable, or other reason to quit*) |
50a9e2fa4f6b
Unification (flexflex) bug fix; making "auto" deterministic
paulson
parents:
37637
diff
changeset
|
432 |
|
50a9e2fa4f6b
Unification (flexflex) bug fix; making "auto" deterministic
paulson
parents:
37637
diff
changeset
|
433 |
|
0 | 434 |
(*Flex argument: a term, its type, and the index that refers to it.*) |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
435 |
type flarg = {t: term, T: typ, j: int}; |
0 | 436 |
|
437 |
(*Form the arguments into records for deletion/sorting.*) |
|
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
438 |
fun flexargs ([], [], []) = [] : flarg list |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
439 |
| flexargs (j :: js, t :: ts, T :: Ts) = {j = j, t = t, T = T} :: flexargs (js, ts, Ts) |
37720
50a9e2fa4f6b
Unification (flexflex) bug fix; making "auto" deterministic
paulson
parents:
37637
diff
changeset
|
440 |
| flexargs _ = raise CHANGE_FAIL; |
41422
8a765db7e0f8
uniform treatment of type vs. term environment (cf. b654fa27fbc4);
wenzelm
parents:
39997
diff
changeset
|
441 |
(*We give up if we see a variable of function type not applied to a full list of |
8a765db7e0f8
uniform treatment of type vs. term environment (cf. b654fa27fbc4);
wenzelm
parents:
39997
diff
changeset
|
442 |
arguments (remember, this code assumes that terms are fully eta-expanded). This situation |
37720
50a9e2fa4f6b
Unification (flexflex) bug fix; making "auto" deterministic
paulson
parents:
37637
diff
changeset
|
443 |
can occur if a type variable is instantiated with a function type. |
50a9e2fa4f6b
Unification (flexflex) bug fix; making "auto" deterministic
paulson
parents:
37637
diff
changeset
|
444 |
*) |
0 | 445 |
|
651
4b0455fbcc49
Pure/Unify/IMPROVING "CLEANING" OF FLEX-FLEX PAIRS: Old code would refuse
lcp
parents:
646
diff
changeset
|
446 |
(*Check whether the 'banned' bound var indices occur rigidly in t*) |
19864 | 447 |
fun rigid_bound (lev, banned) t = |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
448 |
let val (head,args) = strip_comb t in |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
449 |
(case head of |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
450 |
Bound i => |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
451 |
member (op =) banned (i - lev) orelse exists (rigid_bound (lev, banned)) args |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
452 |
| Var _ => false (*no rigid occurrences here!*) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
453 |
| Abs (_, _, u) => |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
454 |
rigid_bound (lev + 1, banned) u orelse |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
455 |
exists (rigid_bound (lev, banned)) args |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
456 |
| _ => exists (rigid_bound (lev, banned)) args) |
0 | 457 |
end; |
458 |
||
651
4b0455fbcc49
Pure/Unify/IMPROVING "CLEANING" OF FLEX-FLEX PAIRS: Old code would refuse
lcp
parents:
646
diff
changeset
|
459 |
(*Squash down indices at level >=lev to delete the banned from a term.*) |
4b0455fbcc49
Pure/Unify/IMPROVING "CLEANING" OF FLEX-FLEX PAIRS: Old code would refuse
lcp
parents:
646
diff
changeset
|
460 |
fun change_bnos banned = |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
461 |
let |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
462 |
fun change lev (Bound i) = |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
463 |
if i < lev then Bound i |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
464 |
else if member (op =) banned (i - lev) then |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
465 |
raise CHANGE_FAIL (**flexible occurrence: give up**) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
466 |
else Bound (i - length (filter (fn j => j < i - lev) banned)) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
467 |
| change lev (Abs (a, T, t)) = Abs (a, T, change(lev + 1) t) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
468 |
| change lev (t $ u) = change lev t $ change lev u |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
469 |
| change lev t = t; |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
470 |
in change 0 end; |
0 | 471 |
|
472 |
(*Change indices, delete the argument if it contains a banned Bound*) |
|
48263 | 473 |
fun change_arg banned {j, t, T} args : flarg list = |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
474 |
if rigid_bound (0, banned) t then args (*delete argument!*) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
475 |
else {j = j, t = change_bnos banned t, T = T} :: args; |
0 | 476 |
|
477 |
||
478 |
(*Sort the arguments to create assignments if possible: |
|
48262
a0d8abca8d7a
back to naive insertion sort before 1997 to accommodate peculiar less_arg relation -- NB: make_ord arg_less was not a quasi-order and thus inappropriate for generic sort (cf. de74b549f976, ecfeff48bf0c);
wenzelm
parents:
46219
diff
changeset
|
479 |
create eta-terms like ?g B.1 B.0*) |
a0d8abca8d7a
back to naive insertion sort before 1997 to accommodate peculiar less_arg relation -- NB: make_ord arg_less was not a quasi-order and thus inappropriate for generic sort (cf. de74b549f976, ecfeff48bf0c);
wenzelm
parents:
46219
diff
changeset
|
480 |
local |
a0d8abca8d7a
back to naive insertion sort before 1997 to accommodate peculiar less_arg relation -- NB: make_ord arg_less was not a quasi-order and thus inappropriate for generic sort (cf. de74b549f976, ecfeff48bf0c);
wenzelm
parents:
46219
diff
changeset
|
481 |
fun less_arg ({t = Bound i1, ...}, {t = Bound i2, ...}) = (i2 < i1) |
a0d8abca8d7a
back to naive insertion sort before 1997 to accommodate peculiar less_arg relation -- NB: make_ord arg_less was not a quasi-order and thus inappropriate for generic sort (cf. de74b549f976, ecfeff48bf0c);
wenzelm
parents:
46219
diff
changeset
|
482 |
| less_arg (_: flarg, _: flarg) = false; |
a0d8abca8d7a
back to naive insertion sort before 1997 to accommodate peculiar less_arg relation -- NB: make_ord arg_less was not a quasi-order and thus inappropriate for generic sort (cf. de74b549f976, ecfeff48bf0c);
wenzelm
parents:
46219
diff
changeset
|
483 |
|
a0d8abca8d7a
back to naive insertion sort before 1997 to accommodate peculiar less_arg relation -- NB: make_ord arg_less was not a quasi-order and thus inappropriate for generic sort (cf. de74b549f976, ecfeff48bf0c);
wenzelm
parents:
46219
diff
changeset
|
484 |
fun ins_arg x [] = [x] |
a0d8abca8d7a
back to naive insertion sort before 1997 to accommodate peculiar less_arg relation -- NB: make_ord arg_less was not a quasi-order and thus inappropriate for generic sort (cf. de74b549f976, ecfeff48bf0c);
wenzelm
parents:
46219
diff
changeset
|
485 |
| ins_arg x (y :: ys) = |
a0d8abca8d7a
back to naive insertion sort before 1997 to accommodate peculiar less_arg relation -- NB: make_ord arg_less was not a quasi-order and thus inappropriate for generic sort (cf. de74b549f976, ecfeff48bf0c);
wenzelm
parents:
46219
diff
changeset
|
486 |
if less_arg (y, x) then y :: ins_arg x ys else x :: y :: ys; |
a0d8abca8d7a
back to naive insertion sort before 1997 to accommodate peculiar less_arg relation -- NB: make_ord arg_less was not a quasi-order and thus inappropriate for generic sort (cf. de74b549f976, ecfeff48bf0c);
wenzelm
parents:
46219
diff
changeset
|
487 |
in |
a0d8abca8d7a
back to naive insertion sort before 1997 to accommodate peculiar less_arg relation -- NB: make_ord arg_less was not a quasi-order and thus inappropriate for generic sort (cf. de74b549f976, ecfeff48bf0c);
wenzelm
parents:
46219
diff
changeset
|
488 |
fun sort_args [] = [] |
a0d8abca8d7a
back to naive insertion sort before 1997 to accommodate peculiar less_arg relation -- NB: make_ord arg_less was not a quasi-order and thus inappropriate for generic sort (cf. de74b549f976, ecfeff48bf0c);
wenzelm
parents:
46219
diff
changeset
|
489 |
| sort_args (x :: xs) = ins_arg x (sort_args xs); |
a0d8abca8d7a
back to naive insertion sort before 1997 to accommodate peculiar less_arg relation -- NB: make_ord arg_less was not a quasi-order and thus inappropriate for generic sort (cf. de74b549f976, ecfeff48bf0c);
wenzelm
parents:
46219
diff
changeset
|
490 |
end; |
0 | 491 |
|
492 |
(*Test whether the new term would be eta-equivalent to a variable -- |
|
493 |
if so then there is no point in creating a new variable*) |
|
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
494 |
fun decreasing n ([]: flarg list) = (n = 0) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
495 |
| decreasing n ({j, ...} :: args) = j = n - 1 andalso decreasing (n - 1) args; |
0 | 496 |
|
497 |
(*Delete banned indices in the term, simplifying it. |
|
498 |
Force an assignment, if possible, by sorting the arguments. |
|
499 |
Update its head; squash indices in arguments. *) |
|
500 |
fun clean_term banned (env,t) = |
|
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
501 |
let |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
502 |
val (Var (v, T), ts) = strip_comb t; |
52221 | 503 |
val (Ts, U) = Envir.strip_type env T |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
504 |
and js = length ts - 1 downto 0; |
48263 | 505 |
val args = sort_args (fold_rev (change_arg banned) (flexargs (js, ts, Ts)) []) |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
506 |
val ts' = map #t args; |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
507 |
in |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
508 |
if decreasing (length Ts) args then (env, (list_comb (Var (v, T), ts'))) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
509 |
else |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
510 |
let |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
511 |
val (env', v') = Envir.genvar (#1 v) (env, map #T args ---> U); |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
512 |
val body = list_comb (v', map (Bound o #j) args); |
51700 | 513 |
val env2 = Envir.vupdate ((v, T), types_abs (Ts, body)) env'; |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
514 |
(*the vupdate affects ts' if they contain v*) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
515 |
in (env2, Envir.norm_term env2 (list_comb (v', ts'))) end |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
516 |
end; |
0 | 517 |
|
518 |
||
519 |
(*Add tpair if not trivial or already there. |
|
520 |
Should check for swapped pairs??*) |
|
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
521 |
fun add_tpair (rbinder, (t0, u0), tpairs) : (term * term) list = |
19864 | 522 |
if t0 aconv u0 then tpairs |
0 | 523 |
else |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
524 |
let |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
525 |
val t = Logic.rlist_abs (rbinder, t0) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
526 |
and u = Logic.rlist_abs (rbinder, u0); |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
527 |
fun same (t', u') = (t aconv t') andalso (u aconv u') |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
528 |
in if exists same tpairs then tpairs else (t, u) :: tpairs end; |
0 | 529 |
|
530 |
||
531 |
(*Simplify both terms and check for assignments. |
|
532 |
Bound vars in the binder are "banned" unless used in both t AND u *) |
|
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
533 |
fun clean_ffpair context ((rbinder, t, u), (env, tpairs)) = |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
534 |
let |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
535 |
val loot = loose_bnos t and loou = loose_bnos u |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
536 |
fun add_index (j, (a, T)) (bnos, newbinder) = |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
537 |
if member (op =) loot j andalso member (op =) loou j |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
538 |
then (bnos, (a, T) :: newbinder) (*needed by both: keep*) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
539 |
else (j :: bnos, newbinder); (*remove*) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
540 |
val (banned, rbin') = fold_rev add_index ((0 upto (length rbinder - 1)) ~~ rbinder) ([], []); |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
541 |
val (env', t') = clean_term banned (env, t); |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
542 |
val (env'',u') = clean_term banned (env',u); |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
543 |
in |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
544 |
(ff_assign context (env'', rbin', t', u'), tpairs) |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
545 |
handle ASSIGN => |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
546 |
(ff_assign context (env'', rbin', u', t'), tpairs) |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
547 |
handle ASSIGN => (env'', add_tpair (rbin', (t', u'), tpairs)) |
0 | 548 |
end |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
549 |
handle CHANGE_FAIL => (env, add_tpair (rbinder, (t, u), tpairs)); |
0 | 550 |
|
551 |
||
552 |
(*IF the flex-flex dpair is an assignment THEN do it ELSE put in tpairs |
|
553 |
eliminates trivial tpairs like t=t, as well as repeated ones |
|
19864 | 554 |
trivial tpairs can easily escape SIMPL: ?A=t, ?A=?B, ?B=t gives t=t |
0 | 555 |
Resulting tpairs MAY NOT be in normal form: assignments may occur here.*) |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
556 |
fun add_ffpair context (rbinder,t0,u0) (env,tpairs) : Envir.env * (term * term) list = |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
557 |
let |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
558 |
val t = Envir.norm_term env t0 |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
559 |
and u = Envir.norm_term env u0; |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
560 |
in |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
561 |
(case (head_of t, head_of u) of |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
562 |
(Var (v, T), Var (w, U)) => (*Check for identical variables...*) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
563 |
if Term.eq_ix (v, w) then (*...occur check would falsely return true!*) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
564 |
if T = U then (env, add_tpair (rbinder, (t, u), tpairs)) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
565 |
else raise TERM ("add_ffpair: Var name confusion", [t, u]) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
566 |
else if Term_Ord.indexname_ord (v, w) = LESS then (*prefer to update the LARGER variable*) |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
567 |
clean_ffpair context ((rbinder, u, t), (env, tpairs)) |
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
568 |
else clean_ffpair context ((rbinder, t, u), (env, tpairs)) |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
569 |
| _ => raise TERM ("add_ffpair: Vars expected", [t, u])) |
0 | 570 |
end; |
571 |
||
572 |
||
573 |
(*Print a tracing message + list of dpairs. |
|
67721 | 574 |
In t \<equiv> u print u first because it may be rigid or flexible -- |
0 | 575 |
t is always flexible.*) |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
576 |
fun print_dpairs context msg (env, dpairs) = |
79743
3648e9c88d0c
add option for unify trace (now disabled by default as printing is excessive and rarely used);
Fabian Huch <huch@in.tum.de>
parents:
79742
diff
changeset
|
577 |
let |
3648e9c88d0c
add option for unify trace (now disabled by default as printing is excessive and rarely used);
Fabian Huch <huch@in.tum.de>
parents:
79742
diff
changeset
|
578 |
fun pdp (rbinder, t, u) = |
3648e9c88d0c
add option for unify trace (now disabled by default as printing is excessive and rarely used);
Fabian Huch <huch@in.tum.de>
parents:
79742
diff
changeset
|
579 |
let |
3648e9c88d0c
add option for unify trace (now disabled by default as printing is excessive and rarely used);
Fabian Huch <huch@in.tum.de>
parents:
79742
diff
changeset
|
580 |
val ctxt = Context.proof_of context; |
3648e9c88d0c
add option for unify trace (now disabled by default as printing is excessive and rarely used);
Fabian Huch <huch@in.tum.de>
parents:
79742
diff
changeset
|
581 |
fun termT t = |
3648e9c88d0c
add option for unify trace (now disabled by default as printing is excessive and rarely used);
Fabian Huch <huch@in.tum.de>
parents:
79742
diff
changeset
|
582 |
Syntax.pretty_term ctxt (Envir.norm_term env (Logic.rlist_abs (rbinder, t))); |
80328 | 583 |
in Pretty.string_of (Pretty.block0 [termT u, Pretty.str " \<equiv>\<^sup>?", Pretty.brk 1, termT t]) end; |
79743
3648e9c88d0c
add option for unify trace (now disabled by default as printing is excessive and rarely used);
Fabian Huch <huch@in.tum.de>
parents:
79742
diff
changeset
|
584 |
in |
3648e9c88d0c
add option for unify trace (now disabled by default as printing is excessive and rarely used);
Fabian Huch <huch@in.tum.de>
parents:
79742
diff
changeset
|
585 |
cond_tracing context (fn () => msg); |
3648e9c88d0c
add option for unify trace (now disabled by default as printing is excessive and rarely used);
Fabian Huch <huch@in.tum.de>
parents:
79742
diff
changeset
|
586 |
List.app (fn dp => cond_tracing context (fn () => pdp dp)) dpairs |
3648e9c88d0c
add option for unify trace (now disabled by default as printing is excessive and rarely used);
Fabian Huch <huch@in.tum.de>
parents:
79742
diff
changeset
|
587 |
end; |
0 | 588 |
|
589 |
||
590 |
(*Unify the dpairs in the environment. |
|
19864 | 591 |
Returns flex-flex disagreement pairs NOT IN normal form. |
0 | 592 |
SIMPL may raise exception CANTUNIFY. *) |
78652
3c57995c255c
allow higher-order unification of open terms (reviewed by Larry Paulson)
Kevin Kappelmann <kevin.kappelmann@tum.de>
parents:
69575
diff
changeset
|
593 |
fun hounifiers binders (context, env, tus : (term * term) list) |
3c57995c255c
allow higher-order unification of open terms (reviewed by Larry Paulson)
Kevin Kappelmann <kevin.kappelmann@tum.de>
parents:
69575
diff
changeset
|
594 |
: (Envir.env * (term * term) list) Seq.seq = |
24178
4ff1dc2aa18d
turned Unify flags into configuration options (global only);
wenzelm
parents:
23178
diff
changeset
|
595 |
let |
79742
2e4518e8a36b
tuned unify trace option names;
Fabian Huch <huch@in.tum.de>
parents:
79162
diff
changeset
|
596 |
val unify_trace_bound = Config.get_generic context unify_trace_bound; |
2e4518e8a36b
tuned unify trace option names;
Fabian Huch <huch@in.tum.de>
parents:
79162
diff
changeset
|
597 |
val unify_trace_simp = Config.get_generic context unify_trace_simp; |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
598 |
val search_bound = Config.get_generic context search_bound; |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
599 |
fun add_unify tdepth ((env, dpairs), reseq) = |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
600 |
Seq.make (fn () => |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
601 |
let |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
602 |
val (env', flexflex, flexrigid) = |
79742
2e4518e8a36b
tuned unify trace option names;
Fabian Huch <huch@in.tum.de>
parents:
79162
diff
changeset
|
603 |
(if tdepth > unify_trace_bound andalso unify_trace_simp |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
604 |
then print_dpairs context "Enter SIMPL" (env, dpairs) else (); |
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
605 |
SIMPL context (env, dpairs)); |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
606 |
in |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
607 |
(case flexrigid of |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
608 |
[] => SOME (fold_rev (add_ffpair context) flexflex (env', []), reseq) |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
609 |
| dp :: frigid' => |
52698 | 610 |
if tdepth > search_bound then |
79743
3648e9c88d0c
add option for unify trace (now disabled by default as printing is excessive and rarely used);
Fabian Huch <huch@in.tum.de>
parents:
79742
diff
changeset
|
611 |
(if Context_Position.is_visible_generic context then |
3648e9c88d0c
add option for unify trace (now disabled by default as printing is excessive and rarely used);
Fabian Huch <huch@in.tum.de>
parents:
79742
diff
changeset
|
612 |
warning "Unification bound exceeded -- see unify trace for details" |
3648e9c88d0c
add option for unify trace (now disabled by default as printing is excessive and rarely used);
Fabian Huch <huch@in.tum.de>
parents:
79742
diff
changeset
|
613 |
else (); Seq.pull reseq) |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
614 |
else |
79742
2e4518e8a36b
tuned unify trace option names;
Fabian Huch <huch@in.tum.de>
parents:
79162
diff
changeset
|
615 |
(if tdepth > unify_trace_bound then |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
616 |
print_dpairs context "Enter MATCH" (env',flexrigid@flexflex) |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
617 |
else (); |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
618 |
Seq.pull (Seq.it_right |
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
619 |
(add_unify (tdepth + 1)) (MATCH context (env',dp, frigid'@flexflex), reseq)))) |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
620 |
end |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
621 |
handle CANTUNIFY => |
79743
3648e9c88d0c
add option for unify trace (now disabled by default as printing is excessive and rarely used);
Fabian Huch <huch@in.tum.de>
parents:
79742
diff
changeset
|
622 |
(if tdepth > unify_trace_bound |
3648e9c88d0c
add option for unify trace (now disabled by default as printing is excessive and rarely used);
Fabian Huch <huch@in.tum.de>
parents:
79742
diff
changeset
|
623 |
then cond_tracing context (fn () => "Failure node") |
52701
51dfdcd88e84
guard unify tracing via visible status of global theory;
wenzelm
parents:
52698
diff
changeset
|
624 |
else (); Seq.pull reseq)); |
78652
3c57995c255c
allow higher-order unification of open terms (reviewed by Larry Paulson)
Kevin Kappelmann <kevin.kappelmann@tum.de>
parents:
69575
diff
changeset
|
625 |
val dps = map (fn (t, u) => (binders, t, u)) tus; |
16425
2427be27cc60
accomodate identification of type Sign.sg and theory;
wenzelm
parents:
15797
diff
changeset
|
626 |
in add_unify 1 ((env, dps), Seq.empty) end; |
0 | 627 |
|
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
628 |
fun unifiers (params as (context, env, tus)) = |
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
629 |
Seq.cons (fold (Pattern.unify context) tus env, []) Seq.empty |
16425
2427be27cc60
accomodate identification of type Sign.sg and theory;
wenzelm
parents:
15797
diff
changeset
|
630 |
handle Pattern.Unif => Seq.empty |
78652
3c57995c255c
allow higher-order unification of open terms (reviewed by Larry Paulson)
Kevin Kappelmann <kevin.kappelmann@tum.de>
parents:
69575
diff
changeset
|
631 |
| Pattern.Pattern => hounifiers [] params; |
0 | 632 |
|
633 |
||
634 |
(*For smash_flexflex1*) |
|
635 |
fun var_head_of (env,t) : indexname * typ = |
|
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
636 |
(case head_of (strip_abs_body (Envir.norm_term env t)) of |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
637 |
Var (v, T) => (v, T) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
638 |
| _ => raise CANTUNIFY); (*not flexible, cannot use trivial substitution*) |
0 | 639 |
|
640 |
||
641 |
(*Eliminate a flex-flex pair by the trivial substitution, see Huet (1975) |
|
67721 | 642 |
Unifies ?f t1 ... rm with ?g u1 ... un by ?f -> \<lambda>x1...xm. ?a, ?g -> \<lambda>x1...xn. ?a |
643 |
Unfortunately, unifies ?f t u with ?g t u by ?f, ?g -> \<lambda>x y. ?a, |
|
19864 | 644 |
though just ?g->?f is a more general unifier. |
0 | 645 |
Unlike Huet (1975), does not smash together all variables of same type -- |
646 |
requires more work yet gives a less general unifier (fewer variables). |
|
67721 | 647 |
Handles ?f t1 ... rm with ?f u1 ... um to avoid multiple updates. *) |
48263 | 648 |
fun smash_flexflex1 (t, u) env : Envir.env = |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
649 |
let |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
650 |
val vT as (v, T) = var_head_of (env, t) |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
651 |
and wU as (w, U) = var_head_of (env, u); |
52221 | 652 |
val (env', var) = Envir.genvar (#1 v) (env, Envir.body_type env T); |
51700 | 653 |
val env'' = Envir.vupdate (wU, type_abs (env', U, var)) env'; |
37635
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
654 |
in |
484efa650907
recovered some indentation from the depths of time;
wenzelm
parents:
36787
diff
changeset
|
655 |
if vT = wU then env'' (*the other update would be identical*) |
51700 | 656 |
else Envir.vupdate (vT, type_abs (env', T, var)) env'' |
0 | 657 |
end; |
658 |
||
659 |
||
660 |
(*Smash all flex-flexpairs. Should allow selection of pairs by a predicate?*) |
|
37636 | 661 |
fun smash_flexflex (env, tpairs) : Envir.env = |
48263 | 662 |
fold_rev smash_flexflex1 tpairs env; |
0 | 663 |
|
664 |
(*Returns unifiers with no remaining disagreement pairs*) |
|
58950
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
665 |
fun smash_unifiers context tus env = |
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
wenzelm
parents:
56438
diff
changeset
|
666 |
Seq.map smash_flexflex (unifiers (context, env, tus)); |
0 | 667 |
|
668 |
end; |