| author | wenzelm | 
| Mon, 27 Feb 2012 16:05:51 +0100 | |
| changeset 46709 | 65a9b30bff00 | 
| parent 45929 | d7d6c8cfb6f6 | 
| child 46909 | 3c73a121a387 | 
| permissions | -rw-r--r-- | 
| 37744 | 1 | (* Title: HOL/Tools/Quotient/quotient_def.ML | 
| 35222 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 2 | Author: Cezary Kaliszyk and Christian Urban | 
| 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 3 | |
| 35788 | 4 | Definitions for constants on quotient types. | 
| 35222 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 5 | *) | 
| 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 6 | |
| 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 7 | signature QUOTIENT_DEF = | 
| 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 8 | sig | 
| 45598 | 9 | val quotient_def: | 
| 10 | (binding * typ option * mixfix) option * (Attrib.binding * (term * term)) -> | |
| 45279 | 11 | local_theory -> Quotient_Info.quotconsts * local_theory | 
| 35222 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 12 | |
| 45598 | 13 | val quotient_def_cmd: | 
| 14 | (binding * string option * mixfix) option * (Attrib.binding * (string * string)) -> | |
| 45279 | 15 | local_theory -> Quotient_Info.quotconsts * local_theory | 
| 35222 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 16 | |
| 37561 
19fca77829ea
mixfix can be given for automatically lifted constants
 Christian Urban <urbanc@in.tum.de> parents: 
37532diff
changeset | 17 | val lift_raw_const: typ list -> (string * term * mixfix) -> local_theory -> | 
| 45279 | 18 | Quotient_Info.quotconsts * local_theory | 
| 35222 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 19 | end; | 
| 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 20 | |
| 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 21 | structure Quotient_Def: QUOTIENT_DEF = | 
| 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 22 | struct | 
| 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 23 | |
| 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 24 | (** Interface and Syntax Setup **) | 
| 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 25 | |
| 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 26 | (* The ML-interface for a quotient definition takes | 
| 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 27 | as argument: | 
| 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 28 | |
| 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 29 | - an optional binding and mixfix annotation | 
| 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 30 | - attributes | 
| 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 31 | - the new constant as term | 
| 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 32 | - the rhs of the definition as term | 
| 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 33 | |
| 45279 | 34 | It stores the qconst_info in the quotconsts data slot. | 
| 35222 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 35 | |
| 41444 | 36 | Restriction: At the moment the left- and right-hand | 
| 37 | side of the definition must be a constant. | |
| 35222 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 38 | *) | 
| 41444 | 39 | fun error_msg bind str = | 
| 40 | let | |
| 41 | val name = Binding.name_of bind | |
| 42 | val pos = Position.str_of (Binding.pos_of bind) | |
| 43 | in | |
| 44 |     error ("Head of quotient_definition " ^
 | |
| 45 | quote str ^ " differs from declaration " ^ name ^ pos) | |
| 46 | end | |
| 35222 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 47 | |
| 43608 
294570668f25
parse term in auxiliary context augmented with variable;
 krauss parents: 
42494diff
changeset | 48 | fun gen_quotient_def prep_vars prep_term (raw_var, (attr, (lhs_raw, rhs_raw))) lthy = | 
| 41444 | 49 | let | 
| 43608 
294570668f25
parse term in auxiliary context augmented with variable;
 krauss parents: 
42494diff
changeset | 50 | val (vars, ctxt) = prep_vars (the_list raw_var) lthy | 
| 43663 
e8c80bbc0c5d
re-check to explicitly propagate a given type constraint to lhs -- necessary to trigger type improvement in an instantiation target
 krauss parents: 
43608diff
changeset | 51 | val T_opt = (case vars of [(_, SOME T, _)] => SOME T | _ => NONE) | 
| 
e8c80bbc0c5d
re-check to explicitly propagate a given type constraint to lhs -- necessary to trigger type improvement in an instantiation target
 krauss parents: 
43608diff
changeset | 52 | val lhs = prep_term T_opt ctxt lhs_raw | 
| 
e8c80bbc0c5d
re-check to explicitly propagate a given type constraint to lhs -- necessary to trigger type improvement in an instantiation target
 krauss parents: 
43608diff
changeset | 53 | val rhs = prep_term NONE ctxt rhs_raw | 
| 43608 
294570668f25
parse term in auxiliary context augmented with variable;
 krauss parents: 
