1274
|
1 |
theory Lift
|
1494
923413256cbb
Clean 'Lift', start working only on exported things in Parser.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
|
2 |
imports "Nominal2_Atoms" "Nominal2_Eqvt" "Nominal2_Supp" "Abs" "Perm" "Fv" "Rsp"
|
1274
|
3 |
begin
|
|
4 |
|
1681
|
5 |
|
1316
0577afdb1732
Porting from Lift to Parser; until defining the Quotient type.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
|
6 |
ML {*
|
1681
|
7 |
fun define_quotient_types binds tys alphas equivps ctxt =
|
1656
|
8 |
let
|
1681
|
9 |
fun def_ty ((b, ty), (alpha, equivp)) ctxt =
|
|
10 |
Quotient_Type.add_quotient_type ((([], b, NoSyn), (ty, alpha)), equivp) ctxt;
|
|
11 |
val alpha_equivps = List.take (equivps, length alphas)
|
|
12 |
val (thms, ctxt') = fold_map def_ty ((binds ~~ tys) ~~ (alphas ~~ alpha_equivps)) ctxt;
|
|
13 |
val quot_thms = map fst thms;
|
|
14 |
val quots = map (HOLogic.dest_Trueprop o prop_of) quot_thms;
|
|
15 |
val reps = map (hd o rev o snd o strip_comb) quots;
|
|
16 |
val qtys = map (domain_type o fastype_of) reps;
|
1656
|
17 |
in
|
1681
|
18 |
(qtys, ctxt')
|
1656
|
19 |
end
|
|
20 |
*}
|
|
21 |
|
|
22 |
(* Renames schematic variables in a theorem *)
|
|
23 |
ML {*
|
1498
|
24 |
fun rename_vars fnctn thm =
|
|
25 |
let
|
|
26 |
val vars = Term.add_vars (prop_of thm) []
|
|
27 |
val nvars = map (Var o ((apfst o apfst) fnctn)) vars
|
|
28 |
in
|
|
29 |
Thm.certify_instantiate ([], (vars ~~ nvars)) thm
|
|
30 |
end
|
|
31 |
*}
|
|
32 |
|
|
33 |
ML {*
|
|
34 |
fun un_raws name =
|
1494
923413256cbb
Clean 'Lift', start working only on exported things in Parser.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
|
35 |
let
|
923413256cbb
Clean 'Lift', start working only on exported things in Parser.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
|
36 |
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
|
37 |
fun add_under names = hd names :: (map (prefix "_") (tl names))
|
1498
|
38 |
in
|
|
39 |
implode (map un_raw (add_under (space_explode "_" name)))
|
|
40 |
end
|
|
41 |
*}
|
|
42 |
|
|
43 |
(* Similar to Tools/IsaPlanner/rw_tools.ML *)
|
|
44 |
ML {*
|
|
45 |
fun rename_term_bvars (Abs(s, ty, t)) = (Abs(un_raws s, ty, rename_term_bvars t))
|
|
46 |
| rename_term_bvars (a $ b) = (rename_term_bvars a) $ (rename_term_bvars b)
|
|
47 |
| rename_term_bvars x = x;
|
|
48 |
|
|
49 |
fun rename_thm_bvars th =
|
|
50 |
let
|
|
51 |
val t = Thm.prop_of th
|
|
52 |
in
|
|
53 |
Thm.rename_boundvars t (rename_term_bvars t) th
|
|
54 |
end;
|
|
55 |
*}
|
|
56 |
|
|
57 |
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
|
58 |
fun lift_thm qtys ctxt thm =
|
1498
|
59 |
let
|
1494
923413256cbb
Clean 'Lift', start working only on exported things in Parser.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
|
60 |
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
|
61 |
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
|
62 |
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
|
63 |
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
|
64 |
*}
|
1274
|
65 |
|
1494
923413256cbb
Clean 'Lift', start working only on exported things in Parser.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
|
66 |
ML {*
|
1497
|
67 |
fun define_fv_alpha_export dt binds bns ctxt =
|
|
68 |
let
|
1553
4355eb3b7161
Automatically derive support for datatypes with at-most one binding per constructor.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
|
69 |
val ((((fv_ts_loc, fv_def_loc), ord_fv_ts_loc), alpha), ctxt') =
|
1497
|
70 |
define_fv_alpha dt binds bns ctxt;
|
|
71 |
val alpha_ts_loc = #preds alpha
|
|
72 |
val alpha_induct_loc = #induct alpha
|
|
73 |
val alpha_intros_loc = #intrs alpha;
|
|
74 |
val alpha_cases_loc = #elims alpha
|
|
75 |
val morphism = ProofContext.export_morphism ctxt' ctxt;
|
|
76 |
val fv_ts = map (Morphism.term morphism) fv_ts_loc;
|
1553
4355eb3b7161
Automatically derive support for datatypes with at-most one binding per constructor.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
|
77 |
val ord_fv_ts = map (Morphism.term morphism) ord_fv_ts_loc;
|
1497
|
78 |
val fv_def = Morphism.fact morphism fv_def_loc;
|
|
79 |
val alpha_ts = map (Morphism.term morphism) alpha_ts_loc;
|
|
80 |
val alpha_induct = Morphism.thm morphism alpha_induct_loc;
|
|
81 |
val alpha_intros = Morphism.fact morphism alpha_intros_loc
|
|
82 |
val alpha_cases = Morphism.fact morphism alpha_cases_loc
|
|
83 |
in
|
1553
4355eb3b7161
Automatically derive support for datatypes with at-most one binding per constructor.
Cezary Kaliszyk <kaliszyk@in.tum.de>
diff
changeset
|
84 |
((((fv_ts, ord_fv_ts), fv_def), ((alpha_ts, alpha_intros), (alpha_cases, alpha_induct))), ctxt')
|
1497
|
85 |
end;
|
|
86 |
*}
|
|
87 |
|
1280
|
88 |
end
|
1274
|
89 |
|