--- a/Nominal/Parser.thy Thu Mar 04 12:00:11 2010 +0100
+++ b/Nominal/Parser.thy Thu Mar 04 15:15:44 2010 +0100
@@ -212,6 +212,8 @@
ML {*
fun nominal_datatype2 dts bn_funs bn_eqs binds lthy =
let
+ val thy = ProofContext.theory_of lthy
+ val thy_name = Context.theory_name thy
val (((raw_dt_names, (raw_bn_funs_loc, raw_bn_eqs_loc)), raw_binds), lthy2) =
raw_nominal_decls dts bn_funs bn_eqs binds lthy
val morphism_2_1 = ProofContext.export_morphism lthy2 lthy
@@ -233,8 +235,12 @@
val (((fv_ts_loc, fv_def_loc), alpha), lthy4) = define_fv_alpha dtinfo raw_binds_flat lthy3;
val alpha_ts_loc = #preds alpha
val morphism_4_3 = ProofContext.export_morphism lthy4 lthy3;
+ val fv_ts = map (Morphism.term morphism_4_3) fv_ts_loc;
val alpha_ts = map (Morphism.term morphism_4_3) alpha_ts_loc;
val alpha_induct_loc = #induct alpha
+ val [alpha_induct] = ProofContext.export lthy4 lthy3 [alpha_induct_loc];
+ val alpha_inducts = Project_Rule.projects lthy4 (1 upto (length dts)) alpha_induct
+ val fv_def = ProofContext.export lthy4 lthy3 fv_def_loc;
val dts_names = map (fn (i, (s, _, _)) => (s, i)) (#descr dtinfo);
val bn_tys = map (domain_type o fastype_of) raw_bn_funs;
val bn_nos = map (dtyp_no_of_typ dts_names) bn_tys;
@@ -242,6 +248,7 @@
val alpha_intros = #intrs alpha;
val alpha_cases = #elims alpha
val alpha_inj_loc = build_alpha_inj alpha_intros (inject @ distinct) alpha_cases lthy4
+ val alpha_inj = ProofContext.export lthy4 lthy3 alpha_inj_loc
val (bv_eqvts, lthy5) = fold_map (build_bv_eqvt perms (raw_bn_eqs @ raw_perm_def) inducts) bns lthy4;
val (fv_eqvts, lthy6) = build_eqvts Binding.empty fv_ts_loc perms
((flat (map snd bv_eqvts)) @ fv_def_loc @ raw_perm_def) induct lthy5;
@@ -251,15 +258,54 @@
val alpha_equivp_loc = build_equivps alpha_ts_loc induct alpha_induct_loc
inject alpha_inj_loc distinct alpha_cases alpha_eqvt_loc lthy6;
val alpha_equivp = ProofContext.export lthy6 lthy2 alpha_equivp_loc;
- val qty_names = map (fn (_, b, _, _) => b) dts;
+ val qty_binds = map (fn (_, b, _, _) => b) dts;
+ val qty_names = map Name.of_binding qty_binds;
+ val qty_full_names = map (Long_Name.qualify thy_name) qty_names
val lthy7 = define_quotient_type
- (map (fn ((b, t), alpha) => (([], b, NoSyn), (t, alpha))) ((qty_names ~~ all_typs) ~~ alpha_ts))
+ (map (fn ((b, t), alpha) => (([], b, NoSyn), (t, alpha))) ((qty_binds ~~ all_typs) ~~ alpha_ts))
(ALLGOALS (resolve_tac alpha_equivp)) lthy6;
+ val const_names = map Name.of_binding (flat (map (fn (_, _, _, t) => map (fn (b, _, _) => b) t) dts));
+ val raw_consts =
+ flat (map (fn (i, (_, _, l)) =>
+ map (fn (cname, dts) =>
+ Const (cname, map (typ_of_dtyp descr sorts) dts --->
+ typ_of_dtyp descr sorts (DtRec i))) l) descr);
+ val (consts_defs, lthy8) = fold_map Quotient_Def.quotient_lift_const (const_names ~~ raw_consts) lthy7;
+ val (consts, const_defs) = split_list consts_defs;
+ val (bns_rsp_pre, lthy9) = fold_map (
+ fn (bn_t, i) => prove_const_rsp Binding.empty [bn_t]
+ (fn _ => fvbv_rsp_tac (nth alpha_inducts i) raw_bn_eqs 1)) bns lthy8;
+ val bns_rsp = flat (map snd bns_rsp_pre);
+ val ((_, fv_rsp), lthy10) = prove_const_rsp Binding.empty fv_ts
+ (fn _ => fvbv_rsp_tac alpha_induct fv_def 1) lthy9;
+ val (const_rsps, lthy11) = fold_map (fn cnst => prove_const_rsp Binding.empty [cnst]
+ (fn _ => constr_rsp_tac alpha_inj (fv_rsp @ bns_rsp) alpha_equivp 1)) raw_consts lthy10
+ val (perms_rsp, lthy12) = prove_const_rsp Binding.empty perms
+ (fn _ => asm_simp_tac (HOL_ss addsimps alpha_eqvt) 1) lthy11;
+ val qfv_names = map (fn x => "fv_" ^ x) qty_names
+ val (qfv_defs, lthy12a) = fold_map Quotient_Def.quotient_lift_const (qfv_names ~~ fv_ts) lthy12;
+ val qbn_names = map (fn (b, _ , _) => Name.of_binding b) bn_funs
+ val (qbn_defs, lthy12b) = fold_map Quotient_Def.quotient_lift_const (qbn_names ~~ raw_bn_funs) lthy12a;
+ val thy = Local_Theory.exit_global lthy12b;
+ val perm_names = map (fn x => "permute_" ^ x) qty_names
+ val thy' = define_lifted_perms qty_full_names (perm_names ~~ perms) raw_perm_simps thy;
+ val lthy13 = Theory_Target.init NONE thy';
+ val q_name = space_implode "_" qty_names;
+ val q_induct = snd (Quotient_Tacs.lifted_attrib (Context.Proof lthy13, induct));
+ val (_, lthy14) = Local_Theory.note ((Binding.name (q_name ^ "_induct"), []), [q_induct]) lthy13;
+ val q_perm = map (fn th => snd (Quotient_Tacs.lifted_attrib (Context.Proof lthy14, th))) raw_perm_def;
+ val (_, lthy15) = Local_Theory.note ((Binding.name (q_name ^ "_perm"), []), q_perm) lthy14;
+ val q_fv = map (fn th => snd (Quotient_Tacs.lifted_attrib (Context.Proof lthy15, th))) fv_def;
+ val (_, lthy16) = Local_Theory.note ((Binding.name (q_name ^ "_fv"), []), q_fv) lthy15;
+ val q_bn = map (fn th => snd (Quotient_Tacs.lifted_attrib (Context.Proof lthy16, th))) raw_bn_eqs;
+ val (_, lthy17) = Local_Theory.note ((Binding.name (q_name ^ "_bn"), []), q_bn) lthy16;
in
- ((raw_dt_names, raw_bn_funs, raw_bn_eqs, raw_binds), lthy7)
+ ((raw_dt_names, raw_bn_funs, raw_bn_eqs, raw_binds), lthy17)
end
*}
+ML name_of_typ
+
ML {*
(* parsing the datatypes and declaring *)
(* constructors in the local theory *)