1274
|
1 |
theory Lift
|
2015
|
2 |
imports "../Nominal-General/Nominal2_Atoms"
|
|
3 |
"../Nominal-General/Nominal2_Eqvt"
|
|
4 |
"../Nominal-General/Nominal2_Supp"
|
2296
|
5 |
"Abs" "Perm" "Rsp"
|
1274
|
6 |
begin
|
|
7 |
|
1316
0577afdb1732
Porting from Lift to Parser; until defining the Quotient type.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
|
8 |
ML {*
|
1681
|
9 |
fun define_quotient_types binds tys alphas equivps ctxt =
|
1656
|
10 |
let
|
1681
|
11 |
fun def_ty ((b, ty), (alpha, equivp)) ctxt =
|
2325
|
12 |
Quotient_Type.add_quotient_type ((([], b, NoSyn), (ty, alpha, false)), equivp) ctxt;
|
1681
|
13 |
val alpha_equivps = List.take (equivps, length alphas)
|
2335
|
14 |
val (qinfo, ctxt') = fold_map def_ty ((binds ~~ tys) ~~ (alphas ~~ alpha_equivps)) ctxt;
|
|
15 |
val qtys = map #qtyp qinfo;
|
1656
|
16 |
in
|
1681
|
17 |
(qtys, ctxt')
|
1656
|
18 |
end
|
|
19 |
*}
|
|
20 |
|
|
21 |
(* Renames schematic variables in a theorem *)
|
|
22 |
ML {*
|
1498
|
23 |
fun rename_vars fnctn thm =
|
|
24 |
let
|
|
25 |
val vars = Term.add_vars (prop_of thm) []
|
|
26 |
val nvars = map (Var o ((apfst o apfst) fnctn)) vars
|
|
27 |
in
|
|
28 |
Thm.certify_instantiate ([], (vars ~~ nvars)) thm
|
|
29 |
end
|
|
30 |
*}
|
|
31 |
|
|
32 |
ML {*
|
|
33 |
fun un_raws name =
|
1494
923413256cbb
Clean 'Lift', start working only on exported things in Parser.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
|
34 |
let
|
923413256cbb
Clean 'Lift', start working only on exported things in Parser.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
|
35 |
fun un_raw name = unprefix "_raw" name handle Fail _ => name
|
923413256cbb
Clean 'Lift', start working only on exported things in Parser.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
|
36 |
fun add_under names = hd names :: (map (prefix "_") (tl names))
|
1498
|
37 |
in
|
|
38 |
implode (map un_raw (add_under (space_explode "_" name)))
|
|
39 |
end
|
|
40 |
*}
|
|
41 |
|
|
42 |
(* Similar to Tools/IsaPlanner/rw_tools.ML *)
|
|
43 |
ML {*
|
|
44 |
fun rename_term_bvars (Abs(s, ty, t)) = (Abs(un_raws s, ty, rename_term_bvars t))
|
|
45 |
| rename_term_bvars (a $ b) = (rename_term_bvars a) $ (rename_term_bvars b)
|
|
46 |
| rename_term_bvars x = x;
|
|
47 |
|
|
48 |
fun rename_thm_bvars th =
|
|
49 |
let
|
|
50 |
val t = Thm.prop_of th
|
|
51 |
in
|
|
52 |
Thm.rename_boundvars t (rename_term_bvars t) th
|
|
53 |
end;
|
|
54 |
*}
|
|
55 |
|
|
56 |
ML {*
|
1683
f78c820f67c3
Automatically lift theorems and constants only using the new quotient types. Requires new Isabelle.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
|
57 |
fun lift_thm qtys ctxt thm =
|
1498
|
58 |
let
|
1494
923413256cbb
Clean 'Lift', start working only on exported things in Parser.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
|
59 |
val un_raw_names = rename_vars un_raws
|
923413256cbb
Clean 'Lift', start working only on exported things in Parser.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
|
60 |
in
|
1683
f78c820f67c3
Automatically lift theorems and constants only using the new quotient types. Requires new Isabelle.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
|
61 |
rename_thm_bvars (un_raw_names (Quotient_Tacs.lifted qtys ctxt thm))
|
1494
923413256cbb
Clean 'Lift', start working only on exported things in Parser.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
|
62 |
end
|
1276
3365fce80f0f
To call quotient it is enough to export the alpha frees to proper constants and their respective equivp theorems.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
|
63 |
*}
|
1274
|
64 |
|
1280
|
65 |
end
|
1274
|
66 |
|