src/HOL/Tools/Quotient/quotient_info.ML
author wenzelm
Fri, 16 Mar 2012 21:59:19 +0100
changeset 46971 bdec4a6016c2
parent 46961 5c6955f487e5
child 47089 29e92b644d6c
child 47093 0516a6c1ea59
permissions -rw-r--r--
afford strict Args.type_name (cf. 29e88714ffe4);
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
37744
3daaf23b9ab4 tuned titles
haftmann
parents: 36960
diff changeset
     1
(*  Title:      HOL/Tools/Quotient/quotient_info.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
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
     4
Context data for the quotient package.
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_INFO =
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
     8
sig
45802
b16f976db515 Quotient_Info stores only relation maps
kuncar
parents: 45534
diff changeset
     9
  type quotmaps = {relmap: string}
45280
9fd6fce8a230 localized quotient data;
wenzelm
parents: 45279
diff changeset
    10
  val lookup_quotmaps: Proof.context -> string -> quotmaps option
45340
98ec8b51af9c prefer global Quotient_Info lookup to accomodate Quotient_Term, which is not quite localized yet (cf. 9fd6fce8a230);
wenzelm
parents: 45294
diff changeset
    11
  val lookup_quotmaps_global: theory -> string -> quotmaps option
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
    12
  val print_quotmaps: Proof.context -> unit
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    13
45534
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
    14
  type abs_rep = {abs : term, rep : term}
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
    15
  val transform_abs_rep: morphism -> abs_rep -> abs_rep
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
    16
  val lookup_abs_rep: Proof.context -> string -> abs_rep option
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
    17
  val lookup_abs_rep_global: theory -> string -> abs_rep option
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
    18
  val update_abs_rep: string -> abs_rep -> Context.generic -> Context.generic
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
    19
  val print_abs_rep: Proof.context -> unit
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
    20
  
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
    21
  type quotients = {qtyp: typ, rtyp: typ, equiv_rel: term, equiv_thm: thm}
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
    22
  val transform_quotients: morphism -> quotients -> quotients
45280
9fd6fce8a230 localized quotient data;
wenzelm
parents: 45279
diff changeset
    23
  val lookup_quotients: Proof.context -> string -> quotients option
45340
98ec8b51af9c prefer global Quotient_Info lookup to accomodate Quotient_Term, which is not quite localized yet (cf. 9fd6fce8a230);
wenzelm
parents: 45294
diff changeset
    24
  val lookup_quotients_global: theory -> string -> quotients option
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
    25
  val update_quotients: string -> quotients -> Context.generic -> Context.generic
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
    26
  val dest_quotients: Proof.context -> quotients list
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
    27
  val print_quotients: Proof.context -> unit
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    28
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
    29
  type quotconsts = {qconst: term, rconst: term, def: thm}
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
    30
  val transform_quotconsts: morphism -> quotconsts -> quotconsts
45340
98ec8b51af9c prefer global Quotient_Info lookup to accomodate Quotient_Term, which is not quite localized yet (cf. 9fd6fce8a230);
wenzelm
parents: 45294
diff changeset
    31
  val lookup_quotconsts_global: theory -> term -> quotconsts option
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
    32
  val update_quotconsts: string -> quotconsts -> Context.generic -> Context.generic
45350
257d0b179f0d more use of global operations (see 98ec8b51af9c)
Christian Urban <urbanc@in.tum.de>
parents: 45340
diff changeset
    33
  val dest_quotconsts_global: theory -> quotconsts list
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
    34
  val dest_quotconsts: Proof.context -> quotconsts list
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
    35
  val print_quotconsts: Proof.context -> unit
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    36
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
    37
  val equiv_rules: Proof.context -> thm list
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    38
  val equiv_rules_add: attribute
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
    39
  val rsp_rules: Proof.context -> thm list
35314
cbdf785a1eb3 export prs_rules and rsp_rules attributes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 35278
diff changeset
    40
  val rsp_rules_add: attribute
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
    41
  val prs_rules: Proof.context -> thm list
35314
cbdf785a1eb3 export prs_rules and rsp_rules attributes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 35278
diff changeset
    42
  val prs_rules_add: attribute
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
    43
  val id_simps: Proof.context -> thm list
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
    44
  val quotient_rules: Proof.context -> thm list
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    45
  val quotient_rules_add: attribute
41452
c291e0826902 more standard package setup;
wenzelm
parents: 41451
diff changeset
    46
  val setup: theory -> theory
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    47
end;
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    48
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    49
structure Quotient_Info: QUOTIENT_INFO =
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    50
struct
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    51
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    52
(** data containers **)
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    53
41472
f6ab14e61604 misc tuning and comments based on review of Theory_Data, Proof_Data, Generic_Data usage;
wenzelm
parents: 41452
diff changeset
    54
(* FIXME just one data slot (record) per program unit *)
f6ab14e61604 misc tuning and comments based on review of Theory_Data, Proof_Data, Generic_Data usage;
wenzelm
parents: 41452
diff changeset
    55
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    56
(* info about map- and rel-functions for a type *)
45802
b16f976db515 Quotient_Info stores only relation maps
kuncar
parents: 45534
diff changeset
    57
type quotmaps = {relmap: string}
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    58
45280
9fd6fce8a230 localized quotient data;
wenzelm
parents: 45279
diff changeset
    59
structure Quotmaps = Generic_Data
38759
37a9092de102 simplification/standardization of some theory data;
wenzelm
parents: 38756
diff changeset
    60
(
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
    61
  type T = quotmaps Symtab.table
38759
37a9092de102 simplification/standardization of some theory data;
wenzelm
parents: 38756
diff changeset
    62
  val empty = Symtab.empty
37a9092de102 simplification/standardization of some theory data;
wenzelm
parents: 38756
diff changeset
    63
  val extend = I
37a9092de102 simplification/standardization of some theory data;
wenzelm
parents: 38756
diff changeset
    64
  fun merge data = Symtab.merge (K true) data
37a9092de102 simplification/standardization of some theory data;
wenzelm
parents: 38756
diff changeset
    65
)
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    66
45280
9fd6fce8a230 localized quotient data;
wenzelm
parents: 45279
diff changeset
    67
val lookup_quotmaps = Symtab.lookup o Quotmaps.get o Context.Proof
45340
98ec8b51af9c prefer global Quotient_Info lookup to accomodate Quotient_Term, which is not quite localized yet (cf. 9fd6fce8a230);
wenzelm
parents: 45294
diff changeset
    68
val lookup_quotmaps_global = Symtab.lookup o Quotmaps.get o Context.Theory
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    69
45281
29e88714ffe4 more standard attribute setup;
wenzelm
parents: 45280
diff changeset
    70
(* FIXME export proper internal update operation!? *)
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    71
45281
29e88714ffe4 more standard attribute setup;
wenzelm
parents: 45280
diff changeset
    72
val quotmaps_attribute_setup =
29e88714ffe4 more standard attribute setup;
wenzelm
parents: 45280
diff changeset
    73
  Attrib.setup @{binding map}
46971
bdec4a6016c2 afford strict Args.type_name (cf. 29e88714ffe4);
wenzelm
parents: 46961
diff changeset
    74
    ((Args.type_name true --| Scan.lift (@{keyword "="})) -- Args.const_proper true >>
45802
b16f976db515 Quotient_Info stores only relation maps
kuncar
parents: 45534
diff changeset
    75
      (fn (tyname, relname) =>
b16f976db515 Quotient_Info stores only relation maps
kuncar
parents: 45534
diff changeset
    76
        let val minfo = {relmap = relname}
45281
29e88714ffe4 more standard attribute setup;
wenzelm
parents: 45280
diff changeset
    77
        in Thm.declaration_attribute (fn _ => Quotmaps.map (Symtab.update (tyname, minfo))) end))
29e88714ffe4 more standard attribute setup;
wenzelm
parents: 45280
diff changeset
    78
    "declaration of map information"
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    79
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
    80
fun print_quotmaps ctxt =
41444
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
    81
  let
45802
b16f976db515 Quotient_Info stores only relation maps
kuncar
parents: 45534
diff changeset
    82
    fun prt_map (ty_name, {relmap}) =
41445
wenzelm
parents: 41444
diff changeset
    83
      Pretty.block (separate (Pretty.brk 2)
41444
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
    84
        (map Pretty.str
41445
wenzelm
parents: 41444
diff changeset
    85
         ["type:", ty_name,
41444
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
    86
          "relation map:", relmap]))
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
    87
  in
45280
9fd6fce8a230 localized quotient data;
wenzelm
parents: 45279
diff changeset
    88
    map prt_map (Symtab.dest (Quotmaps.get (Context.Proof ctxt)))
41444
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
    89
    |> Pretty.big_list "maps for type constructors:"
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
    90
    |> Pretty.writeln
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
    91
  end
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
    92
45534
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
    93
(* info about abs/rep terms *)
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
    94
type abs_rep = {abs : term, rep : term}
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
    95
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
    96
structure Abs_Rep = Generic_Data
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
    97
(
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
    98
  type T = abs_rep Symtab.table
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
    99
  val empty = Symtab.empty
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
   100
  val extend = I
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
   101
  fun merge data = Symtab.merge (K true) data
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
   102
)
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
   103
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
   104
fun transform_abs_rep phi {abs, rep} = {abs = Morphism.term phi abs, rep = Morphism.term phi rep}
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
   105
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
   106
val lookup_abs_rep = Symtab.lookup o Abs_Rep.get o Context.Proof
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
   107
val lookup_abs_rep_global = Symtab.lookup o Abs_Rep.get o Context.Theory
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
   108
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
   109
fun update_abs_rep str data = Abs_Rep.map (Symtab.update (str, data))
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
   110
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
   111
fun print_abs_rep ctxt =
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
   112
  let
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
   113
    fun prt_abs_rep (s, {abs, rep}) =
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
   114
      Pretty.block (separate (Pretty.brk 2)
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
   115
       [Pretty.str "type constructor:",
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
   116
        Pretty.str s,
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
   117
        Pretty.str "abs term:",
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
   118
        Syntax.pretty_term ctxt abs,
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
   119
        Pretty.str "rep term:",
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
   120
        Syntax.pretty_term ctxt rep])
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
   121
  in
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
   122
    map prt_abs_rep (Symtab.dest (Abs_Rep.get (Context.Proof ctxt)))
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
   123
    |> Pretty.big_list "abs/rep terms:"
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
   124
    |> Pretty.writeln
4ab21521b393 adding database of abs and rep terms to the quotient package; registering abs and rep terms in quotient_type and using them in quotient_definition
bulwahn
parents: 45350
diff changeset
   125
  end
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   126
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   127
(* info about quotient types *)
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   128
type quotients = {qtyp: typ, rtyp: typ, equiv_rel: term, equiv_thm: thm}
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   129
45280
9fd6fce8a230 localized quotient data;
wenzelm
parents: 45279
diff changeset
   130
structure Quotients = Generic_Data
38759
37a9092de102 simplification/standardization of some theory data;
wenzelm
parents: 38756
diff changeset
   131
(
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   132
  type T = quotients Symtab.table
38759
37a9092de102 simplification/standardization of some theory data;
wenzelm
parents: 38756
diff changeset
   133
  val empty = Symtab.empty
37a9092de102 simplification/standardization of some theory data;
wenzelm
parents: 38756
diff changeset
   134
  val extend = I
37a9092de102 simplification/standardization of some theory data;
wenzelm
parents: 38756
diff changeset
   135
  fun merge data = Symtab.merge (K true) data
37a9092de102 simplification/standardization of some theory data;
wenzelm
parents: 38756
diff changeset
   136
)
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   137
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   138
fun transform_quotients phi {qtyp, rtyp, equiv_rel, equiv_thm} =
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   139
  {qtyp = Morphism.typ phi qtyp,
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   140
   rtyp = Morphism.typ phi rtyp,
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   141
   equiv_rel = Morphism.term phi equiv_rel,
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   142
   equiv_thm = Morphism.thm phi equiv_thm}
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   143
45280
9fd6fce8a230 localized quotient data;
wenzelm
parents: 45279
diff changeset
   144
val lookup_quotients = Symtab.lookup o Quotients.get o Context.Proof
45340
98ec8b51af9c prefer global Quotient_Info lookup to accomodate Quotient_Term, which is not quite localized yet (cf. 9fd6fce8a230);
wenzelm
parents: 45294
diff changeset
   145
val lookup_quotients_global = Symtab.lookup o Quotients.get o Context.Theory
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   146
45280
9fd6fce8a230 localized quotient data;
wenzelm
parents: 45279
diff changeset
   147
fun update_quotients str qinfo = Quotients.map (Symtab.update (str, qinfo))
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   148
45280
9fd6fce8a230 localized quotient data;
wenzelm
parents: 45279
diff changeset
   149
fun dest_quotients ctxt =  (* FIXME slightly expensive way to retrieve data *)
9fd6fce8a230 localized quotient data;
wenzelm
parents: 45279
diff changeset
   150
  map snd (Symtab.dest (Quotients.get (Context.Proof ctxt)))
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   151
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   152
fun print_quotients ctxt =
41444
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
   153
  let
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
   154
    fun prt_quot {qtyp, rtyp, equiv_rel, equiv_thm} =
41445
wenzelm
parents: 41444
diff changeset
   155
      Pretty.block (separate (Pretty.brk 2)
41444
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
   156
       [Pretty.str "quotient type:",
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
   157
        Syntax.pretty_typ ctxt qtyp,
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
   158
        Pretty.str "raw type:",
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
   159
        Syntax.pretty_typ ctxt rtyp,
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
   160
        Pretty.str "relation:",
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
   161
        Syntax.pretty_term ctxt equiv_rel,
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
   162
        Pretty.str "equiv. thm:",
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
   163
        Syntax.pretty_term ctxt (prop_of equiv_thm)])
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
   164
  in
45280
9fd6fce8a230 localized quotient data;
wenzelm
parents: 45279
diff changeset
   165
    map (prt_quot o snd) (Symtab.dest (Quotients.get (Context.Proof ctxt)))
41444
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
   166
    |> Pretty.big_list "quotients:"
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
   167
    |> Pretty.writeln
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
   168
  end
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   169
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   170
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   171
(* info about quotient constants *)
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   172
type quotconsts = {qconst: term, rconst: term, def: thm}
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   173
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   174
fun eq_quotconsts (x : quotconsts, y : quotconsts) = #qconst x = #qconst y
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   175
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   176
(* We need to be able to lookup instances of lifted constants,
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   177
   for example given "nat fset" we need to find "'a fset";
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   178
   but overloaded constants share the same name *)
45280
9fd6fce8a230 localized quotient data;
wenzelm
parents: 45279
diff changeset
   179
structure Quotconsts = Generic_Data
38759
37a9092de102 simplification/standardization of some theory data;
wenzelm
parents: 38756
diff changeset
   180
(
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   181
  type T = quotconsts list Symtab.table
38759
37a9092de102 simplification/standardization of some theory data;
wenzelm
parents: 38756
diff changeset
   182
  val empty = Symtab.empty
37a9092de102 simplification/standardization of some theory data;
wenzelm
parents: 38756
diff changeset
   183
  val extend = I
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   184
  val merge = Symtab.merge_list eq_quotconsts
38759
37a9092de102 simplification/standardization of some theory data;
wenzelm
parents: 38756
diff changeset
   185
)
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   186
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   187
fun transform_quotconsts phi {qconst, rconst, def} =
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   188
  {qconst = Morphism.term phi qconst,
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   189
   rconst = Morphism.term phi rconst,
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   190
   def = Morphism.thm phi def}
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   191
45280
9fd6fce8a230 localized quotient data;
wenzelm
parents: 45279
diff changeset
   192
fun update_quotconsts name qcinfo = Quotconsts.map (Symtab.cons_list (name, qcinfo))
9fd6fce8a230 localized quotient data;
wenzelm
parents: 45279
diff changeset
   193
9fd6fce8a230 localized quotient data;
wenzelm
parents: 45279
diff changeset
   194
fun dest_quotconsts ctxt =
9fd6fce8a230 localized quotient data;
wenzelm
parents: 45279
diff changeset
   195
  flat (map snd (Symtab.dest (Quotconsts.get (Context.Proof ctxt))))
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   196
45350
257d0b179f0d more use of global operations (see 98ec8b51af9c)
Christian Urban <urbanc@in.tum.de>
parents: 45340
diff changeset
   197
fun dest_quotconsts_global thy =
257d0b179f0d more use of global operations (see 98ec8b51af9c)
Christian Urban <urbanc@in.tum.de>
parents: 45340
diff changeset
   198
  flat (map snd (Symtab.dest (Quotconsts.get (Context.Theory thy))))
257d0b179f0d more use of global operations (see 98ec8b51af9c)
Christian Urban <urbanc@in.tum.de>
parents: 45340
diff changeset
   199
257d0b179f0d more use of global operations (see 98ec8b51af9c)
Christian Urban <urbanc@in.tum.de>
parents: 45340
diff changeset
   200
257d0b179f0d more use of global operations (see 98ec8b51af9c)
Christian Urban <urbanc@in.tum.de>
parents: 45340
diff changeset
   201
45340
98ec8b51af9c prefer global Quotient_Info lookup to accomodate Quotient_Term, which is not quite localized yet (cf. 9fd6fce8a230);
wenzelm
parents: 45294
diff changeset
   202
fun lookup_quotconsts_global thy t =
45280
9fd6fce8a230 localized quotient data;
wenzelm
parents: 45279
diff changeset
   203
  let
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   204
    val (name, qty) = dest_Const t
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   205
    fun matches (x: quotconsts) =
45280
9fd6fce8a230 localized quotient data;
wenzelm
parents: 45279
diff changeset
   206
      let val (name', qty') = dest_Const (#qconst x);
9fd6fce8a230 localized quotient data;
wenzelm
parents: 45279
diff changeset
   207
      in name = name' andalso Sign.typ_instance thy (qty, qty') end
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   208
  in
45340
98ec8b51af9c prefer global Quotient_Info lookup to accomodate Quotient_Term, which is not quite localized yet (cf. 9fd6fce8a230);
wenzelm
parents: 45294
diff changeset
   209
    (case Symtab.lookup (Quotconsts.get (Context.Theory thy)) name of
45274
252cd58847e0 respecting isabelle's programming style in the quotient package by simplifying qconsts_lookup function for data access; removing odd NotFound exception
bulwahn
parents: 45273
diff changeset
   210
      NONE => NONE
252cd58847e0 respecting isabelle's programming style in the quotient package by simplifying qconsts_lookup function for data access; removing odd NotFound exception
bulwahn
parents: 45273
diff changeset
   211
    | SOME l => find_first matches l)
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   212
  end
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   213
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   214
fun print_quotconsts ctxt =
41444
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
   215
  let
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
   216
    fun prt_qconst {qconst, rconst, def} =
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
   217
      Pretty.block (separate (Pretty.brk 1)
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
   218
       [Syntax.pretty_term ctxt qconst,
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
   219
        Pretty.str ":=",
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
   220
        Syntax.pretty_term ctxt rconst,
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
   221
        Pretty.str "as",
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
   222
        Syntax.pretty_term ctxt (prop_of def)])
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
   223
  in
45280
9fd6fce8a230 localized quotient data;
wenzelm
parents: 45279
diff changeset
   224
    map prt_qconst (maps snd (Symtab.dest (Quotconsts.get (Context.Proof ctxt))))
41444
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
   225
    |> Pretty.big_list "quotient constants:"
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
   226
    |> Pretty.writeln
7f40120cd814 more precise parentheses and indentation;
wenzelm
parents: 41443
diff changeset
   227
  end
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   228
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   229
(* equivalence relation theorems *)
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   230
structure Equiv_Rules = Named_Thms
38764
e6a18808873c more uniform descriptions, which end up in the collective output of 'print_attributes' for example;
wenzelm
parents: 38759
diff changeset
   231
(
45294
3c5d3d286055 tuned Named_Thms: proper binding;
wenzelm
parents: 45281
diff changeset
   232
  val name = @{binding quot_equiv}
38764
e6a18808873c more uniform descriptions, which end up in the collective output of 'print_attributes' for example;
wenzelm
parents: 38759
diff changeset
   233
  val description = "equivalence relation theorems"
e6a18808873c more uniform descriptions, which end up in the collective output of 'print_attributes' for example;
wenzelm
parents: 38759
diff changeset
   234
)
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   235
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   236
val equiv_rules = Equiv_Rules.get
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   237
val equiv_rules_add = Equiv_Rules.add
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   238
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   239
(* respectfulness theorems *)
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   240
structure Rsp_Rules = Named_Thms
38764
e6a18808873c more uniform descriptions, which end up in the collective output of 'print_attributes' for example;
wenzelm
parents: 38759
diff changeset
   241
(
45294
3c5d3d286055 tuned Named_Thms: proper binding;
wenzelm
parents: 45281
diff changeset
   242
  val name = @{binding quot_respect}
38764
e6a18808873c more uniform descriptions, which end up in the collective output of 'print_attributes' for example;
wenzelm
parents: 38759
diff changeset
   243
  val description = "respectfulness theorems"
e6a18808873c more uniform descriptions, which end up in the collective output of 'print_attributes' for example;
wenzelm
parents: 38759
diff changeset
   244
)
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   245
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   246
val rsp_rules = Rsp_Rules.get
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   247
val rsp_rules_add = Rsp_Rules.add
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   248
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   249
(* preservation theorems *)
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   250
structure Prs_Rules = Named_Thms
38764
e6a18808873c more uniform descriptions, which end up in the collective output of 'print_attributes' for example;
wenzelm
parents: 38759
diff changeset
   251
(
45294
3c5d3d286055 tuned Named_Thms: proper binding;
wenzelm
parents: 45281
diff changeset
   252
  val name = @{binding quot_preserve}
38764
e6a18808873c more uniform descriptions, which end up in the collective output of 'print_attributes' for example;
wenzelm
parents: 38759
diff changeset
   253
  val description = "preservation theorems"
e6a18808873c more uniform descriptions, which end up in the collective output of 'print_attributes' for example;
wenzelm
parents: 38759
diff changeset
   254
)
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   255
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   256
val prs_rules = Prs_Rules.get
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   257
val prs_rules_add = Prs_Rules.add
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   258
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   259
(* id simplification theorems *)
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   260
structure Id_Simps = Named_Thms
38764
e6a18808873c more uniform descriptions, which end up in the collective output of 'print_attributes' for example;
wenzelm
parents: 38759
diff changeset
   261
(
45294
3c5d3d286055 tuned Named_Thms: proper binding;
wenzelm
parents: 45281
diff changeset
   262
  val name = @{binding id_simps}
38764
e6a18808873c more uniform descriptions, which end up in the collective output of 'print_attributes' for example;
wenzelm
parents: 38759
diff changeset
   263
  val description = "identity simp rules for maps"
e6a18808873c more uniform descriptions, which end up in the collective output of 'print_attributes' for example;
wenzelm
parents: 38759
diff changeset
   264
)
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   265
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   266
val id_simps = Id_Simps.get
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   267
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   268
(* quotient theorems *)
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   269
structure Quotient_Rules = Named_Thms
38764
e6a18808873c more uniform descriptions, which end up in the collective output of 'print_attributes' for example;
wenzelm
parents: 38759
diff changeset
   270
(
45294
3c5d3d286055 tuned Named_Thms: proper binding;
wenzelm
parents: 45281
diff changeset
   271
  val name = @{binding quot_thm}
38764
e6a18808873c more uniform descriptions, which end up in the collective output of 'print_attributes' for example;
wenzelm
parents: 38759
diff changeset
   272
  val description = "quotient theorems"
e6a18808873c more uniform descriptions, which end up in the collective output of 'print_attributes' for example;
wenzelm
parents: 38759
diff changeset
   273
)
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   274
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   275
val quotient_rules = Quotient_Rules.get
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   276
val quotient_rules_add = Quotient_Rules.add
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   277
41452
c291e0826902 more standard package setup;
wenzelm
parents: 41451
diff changeset
   278
c291e0826902 more standard package setup;
wenzelm
parents: 41451
diff changeset
   279
(* theory setup *)
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   280
41452
c291e0826902 more standard package setup;
wenzelm
parents: 41451
diff changeset
   281
val setup =
45281
29e88714ffe4 more standard attribute setup;
wenzelm
parents: 45280
diff changeset
   282
  quotmaps_attribute_setup #>
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   283
  Equiv_Rules.setup #>
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   284
  Rsp_Rules.setup #>
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   285
  Prs_Rules.setup #>
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   286
  Id_Simps.setup #>
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   287
  Quotient_Rules.setup
41452
c291e0826902 more standard package setup;
wenzelm
parents: 41451
diff changeset
   288
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   289
41452
c291e0826902 more standard package setup;
wenzelm
parents: 41451
diff changeset
   290
(* outer syntax commands *)
c291e0826902 more standard package setup;
wenzelm
parents: 41451
diff changeset
   291
c291e0826902 more standard package setup;
wenzelm
parents: 41451
diff changeset
   292
val _ =
46961
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   293
  Outer_Syntax.improper_command @{command_spec "print_quotmaps"} "print quotient map functions"
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   294
    (Scan.succeed (Toplevel.keep (print_quotmaps o Toplevel.context_of)))
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   295
41452
c291e0826902 more standard package setup;
wenzelm
parents: 41451
diff changeset
   296
val _ =
46961
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   297
  Outer_Syntax.improper_command @{command_spec "print_quotients"} "print quotients"
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   298
    (Scan.succeed (Toplevel.keep (print_quotients o Toplevel.context_of)))
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   299
41452
c291e0826902 more standard package setup;
wenzelm
parents: 41451
diff changeset
   300
val _ =
46961
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   301
  Outer_Syntax.improper_command @{command_spec "print_quotconsts"} "print quotient constants"
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   302
    (Scan.succeed (Toplevel.keep (print_quotconsts o Toplevel.context_of)))
35222
4f1fba00f66d Initial version of HOL quotient package.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
diff changeset
   303
45279
89a17197cb98 simplified/standardized signatures;
wenzelm
parents: 45278
diff changeset
   304
end;