42494diff
changeset | 54 | |
| 41444 | 55 | val (lhs_str, lhs_ty) = dest_Free lhs handle TERM _ => error "Constant already defined." | 
| 56 | val _ = if null (strip_abs_vars rhs) then () else error "The definiens cannot be an abstraction" | |
| 57 | val _ = if is_Const rhs then () else warning "The definiens is not a constant" | |
| 35222 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 58 | |
| 43608 
294570668f25
parse term in auxiliary context augmented with variable;
 krauss parents: 
42494diff
changeset | 59 | val var = | 
| 
294570668f25
parse term in auxiliary context augmented with variable;
 krauss parents: 
42494diff
changeset | 60 | (case vars of | 
| 
294570668f25
parse term in auxiliary context augmented with variable;
 krauss parents: 
42494diff
changeset | 61 | [] => (Binding.name lhs_str, NoSyn) | 
| 
294570668f25
parse term in auxiliary context augmented with variable;
 krauss parents: 
42494diff
changeset | 62 | | [(binding, _, mx)] => | 
| 
294570668f25
parse term in auxiliary context augmented with variable;
 krauss parents: 
42494diff
changeset | 63 | if Variable.check_name binding = lhs_str then (binding, mx) | 
| 
294570668f25
parse term in auxiliary context augmented with variable;
 krauss parents: 
42494diff
changeset | 64 | else error_msg binding lhs_str | 
| 
294570668f25
parse term in auxiliary context augmented with variable;
 krauss parents: 
42494diff
changeset | 65 | | _ => raise Match) | 
| 41444 | 66 | |
| 45797 | 67 | val absrep_trm = Quotient_Term.absrep_fun lthy Quotient_Term.AbsF (fastype_of rhs, lhs_ty) $ rhs | 
| 45826 | 68 | val prop = Syntax.check_term lthy (Logic.mk_equals (lhs, absrep_trm)) | 
| 41444 | 69 | val (_, prop') = Local_Defs.cert_def lthy prop | 
| 70 | val (_, newrhs) = Local_Defs.abs_def prop' | |
| 35222 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 71 | |
| 43608 
294570668f25
parse term in auxiliary context augmented with variable;
 krauss parents: 
42494diff
changeset | 72 | val ((trm, (_ , thm)), lthy') = Local_Theory.define (var, (attr, newrhs)) lthy | 
| 35222 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 73 | |
| 41444 | 74 | (* data storage *) | 
| 75 |     val qconst_data = {qconst = trm, rconst = rhs, def = thm}
 | |
| 37530 
70d03844b2f9
export of proper information in the ML-interface of the quotient package
 Christian Urban <urbanc@in.tum.de> parents: 
36960diff
changeset | 76 | |
| 45292 
90106a351a11
more robust data storage (NB: the morphism can change the shape of qconst, and in the auxiliary context it is not even a constant yet);
 wenzelm parents: 
45291diff
changeset | 77 | val lthy'' = lthy' | 
| 
90106a351a11
more robust data storage (NB: the morphism can change the shape of qconst, and in the auxiliary context it is not even a constant yet);
 wenzelm parents: 
45291diff
changeset | 78 |       |> Local_Theory.declaration {syntax = false, pervasive = true}
 | 
| 
90106a351a11
more robust data storage (NB: the morphism can change the shape of qconst, and in the auxiliary context it is not even a constant yet);
 wenzelm parents: 
45291diff
changeset | 79 | (fn phi => | 
| 
90106a351a11
more robust data storage (NB: the morphism can change the shape of qconst, and in the auxiliary context it is not even a constant yet);
 wenzelm parents: 
45291diff
changeset | 80 | (case Quotient_Info.transform_quotconsts phi qconst_data of | 
| 
90106a351a11
more robust data storage (NB: the morphism can change the shape of qconst, and in the auxiliary context it is not even a constant yet);
 wenzelm parents: 
45291diff
changeset | 81 |             qcinfo as {qconst = Const (c, _), ...} =>
 | 
| 
90106a351a11
more robust data storage (NB: the morphism can change the shape of qconst, and in the auxiliary context it is not even a constant yet);
 wenzelm parents: 
45291diff
changeset | 82 | Quotient_Info.update_quotconsts c qcinfo | 
| 
90106a351a11
more robust data storage (NB: the morphism can change the shape of qconst, and in the auxiliary context it is not even a constant yet);
 wenzelm parents: 
45291diff
changeset | 83 | | _ => I)); | 
| 41444 | 84 | in | 
| 85 | (qconst_data, lthy'') | |
| 86 | end | |
| 35222 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 87 | |
| 43663 
e8c80bbc0c5d
re-check to explicitly propagate a given type constraint to lhs -- necessary to trigger type improvement in an instantiation target
 krauss parents: 
43608diff
changeset | 88 | fun check_term' cnstr ctxt = | 
| 
e8c80bbc0c5d
re-check to explicitly propagate a given type constraint to lhs -- necessary to trigger type improvement in an instantiation target
 krauss parents: 
43608diff
changeset | 89 | Syntax.check_term ctxt o (case cnstr of SOME T => Type.constraint T | _ => I) | 
| 45598 | 90 | |
| 91 | fun read_term' cnstr ctxt = | |
| 45929 
d7d6c8cfb6f6
removing some debug output in quotient_definition
 bulwahn parents: 
45826diff
changeset | 92 | check_term' cnstr ctxt o Syntax.parse_term ctxt | 
| 43663 
e8c80bbc0c5d
re-check to explicitly propagate a given type constraint to lhs -- necessary to trigger type improvement in an instantiation target
 krauss parents: 
43608diff
changeset | 93 | |
| 
e8c80bbc0c5d
re-check to explicitly propagate a given type constraint to lhs -- necessary to trigger type improvement in an instantiation target
 krauss parents: 
43608diff
changeset | 94 | val quotient_def = gen_quotient_def Proof_Context.cert_vars check_term' | 
| 45598 | 95 | val quotient_def_cmd = gen_quotient_def Proof_Context.read_vars read_term' | 
| 43608 
294570668f25
parse term in auxiliary context augmented with variable;
 krauss parents: 
42494diff
changeset | 96 | |
| 35222 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 97 | |
| 37532 
8a9a34be09e0
slight cleaning and simplification of the automatic wrapper for quotient definitions
 Christian Urban <urbanc@in.tum.de> parents: 
37530diff
changeset | 98 | (* a wrapper for automatically lifting a raw constant *) | 
| 37561 
19fca77829ea
mixfix can be given for automatically lifted constants
 Christian Urban <urbanc@in.tum.de> parents: 
37532diff
changeset | 99 | fun lift_raw_const qtys (qconst_name, rconst, mx) ctxt = | 
| 41444 | 100 | let | 
| 101 | val rty = fastype_of rconst | |
| 41451 | 102 | val qty = Quotient_Term.derive_qtyp ctxt qtys rty | 
| 41444 | 103 | val lhs = Free (qconst_name, qty) | 
| 104 | in | |
| 43608 
294570668f25
parse term in auxiliary context augmented with variable;
 krauss parents: 
42494diff
changeset | 105 | quotient_def (SOME (Binding.name qconst_name, NONE, mx), (Attrib.empty_binding, (lhs, rconst))) ctxt | 
| 41444 | 106 | end | 
| 35222 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 107 | |
| 37532 
8a9a34be09e0
slight cleaning and simplification of the automatic wrapper for quotient definitions
 Christian Urban <urbanc@in.tum.de> parents: 
37530diff
changeset | 108 | (* parser and command *) | 
| 35222 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 109 | val quotdef_parser = | 
| 43608 
294570668f25
parse term in auxiliary context augmented with variable;
 krauss parents: 
42494diff
changeset | 110 | Scan.option Parse_Spec.constdecl -- | 
| 36960 
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
 wenzelm parents: 
36954diff
changeset | 111 | Parse.!!! (Parse_Spec.opt_thm_name ":" -- (Parse.term --| Parse.$$$ "is" -- Parse.term)) | 
| 35222 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 112 | |
| 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 113 | val _ = | 
| 36960 
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
 wenzelm parents: 
36954diff
changeset | 114 | Outer_Syntax.local_theory "quotient_definition" | 
| 35222 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 115 | "definition for constants over the quotient type" | 
| 45598 | 116 | Keyword.thy_decl (quotdef_parser >> (snd oo quotient_def_cmd)) | 
| 35222 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 117 | |
| 
4f1fba00f66d
Initial version of HOL quotient package.
 Cezary Kaliszyk <kaliszyk@in.tum.de> parents: diff
changeset | 118 | end; (* structure *) |