src/Pure/Isar/proof_context.ML
author wenzelm
Mon, 13 Nov 2000 22:01:07 +0100
changeset 10464 b7b916a82dca
parent 10381 4dfbcad19bfb
child 10465 4aa6f8b5cdc4
permissions -rw-r--r--
tuned statement args;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/Isar/proof_context.ML
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
     3
    Author:     Markus Wenzel, TU Muenchen
8807
wenzelm
parents: 8637
diff changeset
     4
    License:    GPL (GNU GENERAL PUBLIC LICENSE)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
     5
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
     6
Proof context information.
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
     7
*)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
     8
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
     9
signature PROOF_CONTEXT =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    10
sig
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    11
  type context
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
    12
  type exporter
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    13
  exception CONTEXT of string * context
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    14
  val theory_of: context -> theory
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    15
  val sign_of: context -> Sign.sg
7557
1b977741f530 export prems_of;
wenzelm
parents: 7505
diff changeset
    16
  val prems_of: context -> thm list
6985
2af6405a6ef3 added show_hyps flag;
wenzelm
parents: 6931
diff changeset
    17
  val show_hyps: bool ref
2af6405a6ef3 added show_hyps flag;
wenzelm
parents: 6931
diff changeset
    18
  val pretty_thm: thm -> Pretty.T
6528
ed8c5f738ab3 verbose flag;
wenzelm
parents: 6091
diff changeset
    19
  val verbose: bool ref
9515
e6dfc9c9bf89 added setmp_verbose;
wenzelm
parents: 9504
diff changeset
    20
  val setmp_verbose: ('a -> 'b) -> 'a -> 'b
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    21
  val print_binds: context -> unit
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    22
  val print_thms: context -> unit
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
    23
  val print_cases: context -> unit
9733
99fda46926cc added prems_limit;
wenzelm
parents: 9566
diff changeset
    24
  val prems_limit: int ref
8462
7f4e4e875c13 pretty chunks;
wenzelm
parents: 8426
diff changeset
    25
  val pretty_prems: context -> Pretty.T list
7f4e4e875c13 pretty chunks;
wenzelm
parents: 8426
diff changeset
    26
  val pretty_context: context -> Pretty.T list
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    27
  val print_proof_data: theory -> unit
5874
a58d4528121d renamed init_context to init;
wenzelm
parents: 5819
diff changeset
    28
  val init: theory -> context
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
    29
  val assumptions: context -> (cterm list * exporter) list
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
    30
  val fixed_names: context -> string list
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    31
  val read_typ: context -> string -> typ
9504
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
    32
  val read_typ_no_norm: context -> string -> typ
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    33
  val cert_typ: context -> typ -> typ
9504
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
    34
  val cert_typ_no_norm: context -> typ -> typ
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
    35
  val intern_skolem: context -> term -> term
9133
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
    36
  val extern_skolem: context -> term -> term
5874
a58d4528121d renamed init_context to init;
wenzelm
parents: 5819
diff changeset
    37
  val read_termTs: context -> (string * typ) list -> term list * (indexname * typ) list
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    38
  val read_term: context -> string -> term
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    39
  val read_prop: context -> string -> term
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
    40
  val read_termT_pats: context -> (string * typ) list -> term list
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
    41
  val read_term_pats: typ -> context -> string list -> term list
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
    42
  val read_prop_pats: context -> string list -> term list
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    43
  val cert_term: context -> term -> term
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    44
  val cert_prop: context -> term -> term
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
    45
  val cert_term_pats: typ -> context -> term list -> term list
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
    46
  val cert_prop_pats: context -> term list -> term list
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    47
  val declare_term: term -> context -> context
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    48
  val declare_terms: term list -> context -> context
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
    49
  val warn_extra_tfrees: context -> context -> context
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
    50
  val generalizeT: context -> context -> typ -> typ
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
    51
  val generalize: context -> context -> term -> term
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
    52
  val find_free: term -> string -> term option
9553
c2e3773475b6 norm_hhf results;
wenzelm
parents: 9540
diff changeset
    53
  val norm_hhf: thm -> thm
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
    54
  val export_wrt: bool -> context -> context option -> (thm -> thm Seq.seq) * (int -> tactic) list
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
    55
  val auto_bind_goal: term -> context -> context
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
    56
  val auto_bind_facts: string -> term list -> context -> context
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
    57
  val match_bind: bool -> (string list * string) list -> context -> context
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
    58
  val match_bind_i: bool -> (term list * term) list -> context -> context
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
    59
  val read_propp: context * (string * (string list * string list))
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
    60
    -> context * (term * (term list * term list))
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
    61
  val cert_propp: context * (term * (term list * term list))
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
    62
    -> context * (term * (term list * term list))
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
    63
  val bind_propp: context * (string * (string list * string list))
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
    64
    -> context * (term * (context -> context))
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
    65
  val bind_propp_i: context * (term * (term list * term list))
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
    66
    -> context * (term * (context -> context))
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
    67
  val get_thm: context -> string -> thm
9566
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
    68
  val get_thm_closure: context -> string -> thm
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
    69
  val get_thms: context -> string -> thm list
9566
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
    70
  val get_thms_closure: context -> string -> thm list
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
    71
  val put_thm: string * thm -> context -> context
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
    72
  val put_thms: string * thm list -> context -> context
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
    73
  val put_thmss: (string * thm list) list -> context -> context
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
    74
  val reset_thms: string -> context -> context
9196
1f6f66fe777a facts: handle multiple lists of arguments;
wenzelm
parents: 9133
diff changeset
    75
  val have_thmss:
1f6f66fe777a facts: handle multiple lists of arguments;
wenzelm
parents: 9133
diff changeset
    76
    ((string * context attribute list) * (thm list * context attribute list) list) list ->
1f6f66fe777a facts: handle multiple lists of arguments;
wenzelm
parents: 9133
diff changeset
    77
      context -> context * (string * thm list) list
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
    78
  val assume: exporter
7270
2b64729d9acb warn_vars;
wenzelm
parents: 7200
diff changeset
    79
    -> (string * context attribute list * (string * (string list * string list)) list) list
2b64729d9acb warn_vars;
wenzelm
parents: 7200
diff changeset
    80
    -> context -> context * ((string * thm list) list * thm list)
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
    81
  val assume_i: exporter
7270
2b64729d9acb warn_vars;
wenzelm
parents: 7200
diff changeset
    82
    -> (string * context attribute list * (term * (term list * term list)) list) list
2b64729d9acb warn_vars;
wenzelm
parents: 7200
diff changeset
    83
    -> context -> context * ((string * thm list) list * thm list)
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
    84
  val read_vars: context * (string list * string option) -> context * (string list * typ option)
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
    85
  val cert_vars: context * (string list * typ option) -> context * (string list * typ option)
7411
4dbff71ac480 fix: common constraints;
wenzelm
parents: 7270
diff changeset
    86
  val fix: (string list * string option) list -> context -> context
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
    87
  val fix_i: (string list * typ option) list -> context -> context
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
    88
  val bind_skolem: context -> string list -> term -> term
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
    89
  val get_case: context -> string -> RuleCases.T
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
    90
  val add_cases: (string * RuleCases.T) list -> context -> context
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    91
  val setup: (theory -> theory) list
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    92
end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    93
8151
9a2bdaa3c379 tuned sig;
wenzelm
parents: 8096
diff changeset
    94
signature PRIVATE_PROOF_CONTEXT =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    95
sig
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    96
  include PROOF_CONTEXT
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    97
  val init_data: Object.kind -> (theory -> Object.T) * (context -> Object.T -> unit)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    98
    -> theory -> theory
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    99
  val print_data: Object.kind -> context -> unit
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   100
  val get_data: Object.kind -> (Object.T -> 'a) -> context -> 'a
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   101
  val put_data: Object.kind -> ('a -> Object.T) -> 'a -> context -> context
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   102
end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   103
8151
9a2bdaa3c379 tuned sig;
wenzelm
parents: 8096
diff changeset
   104
structure ProofContext: PRIVATE_PROOF_CONTEXT =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   105
struct
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   106
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   107
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   108
(** datatype context **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   109
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   110
type exporter =
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   111
  (cterm list -> thm -> thm Seq.seq) * (bool -> int -> (int -> tactic) list);
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   112
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   113
datatype context =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   114
  Context of
6847
f175f56c57a6 tuned output: print_context replaced by strings_of_context;
wenzelm
parents: 6797
diff changeset
   115
   {thy: theory,                                                        (*current theory*)
f175f56c57a6 tuned output: print_context replaced by strings_of_context;
wenzelm
parents: 6797
diff changeset
   116
    data: Object.T Symtab.table,                                        (*user data*)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   117
    asms:
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   118
      ((cterm list * exporter) list *                                   (*assumes: A ==> _*)
6931
bd8aa6ae6bcd propp: 'concl' patterns;
wenzelm
parents: 6895
diff changeset
   119
        (string * thm list) list) *
6847
f175f56c57a6 tuned output: print_context replaced by strings_of_context;
wenzelm
parents: 6797
diff changeset
   120
      ((string * string) list * string list),                           (*fixes: !!x. _*)
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   121
    binds: (term * typ) option Vartab.table,                            (*term bindings*)
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   122
    thms: thm list option Symtab.table,                                 (*local thms*)
8426
f6e022588624 cases: preserve order;
wenzelm
parents: 8403
diff changeset
   123
    cases: (string * RuleCases.T) list,                                 (*local contexts*)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   124
    defs:
6847
f175f56c57a6 tuned output: print_context replaced by strings_of_context;
wenzelm
parents: 6797
diff changeset
   125
      typ Vartab.table *                                                (*type constraints*)
f175f56c57a6 tuned output: print_context replaced by strings_of_context;
wenzelm
parents: 6797
diff changeset
   126
      sort Vartab.table *                                               (*default sorts*)
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   127
      (string list * term list Symtab.table)};                          (*used type variables*)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   128
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   129
exception CONTEXT of string * context;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   130
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   131
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   132
fun make_context (thy, data, asms, binds, thms, cases, defs) =
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   133
  Context {thy = thy, data = data, asms = asms, binds = binds, thms = thms,
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   134
    cases = cases, defs = defs};
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   135
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   136
fun map_context f (Context {thy, data, asms, binds, thms, cases, defs}) =
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   137
  make_context (f (thy, data, asms, binds, thms, cases, defs));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   138
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   139
fun theory_of (Context {thy, ...}) = thy;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   140
val sign_of = Theory.sign_of o theory_of;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   141
7270
2b64729d9acb warn_vars;
wenzelm
parents: 7200
diff changeset
   142
fun prems_of (Context {asms = ((_, asms), _), ...}) = flat (map #2 asms);
2b64729d9acb warn_vars;
wenzelm
parents: 7200
diff changeset
   143
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   144
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   145
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   146
(** print context information **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   147
6985
2af6405a6ef3 added show_hyps flag;
wenzelm
parents: 6931
diff changeset
   148
val show_hyps = ref false;
7575
e1e2d07287d8 improved output;
wenzelm
parents: 7557
diff changeset
   149
e1e2d07287d8 improved output;
wenzelm
parents: 7557
diff changeset
   150
fun pretty_thm thm =
e1e2d07287d8 improved output;
wenzelm
parents: 7557
diff changeset
   151
  if ! show_hyps then setmp Display.show_hyps true Display.pretty_thm_no_quote thm
e1e2d07287d8 improved output;
wenzelm
parents: 7557
diff changeset
   152
  else Display.pretty_cterm (#prop (Thm.crep_thm thm));
6985
2af6405a6ef3 added show_hyps flag;
wenzelm
parents: 6931
diff changeset
   153
6528
ed8c5f738ab3 verbose flag;
wenzelm
parents: 6091
diff changeset
   154
val verbose = ref false;
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   155
fun verb f x = if ! verbose then f (x ()) else [];
8462
7f4e4e875c13 pretty chunks;
wenzelm
parents: 8426
diff changeset
   156
fun verb_single x = verb Library.single x;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   157
9515
e6dfc9c9bf89 added setmp_verbose;
wenzelm
parents: 9504
diff changeset
   158
fun setmp_verbose f x = Library.setmp verbose true f x;
e6dfc9c9bf89 added setmp_verbose;
wenzelm
parents: 9504
diff changeset
   159
8462
7f4e4e875c13 pretty chunks;
wenzelm
parents: 8426
diff changeset
   160
fun pretty_items prt name items =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   161
  let
8462
7f4e4e875c13 pretty chunks;
wenzelm
parents: 8426
diff changeset
   162
    fun prt_itms (name, [x]) = Pretty.block [Pretty.str (name ^ ":"), Pretty.brk 1, prt x]
7f4e4e875c13 pretty chunks;
wenzelm
parents: 8426
diff changeset
   163
      | prt_itms (name, xs) = Pretty.big_list (name ^ ":") (map prt xs);
6721
dcee829f8e21 tuned print_context;
wenzelm
parents: 6560
diff changeset
   164
  in
6847
f175f56c57a6 tuned output: print_context replaced by strings_of_context;
wenzelm
parents: 6797
diff changeset
   165
    if null items andalso not (! verbose) then []
8462
7f4e4e875c13 pretty chunks;
wenzelm
parents: 8426
diff changeset
   166
    else [Pretty.big_list name (map prt_itms items)]
6721
dcee829f8e21 tuned print_context;
wenzelm
parents: 6560
diff changeset
   167
  end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   168
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   169
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   170
(* term bindings *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   171
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   172
val smash_option = fn (_, None) => None | (xi, Some b) => Some (xi, b);
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   173
8462
7f4e4e875c13 pretty chunks;
wenzelm
parents: 8426
diff changeset
   174
fun pretty_binds (ctxt as Context {binds, ...}) =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   175
  let
7575
e1e2d07287d8 improved output;
wenzelm
parents: 7557
diff changeset
   176
    val prt_term = Sign.pretty_term (sign_of ctxt);
8462
7f4e4e875c13 pretty chunks;
wenzelm
parents: 8426
diff changeset
   177
    fun prt_bind (xi, (t, T)) = prt_term (Logic.mk_equals (Var (xi, T), t));
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   178
    val bs = mapfilter smash_option (Vartab.dest binds);
6721
dcee829f8e21 tuned print_context;
wenzelm
parents: 6560
diff changeset
   179
  in
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   180
    if null bs andalso not (! verbose) then []
8462
7f4e4e875c13 pretty chunks;
wenzelm
parents: 8426
diff changeset
   181
    else [Pretty.big_list "term bindings:" (map prt_bind bs)]
6721
dcee829f8e21 tuned print_context;
wenzelm
parents: 6560
diff changeset
   182
  end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   183
8462
7f4e4e875c13 pretty chunks;
wenzelm
parents: 8426
diff changeset
   184
val print_binds = Pretty.writeln o Pretty.chunks o pretty_binds;
6847
f175f56c57a6 tuned output: print_context replaced by strings_of_context;
wenzelm
parents: 6797
diff changeset
   185
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   186
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   187
(* local theorems *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   188
8462
7f4e4e875c13 pretty chunks;
wenzelm
parents: 8426
diff changeset
   189
fun pretty_thms (Context {thms, ...}) =
9274
21c302a2fd9a tuned msgs;
wenzelm
parents: 9196
diff changeset
   190
  pretty_items pretty_thm "facts:" (mapfilter smash_option (Symtab.dest thms));
6847
f175f56c57a6 tuned output: print_context replaced by strings_of_context;
wenzelm
parents: 6797
diff changeset
   191
8462
7f4e4e875c13 pretty chunks;
wenzelm
parents: 8426
diff changeset
   192
val print_thms = Pretty.writeln o Pretty.chunks o pretty_thms;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   193
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   194
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   195
(* local contexts *)
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   196
8462
7f4e4e875c13 pretty chunks;
wenzelm
parents: 8426
diff changeset
   197
fun pretty_cases (ctxt as Context {cases, ...}) =
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   198
  let
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   199
    val prt_term = Sign.pretty_term (sign_of ctxt);
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   200
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   201
    fun prt_sect _ _ [] = []
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   202
      | prt_sect s prt xs = [Pretty.block (Pretty.breaks (Pretty.str s :: map prt xs))];
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   203
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   204
    fun prt_case (name, (xs, ts)) = Pretty.block (Pretty.breaks
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   205
      (Pretty.str (name ^ ":") ::
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   206
        prt_sect "fix" (prt_term o Free) xs @
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   207
        prt_sect "assume" (Pretty.quote o prt_term) ts));
8426
f6e022588624 cases: preserve order;
wenzelm
parents: 8403
diff changeset
   208
f6e022588624 cases: preserve order;
wenzelm
parents: 8403
diff changeset
   209
    val cases' = rev (Library.gen_distinct Library.eq_fst cases);
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   210
  in
8426
f6e022588624 cases: preserve order;
wenzelm
parents: 8403
diff changeset
   211
    if null cases andalso not (! verbose) then []
8462
7f4e4e875c13 pretty chunks;
wenzelm
parents: 8426
diff changeset
   212
    else [Pretty.big_list "cases:" (map prt_case cases')]
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   213
  end;
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   214
8462
7f4e4e875c13 pretty chunks;
wenzelm
parents: 8426
diff changeset
   215
val print_cases = Pretty.writeln o Pretty.chunks o pretty_cases;
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   216
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   217
9733
99fda46926cc added prems_limit;
wenzelm
parents: 9566
diff changeset
   218
(* prems *)
99fda46926cc added prems_limit;
wenzelm
parents: 9566
diff changeset
   219
99fda46926cc added prems_limit;
wenzelm
parents: 9566
diff changeset
   220
val prems_limit = ref 10;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   221
8462
7f4e4e875c13 pretty chunks;
wenzelm
parents: 8426
diff changeset
   222
fun pretty_prems ctxt =
9733
99fda46926cc added prems_limit;
wenzelm
parents: 9566
diff changeset
   223
  let
99fda46926cc added prems_limit;
wenzelm
parents: 9566
diff changeset
   224
    val limit = ! prems_limit;
99fda46926cc added prems_limit;
wenzelm
parents: 9566
diff changeset
   225
    val prems = prems_of ctxt;
99fda46926cc added prems_limit;
wenzelm
parents: 9566
diff changeset
   226
    val len = length prems;
99fda46926cc added prems_limit;
wenzelm
parents: 9566
diff changeset
   227
    val prt_prems =
99fda46926cc added prems_limit;
wenzelm
parents: 9566
diff changeset
   228
      (if len <= limit then [] else [Pretty.str "..."]) @
99fda46926cc added prems_limit;
wenzelm
parents: 9566
diff changeset
   229
      map pretty_thm (Library.drop (len - limit, prems));
99fda46926cc added prems_limit;
wenzelm
parents: 9566
diff changeset
   230
  in if null prems then [] else [Pretty.big_list "prems:" prt_prems] end;
99fda46926cc added prems_limit;
wenzelm
parents: 9566
diff changeset
   231
99fda46926cc added prems_limit;
wenzelm
parents: 9566
diff changeset
   232
99fda46926cc added prems_limit;
wenzelm
parents: 9566
diff changeset
   233
(* main context *)
7575
e1e2d07287d8 improved output;
wenzelm
parents: 7557
diff changeset
   234
8462
7f4e4e875c13 pretty chunks;
wenzelm
parents: 8426
diff changeset
   235
fun pretty_context (ctxt as Context {asms = (_, (fixes, _)), cases,
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   236
    defs = (types, sorts, (used, _)), ...}) =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   237
  let
7575
e1e2d07287d8 improved output;
wenzelm
parents: 7557
diff changeset
   238
    val sign = sign_of ctxt;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   239
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   240
    val prt_term = Sign.pretty_term sign;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   241
    val prt_typ = Sign.pretty_typ sign;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   242
    val prt_sort = Sign.pretty_sort sign;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   243
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   244
    (*theory*)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   245
    val pretty_thy = Pretty.block [Pretty.str "Theory:", Pretty.brk 1, Sign.pretty_sg sign];
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   246
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   247
    (*fixes*)
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   248
    fun prt_fix (x, x') = Pretty.block
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   249
      [prt_term (Syntax.free x), Pretty.str " =", Pretty.brk 1, prt_term (Syntax.free x')];
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   250
9515
e6dfc9c9bf89 added setmp_verbose;
wenzelm
parents: 9504
diff changeset
   251
    fun prt_fixes [] = []
e6dfc9c9bf89 added setmp_verbose;
wenzelm
parents: 9504
diff changeset
   252
      | prt_fixes xs = [Pretty.block (Pretty.str "fixed variables:" :: Pretty.brk 1 ::
e6dfc9c9bf89 added setmp_verbose;
wenzelm
parents: 9504
diff changeset
   253
          Pretty.commas (map prt_fix xs))];
7200
c9b03d9d6647 tuned strings_of_context;
wenzelm
parents: 6996
diff changeset
   254
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   255
    (*defaults*)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   256
    fun prt_atom prt prtT (x, X) = Pretty.block
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   257
      [prt x, Pretty.str " ::", Pretty.brk 1, prtT X];
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   258
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   259
    fun prt_var (x, ~1) = prt_term (Syntax.free x)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   260
      | prt_var xi = prt_term (Syntax.var xi);
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   261
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   262
    fun prt_varT (x, ~1) = prt_typ (TFree (x, []))
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   263
      | prt_varT xi = prt_typ (TVar (xi, []));
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   264
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   265
    val prt_defT = prt_atom prt_var prt_typ;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   266
    val prt_defS = prt_atom prt_varT prt_sort;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   267
  in
8462
7f4e4e875c13 pretty chunks;
wenzelm
parents: 8426
diff changeset
   268
    verb_single (K pretty_thy) @
9515
e6dfc9c9bf89 added setmp_verbose;
wenzelm
parents: 9504
diff changeset
   269
    prt_fixes (rev (filter_out (can Syntax.dest_internal o #1) fixes)) @
8462
7f4e4e875c13 pretty chunks;
wenzelm
parents: 8426
diff changeset
   270
    pretty_prems ctxt @
7f4e4e875c13 pretty chunks;
wenzelm
parents: 8426
diff changeset
   271
    verb pretty_binds (K ctxt) @
7f4e4e875c13 pretty chunks;
wenzelm
parents: 8426
diff changeset
   272
    verb pretty_thms (K ctxt) @
7f4e4e875c13 pretty chunks;
wenzelm
parents: 8426
diff changeset
   273
    verb pretty_cases (K ctxt) @
7f4e4e875c13 pretty chunks;
wenzelm
parents: 8426
diff changeset
   274
    verb_single (fn () => Pretty.big_list "type constraints:" (map prt_defT (Vartab.dest types))) @
7f4e4e875c13 pretty chunks;
wenzelm
parents: 8426
diff changeset
   275
    verb_single (fn () => Pretty.big_list "default sorts:" (map prt_defS (Vartab.dest sorts))) @
7f4e4e875c13 pretty chunks;
wenzelm
parents: 8426
diff changeset
   276
    verb_single (fn () => Pretty.strs ("used type variable names:" :: used))
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   277
  end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   278
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   279
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   280
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   281
(** user data **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   282
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   283
(* errors *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   284
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   285
fun of_theory thy = "\nof theory " ^ Sign.str_of_sg (Theory.sign_of thy);
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   286
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   287
fun err_inconsistent kinds =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   288
  error ("Attempt to merge different versions of " ^ commas_quote kinds ^ " proof data");
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   289
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   290
fun err_dup_init thy kind =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   291
  error ("Duplicate initialization of " ^ quote kind ^ " proof data" ^ of_theory thy);
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   292
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   293
fun err_undef ctxt kind =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   294
  raise CONTEXT ("Tried to access undefined " ^ quote kind ^ " proof data", ctxt);
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   295
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   296
fun err_uninit ctxt kind =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   297
  raise CONTEXT ("Tried to access uninitialized " ^ quote kind ^ " proof data" ^
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   298
    of_theory (theory_of ctxt), ctxt);
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   299
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   300
fun err_access ctxt kind =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   301
  raise CONTEXT ("Unauthorized access to " ^ quote kind ^ " proof data" ^
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   302
    of_theory (theory_of ctxt), ctxt);
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   303
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   304
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   305
(* data kind 'Isar/proof_data' *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   306
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   307
structure ProofDataDataArgs =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   308
struct
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   309
  val name = "Isar/proof_data";
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   310
  type T = (Object.kind * ((theory -> Object.T) * (context -> Object.T -> unit))) Symtab.table;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   311
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   312
  val empty = Symtab.empty;
6550
68f950b1a664 dummy patterns;
wenzelm
parents: 6528
diff changeset
   313
  val copy = I;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   314
  val prep_ext = I;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   315
  fun merge tabs = Symtab.merge (Object.eq_kind o pairself fst) tabs
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   316
    handle Symtab.DUPS kinds => err_inconsistent kinds;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   317
  fun print _ tab = Pretty.writeln (Pretty.strs (map #1 (Symtab.dest tab)));
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   318
end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   319
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   320
structure ProofDataData = TheoryDataFun(ProofDataDataArgs);
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   321
val print_proof_data = ProofDataData.print;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   322
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   323
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   324
(* init proof data *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   325
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   326
fun init_data kind meths thy =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   327
  let
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   328
    val name = Object.name_of_kind kind;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   329
    val tab = Symtab.update_new ((name, (kind, meths)), ProofDataData.get thy)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   330
      handle Symtab.DUP _ => err_dup_init thy name;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   331
  in thy |> ProofDataData.put tab end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   332
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   333
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   334
(* access data *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   335
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   336
fun lookup_data (ctxt as Context {data, ...}) kind =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   337
  let
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   338
    val thy = theory_of ctxt;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   339
    val name = Object.name_of_kind kind;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   340
  in
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   341
    (case Symtab.lookup (ProofDataData.get thy, name) of
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   342
      Some (k, meths) =>
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   343
        if Object.eq_kind (kind, k) then
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   344
          (case Symtab.lookup (data, name) of
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   345
            Some x => (x, meths)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   346
          | None => err_undef ctxt name)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   347
        else err_access ctxt name
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   348
    | None => err_uninit ctxt name)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   349
  end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   350
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   351
fun get_data kind f ctxt =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   352
  let val (x, _) = lookup_data ctxt kind
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   353
  in f x handle Match => Object.kind_error kind end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   354
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   355
fun print_data kind ctxt =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   356
  let val (x, (_, prt)) = lookup_data ctxt kind
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   357
  in prt ctxt x end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   358
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   359
fun put_data kind f x ctxt =
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   360
 (lookup_data ctxt kind;
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   361
  ctxt |> map_context (fn (thy, data, asms, binds, thms, cases, defs) =>
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   362
    (thy, Symtab.update ((Object.name_of_kind kind, f x), data), asms, binds, thms, cases, defs)));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   363
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   364
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   365
(* init context *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   366
5874
a58d4528121d renamed init_context to init;
wenzelm
parents: 5819
diff changeset
   367
fun init thy =
a58d4528121d renamed init_context to init;
wenzelm
parents: 5819
diff changeset
   368
  let val data = Symtab.map (fn (_, (f, _)) => f thy) (ProofDataData.get thy) in
8426
f6e022588624 cases: preserve order;
wenzelm
parents: 8403
diff changeset
   369
    make_context (thy, data, (([], []), ([], [])), Vartab.empty, Symtab.empty, [],
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   370
      (Vartab.empty, Vartab.empty, ([], Symtab.empty)))
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   371
  end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   372
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   373
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   374
(* get assumptions *)
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   375
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   376
fun assumptions (Context {asms = ((asms, _), _), ...}) = asms;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   377
fun fixed_names (Context {asms = (_, (fixes, _)), ...}) = map #2 fixes;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   378
fun used_table (Context {defs = (_, _, (_, tab)), ...}) = tab;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   379
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   380
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   381
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   382
(** default sorts and types **)
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   383
7670
e302e4269087 added cert_skolem;
wenzelm
parents: 7663
diff changeset
   384
fun def_sort (Context {defs = (_, sorts, _), ...}) xi = Vartab.lookup (sorts, xi);
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   385
7670
e302e4269087 added cert_skolem;
wenzelm
parents: 7663
diff changeset
   386
fun def_type (Context {binds, defs = (types, _, _), ...}) is_pat xi =
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   387
  (case Vartab.lookup (types, xi) of
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   388
    None =>
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   389
      if is_pat then None else
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   390
        (case Vartab.lookup (binds, xi) of
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   391
          Some (Some (_, T)) => Some (TypeInfer.polymorphicT T)
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   392
        | _ => None)
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   393
  | some => some);
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   394
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   395
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   396
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   397
(** prepare types **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   398
9504
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   399
local
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   400
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   401
fun read_typ_aux read ctxt s =
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   402
  transform_error (read (sign_of ctxt, def_sort ctxt)) s
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   403
    handle ERROR_MESSAGE msg => raise CONTEXT (msg, ctxt);
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   404
9504
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   405
fun cert_typ_aux cert ctxt raw_T = cert (sign_of ctxt) raw_T
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   406
  handle TYPE (msg, _, _) => raise CONTEXT (msg, ctxt);
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   407
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   408
in
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   409
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   410
val read_typ         = read_typ_aux Sign.read_typ;
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   411
val read_typ_no_norm = read_typ_aux Sign.read_typ_no_norm;
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   412
val cert_typ         = cert_typ_aux Sign.certify_typ;
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   413
val cert_typ_no_norm = cert_typ_aux Sign.certify_typ_no_norm;
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   414
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   415
end;
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   416
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   417
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   418
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   419
(* internalize Skolem constants *)
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   420
9133
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   421
fun fixes_of (Context {asms = (_, (fixes, _)), ...}) = fixes;
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   422
fun get_skolem ctxt x = assoc (fixes_of ctxt, x);
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   423
9325
a7f3deedacdb fix(_i): admit internal variables;
wenzelm
parents: 9291
diff changeset
   424
fun no_skolem no_internal ctxt x =
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
   425
  if can Syntax.dest_skolem x then
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   426
    raise CONTEXT ("Illegal reference to internal Skolem constant: " ^ quote x, ctxt)
9325
a7f3deedacdb fix(_i): admit internal variables;
wenzelm
parents: 9291
diff changeset
   427
  else if no_internal andalso can Syntax.dest_internal x then
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
   428
    raise CONTEXT ("Illegal reference to internal variable: " ^ quote x, ctxt)
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   429
  else x;
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   430
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
   431
fun intern_skolem ctxt =
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   432
  let
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   433
    fun intern (t as Free (x, T)) =
9325
a7f3deedacdb fix(_i): admit internal variables;
wenzelm
parents: 9291
diff changeset
   434
          (case get_skolem ctxt (no_skolem true ctxt x) of
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   435
            Some x' => Free (x', T)
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   436
          | None => t)
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   437
      | intern (t $ u) = intern t $ intern u
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   438
      | intern (Abs (x, T, t)) = Abs (x, T, intern t)
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   439
      | intern a = a;
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   440
  in intern end;
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   441
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   442
9133
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   443
(* externalize Skolem constants -- for printing purposes only *)
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   444
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   445
fun extern_skolem ctxt =
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   446
  let
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   447
    val rev_fixes = map Library.swap (fixes_of ctxt);
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   448
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   449
    fun extern (t as Free (x, T)) =
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   450
          (case assoc (rev_fixes, x) of
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   451
            Some x' => Free (if get_skolem ctxt x' = Some x then x' else NameSpace.hidden x', T)
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   452
          | None => t)
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   453
      | extern (t $ u) = extern t $ extern u
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   454
      | extern (Abs (x, T, t)) = Abs (x, T, extern t)
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   455
      | extern a = a;
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   456
  in extern end
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   457
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   458
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   459
(** prepare terms and propositions **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   460
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   461
(*
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   462
  (1) read / certify wrt. signature of context
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   463
  (2) intern Skolem constants
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   464
  (3) expand term bindings
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   465
*)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   466
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   467
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   468
(* read / certify wrt. signature *)     (*exception ERROR*) (*exception TERM*)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   469
5874
a58d4528121d renamed init_context to init;
wenzelm
parents: 5819
diff changeset
   470
fun read_def_termTs freeze sg (types, sorts, used) sTs =
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   471
  Sign.read_def_terms (sg, types, sorts) used freeze sTs;
5874
a58d4528121d renamed init_context to init;
wenzelm
parents: 5819
diff changeset
   472
a58d4528121d renamed init_context to init;
wenzelm
parents: 5819
diff changeset
   473
fun read_def_termT freeze sg defs sT = apfst hd (read_def_termTs freeze sg defs [sT]);
a58d4528121d renamed init_context to init;
wenzelm
parents: 5819
diff changeset
   474
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   475
fun read_term_sg freeze sg defs s = #1 (read_def_termT freeze sg defs (s, TypeInfer.logicT));
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   476
fun read_prop_sg freeze sg defs s = #1 (read_def_termT freeze sg defs (s, propT));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   477
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   478
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   479
fun cert_term_sg sg t = Thm.term_of (Thm.cterm_of sg t);
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   480
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   481
fun cert_prop_sg sg tm =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   482
  let
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   483
    val ctm = Thm.cterm_of sg tm;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   484
    val {t, T, ...} = Thm.rep_cterm ctm;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   485
  in
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   486
    if T = propT then t
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   487
    else raise TERM ("Term not of type prop", [t])
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   488
  end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   489
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   490
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   491
(* norm_term *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   492
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   493
(*beta normal form for terms (not eta normal form), chase variables in
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   494
  bindings environment (code taken from Pure/envir.ML)*)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   495
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   496
fun unifyT ctxt (T, U) =
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   497
  let val maxidx = Int.max (Term.maxidx_of_typ T, Term.maxidx_of_typ U)
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   498
  in #1 (Type.unify (Sign.tsig_of (sign_of ctxt)) maxidx Vartab.empty (T, U)) end;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   499
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   500
fun norm_term (ctxt as Context {binds, ...}) =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   501
  let
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   502
    (*raised when norm has no effect on a term, to do sharing instead of copying*)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   503
    exception SAME;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   504
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   505
    fun norm (t as Var (xi, T)) =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   506
          (case Vartab.lookup (binds, xi) of
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   507
            Some (Some (u, U)) =>
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   508
              let
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   509
                val env = unifyT ctxt (T, U) handle Type.TUNIFY =>
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   510
                  raise TYPE ("norm_term: ill-typed variable assigment", [T, U], [t, u]);
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   511
                val u' = Term.subst_TVars_Vartab env u;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   512
              in norm u' handle SAME => u' end
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   513
          | _ => raise CONTEXT ("Unbound schematic variable: " ^ Syntax.string_of_vname xi, ctxt))
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   514
      | norm (Abs (a, T, body)) =  Abs (a, T, norm body)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   515
      | norm (Abs (_, _, body) $ t) = normh (subst_bound (t, body))
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   516
      | norm (f $ t) =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   517
          ((case norm f of
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   518
            Abs (_, _, body) => normh (subst_bound (t, body))
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   519
          | nf => nf $ (norm t handle SAME => t)) handle SAME => f $ norm t)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   520
      | norm _ =  raise SAME
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   521
    and normh t = norm t handle SAME => t
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   522
  in normh end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   523
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   524
6550
68f950b1a664 dummy patterns;
wenzelm
parents: 6528
diff changeset
   525
(* dummy patterns *)
68f950b1a664 dummy patterns;
wenzelm
parents: 6528
diff changeset
   526
9540
02c51ca9c531 dummy_patterns moved to term.ML;
wenzelm
parents: 9515
diff changeset
   527
fun prepare_dummies t = #2 (Term.replace_dummy_patterns (1, t));
6762
a9a515a43ae0 read_term/prop_pat: do not freeze;
wenzelm
parents: 6721
diff changeset
   528
9540
02c51ca9c531 dummy_patterns moved to term.ML;
wenzelm
parents: 9515
diff changeset
   529
fun reject_dummies ctxt t = Term.no_dummy_patterns t
02c51ca9c531 dummy_patterns moved to term.ML;
wenzelm
parents: 9515
diff changeset
   530
  handle TERM _ => raise CONTEXT ("Illegal dummy pattern(s) in term", ctxt);
6550
68f950b1a664 dummy patterns;
wenzelm
parents: 6528
diff changeset
   531
68f950b1a664 dummy patterns;
wenzelm
parents: 6528
diff changeset
   532
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   533
(* read terms *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   534
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   535
fun gen_read read app is_pat (ctxt as Context {defs = (_, _, (used, _)), ...}) s =
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   536
  (transform_error (read (sign_of ctxt) (def_type ctxt is_pat, def_sort ctxt, used)) s
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   537
    handle TERM (msg, _) => raise CONTEXT (msg, ctxt)
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   538
    | ERROR_MESSAGE msg => raise CONTEXT (msg, ctxt))
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
   539
  |> app (intern_skolem ctxt)
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   540
  |> app (if is_pat then I else norm_term ctxt)
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   541
  |> app (if is_pat then prepare_dummies else (reject_dummies ctxt));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   542
5874
a58d4528121d renamed init_context to init;
wenzelm
parents: 5819
diff changeset
   543
val read_termTs = gen_read (read_def_termTs false) (apfst o map) false;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   544
val read_termT_pats = #1 oo gen_read (read_def_termTs false) (apfst o map) true;
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   545
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   546
fun read_term_pats T ctxt pats = read_termT_pats ctxt (map (rpair T) pats);
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   547
val read_prop_pats = read_term_pats propT;
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   548
6762
a9a515a43ae0 read_term/prop_pat: do not freeze;
wenzelm
parents: 6721
diff changeset
   549
val read_term = gen_read (read_term_sg true) I false;
a9a515a43ae0 read_term/prop_pat: do not freeze;
wenzelm
parents: 6721
diff changeset
   550
val read_prop = gen_read (read_prop_sg true) I false;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   551
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   552
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   553
(* certify terms *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   554
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   555
fun gen_cert cert is_pat ctxt t = t
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   556
  |> (if is_pat then I else norm_term ctxt)
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   557
  |> (fn t' => cert (sign_of ctxt) t' handle TERM (msg, _) => raise CONTEXT (msg, ctxt));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   558
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   559
val cert_term = gen_cert cert_term_sg false;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   560
val cert_prop = gen_cert cert_prop_sg false;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   561
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   562
fun cert_term_pats _ = map o gen_cert cert_term_sg true;
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   563
val cert_prop_pats = map o gen_cert cert_prop_sg true;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   564
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   565
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   566
(* declare terms *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   567
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   568
local
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   569
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   570
val ins_types = foldl_aterms
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   571
  (fn (types, Free (x, T)) => Vartab.update (((x, ~1), T), types)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   572
    | (types, Var v) => Vartab.update (v, types)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   573
    | (types, _) => types);
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   574
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   575
val ins_sorts = foldl_types (foldl_atyps
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   576
  (fn (sorts, TFree (x, S)) => Vartab.update (((x, ~1), S), sorts)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   577
    | (sorts, TVar v) => Vartab.update (v, sorts)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   578
    | (sorts, _) => sorts));
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   579
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   580
val ins_used = foldl_term_types (fn t => foldl_atyps
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   581
  (fn ((used, tab), TFree (x, _)) => (x ins used, Symtab.update_multi ((x, t), tab))
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   582
    | (used, _) => used));
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   583
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   584
fun ins_skolem def_ty = foldr
5994
7b84677315ed fixed declatation of patterns and skolem;
wenzelm
parents: 5935
diff changeset
   585
  (fn ((x, x'), types) =>
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   586
    (case def_ty x' of
5994
7b84677315ed fixed declatation of patterns and skolem;
wenzelm
parents: 5935
diff changeset
   587
      Some T => Vartab.update (((x, ~1), T), types)
7b84677315ed fixed declatation of patterns and skolem;
wenzelm
parents: 5935
diff changeset
   588
    | None => types));
7b84677315ed fixed declatation of patterns and skolem;
wenzelm
parents: 5935
diff changeset
   589
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   590
fun map_defaults f = map_context (fn (thy, data, asms, binds, thms, cases, defs) =>
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   591
  (thy, data, asms, binds, thms, cases, f defs));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   592
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   593
fun declare_syn (ctxt, t) =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   594
  ctxt
7670
e302e4269087 added cert_skolem;
wenzelm
parents: 7663
diff changeset
   595
  |> map_defaults (fn (types, sorts, used) => (ins_types (types, t), sorts, used))
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   596
  |> map_defaults (fn (types, sorts, used) => (types, ins_sorts (sorts, t), used));
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   597
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   598
fun declare_occ (ctxt as Context {asms = (_, (fixes, _)), ...}, t) =
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   599
  declare_syn (ctxt, t)
7670
e302e4269087 added cert_skolem;
wenzelm
parents: 7663
diff changeset
   600
  |> map_defaults (fn (types, sorts, used) => (types, sorts, ins_used (used, t)))
e302e4269087 added cert_skolem;
wenzelm
parents: 7663
diff changeset
   601
  |> map_defaults (fn (types, sorts, used) =>
e302e4269087 added cert_skolem;
wenzelm
parents: 7663
diff changeset
   602
      (ins_skolem (fn x => Vartab.lookup (types, (x, ~1))) (fixes, types), sorts, used));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   603
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   604
in
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   605
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   606
fun declare_term t ctxt = declare_occ (ctxt, t);
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   607
fun declare_terms ts ctxt = foldl declare_occ (ctxt, ts);
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   608
fun predeclare_terms ts ctxt = foldl declare_syn (ctxt, ts);
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   609
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   610
end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   611
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   612
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   613
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   614
(** Hindley-Milner polymorphism **)
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   615
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   616
(* warn_extra_tfrees *)
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   617
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   618
local
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   619
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   620
fun used_free (a, ts) =
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   621
  (case mapfilter (fn Free (x, _) => Some x | _ => None) ts of
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   622
    [] => None
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   623
  | xs => Some (a, xs));
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   624
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   625
fun warn_extra (names1: string list, tab1) (names2, tab2) =
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   626
  if names1 = names2 then ()
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   627
  else
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   628
    let
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   629
      val extra =
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   630
        Library.gen_rems Library.eq_fst (Symtab.dest tab2, Symtab.dest tab1)
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   631
        |> mapfilter used_free;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   632
      val tfrees = map #1 extra;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   633
      val frees = Library.sort_strings (Library.distinct (flat (map #2 extra)));
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   634
    in
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   635
      if null extra then ()
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   636
      else warning ("Danger! Just introduced free type variable(s): " ^ commas tfrees ^ " in " ^
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   637
          space_implode " or " frees)
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   638
    end;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   639
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   640
in
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   641
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   642
fun warn_extra_tfrees (ctxt1 as Context {defs = (_, _, used1), ...})
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   643
    (ctxt2 as Context {defs = (_, _, used2), ...}) = (warn_extra used1 used2; ctxt2);
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   644
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   645
end;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   646
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   647
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   648
(* generalize type variables *)
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   649
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   650
fun gen_tfrees inner opt_outer =
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   651
  let
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   652
    val inner_used = used_table inner;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   653
    val inner_fixes = fixed_names inner;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   654
    val (outer_used, outer_fixes) =
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   655
      (case opt_outer of
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   656
        None => (Symtab.empty, [])
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   657
      | Some ctxt => (used_table ctxt, fixed_names ctxt));
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   658
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   659
    val extra_fixes = inner_fixes \\ outer_fixes;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   660
    fun still_fixed (Free (x, _)) = not (x mem_string extra_fixes)
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   661
      | still_fixed _ = false;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   662
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   663
    fun add (gen, (a, xs)) =
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   664
      if is_some (Symtab.lookup (outer_used, a)) orelse exists still_fixed xs
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   665
      then gen else a :: gen;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   666
  in Symtab.foldl add ([], inner_used) end;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   667
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   668
fun generalizeT inner outer =
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   669
  let
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   670
    val tfrees = gen_tfrees inner (Some outer);
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   671
    fun gen (x, S) = if x mem_string tfrees then TVar ((x, 0), S) else TFree (x, S);
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   672
  in Term.map_type_tfree gen end;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   673
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   674
val generalize = Term.map_term_types oo generalizeT;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   675
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   676
9553
c2e3773475b6 norm_hhf results;
wenzelm
parents: 9540
diff changeset
   677
c2e3773475b6 norm_hhf results;
wenzelm
parents: 9540
diff changeset
   678
(** export theorems **)
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   679
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   680
fun get_free x (None, t as Free (y, _)) = if x = y then Some t else None
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   681
  | get_free _ (opt, _) = opt;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   682
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   683
fun find_free t x = foldl_aterms (get_free x) (None, t);
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   684
9553
c2e3773475b6 norm_hhf results;
wenzelm
parents: 9540
diff changeset
   685
val norm_hhf =
c2e3773475b6 norm_hhf results;
wenzelm
parents: 9540
diff changeset
   686
  Drule.forall_elim_vars_safe o Tactic.rewrite_rule [Drule.norm_hhf_eq];
c2e3773475b6 norm_hhf results;
wenzelm
parents: 9540
diff changeset
   687
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   688
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   689
local
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   690
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   691
fun export tfrees fixes goal_asms thm =
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   692
  thm
9553
c2e3773475b6 norm_hhf results;
wenzelm
parents: 9540
diff changeset
   693
  |> norm_hhf
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   694
  |> Seq.EVERY (rev (map op |> goal_asms))
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   695
  |> Seq.map (fn rule =>
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   696
    let
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   697
      val {sign, prop, maxidx, ...} = Thm.rep_thm rule;
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   698
      val frees = map (Thm.cterm_of sign) (mapfilter (find_free prop) fixes);
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   699
    in
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   700
      rule
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   701
      |> Drule.forall_intr_list frees
9553
c2e3773475b6 norm_hhf results;
wenzelm
parents: 9540
diff changeset
   702
      |> norm_hhf
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   703
      |> Drule.tvars_intr_list tfrees
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   704
    end);
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   705
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   706
fun diff_context inner None = (gen_tfrees inner None, fixed_names inner, assumptions inner)
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   707
  | diff_context inner (Some outer) =
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   708
      (gen_tfrees inner (Some outer),
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   709
        fixed_names inner \\ fixed_names outer,
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   710
        Library.drop (length (assumptions outer), assumptions inner));
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   711
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   712
in
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   713
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   714
fun export_wrt is_goal inner opt_outer =
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   715
  let
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   716
    val (tfrees, fixes, asms) = diff_context inner opt_outer;
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   717
    val goal_asms = map (fn (cprops, (exp, _)) => (map Drule.mk_cgoal cprops, exp)) asms;
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   718
    val tacs = flat (map (fn (cprops, (_, f)) => f is_goal (length cprops)) asms);
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   719
  in (export tfrees fixes goal_asms, tacs) end;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   720
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   721
end;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   722
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   723
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   724
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   725
(** bindings **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   726
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   727
(* update_binds *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   728
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   729
fun del_bind (ctxt, xi) =
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   730
  ctxt
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   731
  |> map_context (fn (thy, data, asms, binds, thms, cases, defs) =>
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   732
      (thy, data, asms, Vartab.update ((xi, None), binds), thms, cases, defs));
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   733
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   734
fun upd_bind (ctxt, ((x, i), t)) =
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   735
  let
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   736
    val T = Term.fastype_of t;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   737
    val t' =
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   738
      if null (Term.term_tvars t \\ Term.typ_tvars T) then t
8637
wenzelm
parents: 8616
diff changeset
   739
      else Var ((x ^ "_has_extra_type_vars_on_rhs", i), T);
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   740
  in
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   741
    ctxt
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   742
    |> declare_term t'
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   743
    |> map_context (fn (thy, data, asms, binds, thms, cases, defs) =>
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   744
        (thy, data, asms, Vartab.update (((x, i), Some (t', T)), binds), thms, cases, defs))
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   745
  end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   746
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   747
fun del_upd_bind (ctxt, (xi, None)) = del_bind (ctxt, xi)
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   748
  | del_upd_bind (ctxt, (xi, Some t)) = upd_bind (ctxt, (xi, t));
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   749
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   750
fun update_binds bs ctxt = foldl upd_bind (ctxt, bs);
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   751
fun delete_update_binds bs ctxt = foldl del_upd_bind (ctxt, bs);
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   752
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   753
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   754
(* simult_matches *)
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   755
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   756
fun simult_matches ctxt [] = []
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   757
  | simult_matches ctxt pairs =
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   758
      let
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   759
        val maxidx = foldl (fn (i, (t1, t2)) =>
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   760
          Int.max (i, Int.max (Term.maxidx_of_term t1, Term.maxidx_of_term t2))) (~1, pairs);
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   761
        val envs = Unify.smash_unifiers (sign_of ctxt, Envir.empty maxidx, pairs);
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   762
        val env =
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   763
          (case Seq.pull envs of
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   764
            None => raise CONTEXT ("Pattern match failed!", ctxt)      (* FIXME improve msg (!?) *)
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   765
          | Some (env, _) => env);
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   766
        val binds =
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   767
          (*Note: Envir.norm_term ensures proper type instantiation*)
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   768
          map (apsnd (Envir.norm_term env)) (Envir.alist_of env);
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   769
      in binds end;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   770
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   771
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   772
(* add_binds(_i) *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   773
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   774
local
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   775
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   776
fun gen_bind prep (ctxt, (xi as (x, _), raw_t)) =
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   777
  ctxt |> delete_update_binds [(xi, apsome (prep ctxt) raw_t)];
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   778
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   779
fun gen_binds prep binds ctxt = foldl (gen_bind prep) (ctxt, binds);
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   780
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   781
in
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   782
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   783
val add_binds = gen_binds read_term;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   784
val add_binds_i = gen_binds cert_term;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   785
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   786
val auto_bind_goal = add_binds_i o AutoBind.goal;
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   787
val auto_bind_facts = add_binds_i oo AutoBind.facts;
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   788
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   789
end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   790
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   791
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   792
(* match_bind(_i) *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   793
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   794
local
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   795
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   796
fun prep_bind (prep, prep_pats) (ctxt, (raw_pats, raw_t)) =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   797
  let
5935
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   798
    val t = prep ctxt raw_t;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   799
    val ctxt' = declare_term t ctxt;
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   800
    val pats = prep_pats (fastype_of t) ctxt' raw_pats;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   801
    val binds = simult_matches ctxt' (map (rpair t) pats);
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   802
  in (ctxt', binds) end;
7670
e302e4269087 added cert_skolem;
wenzelm
parents: 7663
diff changeset
   803
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   804
fun gen_binds prepp gen raw_binds ctxt =
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   805
  let
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   806
    val (ctxt', binds) = apsnd flat (foldl_map (prep_bind prepp) (ctxt, raw_binds));
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   807
    val binds' =
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   808
      if gen then map (apsnd (generalize ctxt' ctxt)) binds
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   809
      else binds;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   810
    val binds'' = map (apsnd Some) binds';
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   811
  in
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   812
    warn_extra_tfrees ctxt
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   813
     (if gen then ctxt (*sic!*) |> declare_terms (map #2 binds') |> add_binds_i binds''
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   814
      else ctxt' |> add_binds_i binds'')
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   815
  end;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   816
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   817
in
5935
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   818
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   819
val match_bind = gen_binds (read_term, read_term_pats);
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   820
val match_bind_i = gen_binds (cert_term, cert_term_pats);
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   821
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   822
end;
5935
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   823
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   824
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   825
(* proposition patterns *)
5935
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   826
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   827
fun prep_propp prep_prop prep_pats (ctxt, (raw_prop, (raw_pats1, raw_pats2))) =
6931
bd8aa6ae6bcd propp: 'concl' patterns;
wenzelm
parents: 6895
diff changeset
   828
  let
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   829
    val prop = prep_prop ctxt raw_prop;
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   830
    val ctxt' = declare_term prop ctxt;
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   831
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   832
    val pats = prep_pats ctxt' (raw_pats1 @ raw_pats2);    (*simultaneous type inference!*)
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   833
    val len1 = length raw_pats1;
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   834
  in (ctxt', (prop, (take (len1, pats), drop (len1, pats)))) end;
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   835
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   836
val read_propp = prep_propp read_prop read_prop_pats;
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   837
val cert_propp = prep_propp cert_prop cert_prop_pats;
5935
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   838
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   839
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   840
fun gen_bind_propp prepp (ctxt, propp) =
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   841
  let
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   842
    val (ctxt', (prop, (pats1, pats2))) = prepp (ctxt, propp);
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   843
    val pairs =
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   844
      map (rpair prop) pats1 @
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   845
      map (rpair (Logic.strip_imp_concl prop)) pats2;   (* FIXME handle params!? *)
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   846
    val binds = simult_matches ctxt' pairs;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   847
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   848
    (*note: context evaluated now, binds added later (lazy)*)
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   849
    val gen = generalize ctxt' ctxt;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   850
    fun gen_binds ct = ct |> add_binds_i (map (apsnd (Some o gen)) binds);
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   851
  in (ctxt' |> add_binds_i (map (apsnd Some) binds), (prop, gen_binds)) end;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   852
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   853
val bind_propp = gen_bind_propp read_propp;
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   854
val bind_propp_i = gen_bind_propp cert_propp;
6789
0e5a965de17a auto_bind_goal, auto_bind_facts;
wenzelm
parents: 6762
diff changeset
   855
0e5a965de17a auto_bind_goal, auto_bind_facts;
wenzelm
parents: 6762
diff changeset
   856
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   857
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   858
(** theorems **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   859
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
   860
(* get_thm(s) *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   861
9566
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   862
(*beware of proper order of evaluation!*)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   863
9566
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   864
fun retrieve_thms f g (ctxt as Context {thy, thms, ...}) =
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   865
  let
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   866
    val sg_ref = Sign.self_ref (Theory.sign_of thy);
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   867
    val get_from_thy = f thy;
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   868
  in
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   869
    fn name =>
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   870
      (case Symtab.lookup (thms, name) of
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   871
        Some (Some ths) => map (Thm.transfer_sg (Sign.deref sg_ref)) ths
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   872
      | _ => get_from_thy name) |> g name
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   873
  end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   874
9566
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   875
val get_thm = retrieve_thms PureThy.get_thms PureThy.single_thm;
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   876
val get_thm_closure = retrieve_thms PureThy.get_thms_closure PureThy.single_thm;
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   877
val get_thms = retrieve_thms PureThy.get_thms (K I);
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   878
val get_thms_closure = retrieve_thms PureThy.get_thms_closure (K I);
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   879
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   880
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
   881
(* put_thm(s) *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   882
7479
b482d827899c eliminated Syntax.binding;
wenzelm
parents: 7411
diff changeset
   883
fun put_thms ("", _) = I
b482d827899c eliminated Syntax.binding;
wenzelm
parents: 7411
diff changeset
   884
  | put_thms (name, ths) = map_context
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   885
      (fn (thy, data, asms, binds, thms, cases, defs) =>
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   886
        (thy, data, asms, binds, Symtab.update ((name, Some ths), thms), cases, defs));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   887
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
   888
fun put_thm (name, th) = put_thms (name, [th]);
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   889
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
   890
fun put_thmss [] ctxt = ctxt
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
   891
  | put_thmss (th :: ths) ctxt = ctxt |> put_thms th |> put_thmss ths;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   892
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   893
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   894
(* reset_thms *)
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   895
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   896
fun reset_thms name = map_context (fn (thy, data, asms, binds, thms, cases, defs) =>
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   897
  (thy, data, asms, binds, Symtab.update ((name, None), thms), cases, defs));
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   898
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   899
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
   900
(* have_thmss *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   901
9196
1f6f66fe777a facts: handle multiple lists of arguments;
wenzelm
parents: 9133
diff changeset
   902
fun have_thss (ctxt, ((name, more_attrs), ths_attrs)) =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   903
  let
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   904
    fun app ((ct, ths), (th, attrs)) =
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
   905
      let val (ct', th') = Thm.applys_attributes ((ct, th), attrs @ more_attrs)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   906
      in (ct', th' :: ths) end
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   907
    val (ctxt', rev_thms) = foldl app ((ctxt, []), ths_attrs);
9196
1f6f66fe777a facts: handle multiple lists of arguments;
wenzelm
parents: 9133
diff changeset
   908
    val thms = flat (rev rev_thms);
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
   909
  in (ctxt' |> put_thms (name, thms), (name, thms)) end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   910
9196
1f6f66fe777a facts: handle multiple lists of arguments;
wenzelm
parents: 9133
diff changeset
   911
fun have_thmss args ctxt = foldl_map have_thss (ctxt, args);
1f6f66fe777a facts: handle multiple lists of arguments;
wenzelm
parents: 9133
diff changeset
   912
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   913
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   914
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   915
(** assumptions **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   916
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   917
(* assume *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   918
7270
2b64729d9acb warn_vars;
wenzelm
parents: 7200
diff changeset
   919
local
6797
f86b96a0f6fb improved handling of assumptions;
wenzelm
parents: 6789
diff changeset
   920
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   921
fun gen_assm prepp (ctxt, (name, attrs, raw_prop_pats)) =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   922
  let
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   923
    val (ctxt', props) = foldl_map prepp (ctxt, raw_prop_pats);
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   924
7575
e1e2d07287d8 improved output;
wenzelm
parents: 7557
diff changeset
   925
    val cprops = map (Thm.cterm_of (sign_of ctxt')) props;
9553
c2e3773475b6 norm_hhf results;
wenzelm
parents: 9540
diff changeset
   926
    val asms = map (norm_hhf o Drule.assume_goal) cprops;
5919
a5b2d4b9ed6f have_tthms;
wenzelm
parents: 5874
diff changeset
   927
a5b2d4b9ed6f have_tthms;
wenzelm
parents: 5874
diff changeset
   928
    val ths = map (fn th => ([th], [])) asms;
9196
1f6f66fe777a facts: handle multiple lists of arguments;
wenzelm
parents: 9133
diff changeset
   929
    val (ctxt'', [(_, thms)]) =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   930
      ctxt'
6797
f86b96a0f6fb improved handling of assumptions;
wenzelm
parents: 6789
diff changeset
   931
      |> auto_bind_facts name props
9196
1f6f66fe777a facts: handle multiple lists of arguments;
wenzelm
parents: 9133
diff changeset
   932
      |> have_thmss [((name, attrs @ [Drule.tag_assumption]), ths)];
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   933
  in (ctxt'', (cprops, (name, asms), (name, thms))) end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   934
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   935
fun gen_assms prepp exp args ctxt =
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   936
  let
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   937
    val (ctxt', results) = foldl_map (gen_assm prepp) (ctxt, args);
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   938
    val cprops = flat (map #1 results);
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   939
    val asmss = map #2 results;
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   940
    val thmss = map #3 results;
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   941
    val ctxt'' =
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   942
      ctxt'
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   943
      |> map_context (fn (thy, data, ((asms_ct, asms_th), fixes), binds, thms, cases, defs) =>
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   944
        (thy, data, ((asms_ct @ [(cprops, exp)], asms_th @ asmss), fixes), binds, thms,
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   945
          cases, defs));
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   946
  in (warn_extra_tfrees ctxt ctxt'', (thmss, prems_of ctxt'')) end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   947
7270
2b64729d9acb warn_vars;
wenzelm
parents: 7200
diff changeset
   948
in
2b64729d9acb warn_vars;
wenzelm
parents: 7200
diff changeset
   949
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   950
val assume = gen_assms (apsnd #1 o bind_propp);
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   951
val assume_i = gen_assms (apsnd #1 o bind_propp_i);
7270
2b64729d9acb warn_vars;
wenzelm
parents: 7200
diff changeset
   952
2b64729d9acb warn_vars;
wenzelm
parents: 7200
diff changeset
   953
end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   954
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   955
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   956
(* variables *)
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   957
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   958
local
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   959
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
   960
fun prep_vars prep_typ (ctxt, (xs, raw_T)) =
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   961
  let
9325
a7f3deedacdb fix(_i): admit internal variables;
wenzelm
parents: 9291
diff changeset
   962
    val _ = (case filter (not o Syntax.is_identifier) (map (no_skolem false ctxt) xs) of
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   963
      [] => () | bads => raise CONTEXT ("Bad variable name(s): " ^ commas_quote bads, ctxt));
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   964
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   965
    val opt_T = apsome (prep_typ ctxt) raw_T;
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   966
    val T = if_none opt_T TypeInfer.logicT;
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   967
    val ctxt' = ctxt |> predeclare_terms (map (fn x => Free (x, T)) xs);
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   968
  in (ctxt', (xs, opt_T)) end;
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   969
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   970
in
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   971
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
   972
val read_vars = prep_vars read_typ;
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
   973
val cert_vars = prep_vars cert_typ;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   974
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   975
end;
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   976
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   977
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   978
(* fix *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   979
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   980
local
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   981
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   982
fun add_vars xs (fixes, names) =
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   983
  let
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   984
    val xs' = variantlist (xs, names);
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   985
    val fixes' = (xs ~~ map Syntax.skolem xs') @ fixes;
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   986
    val names' = xs' @ names;
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   987
  in (fixes', names') end;
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   988
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   989
fun map_vars f = map_context (fn (thy, data, (assumes, vars), binds, thms, cases, defs) =>
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   990
  (thy, data, (assumes, f vars), binds, thms, cases, defs));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   991
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   992
fun gen_fix prep raw_vars ctxt =
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   993
  let
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   994
    val (ctxt', varss) = foldl_map prep (ctxt, raw_vars);
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   995
    val xs = flat (map fst varss);
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   996
  in
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   997
    (case Library.duplicates xs of
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   998
      [] => ()
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   999
    | dups => raise CONTEXT ("Duplicate variable name(s): " ^ commas_quote dups, ctxt));
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1000
    ctxt' |> map_vars (add_vars xs)
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1001
  end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1002
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1003
in
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
  1004
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1005
val fix = gen_fix read_vars;
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1006
val fix_i = gen_fix cert_vars;
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1007
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1008
end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1009
6895
450b1f67f099 added transfer_used_names;
wenzelm
parents: 6875
diff changeset
  1010
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1011
(*Note: improper use may result in variable capture / dynamic scoping!*)
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1012
fun bind_skolem ctxt xs =
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1013
  let
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1014
    val ctxt' = ctxt |> fix_i [(xs, None)];
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1015
    fun bind (t as Free (x, T)) =
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1016
          if x mem_string xs then
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1017
            (case get_skolem ctxt' x of Some x' => Free (x', T) | None => t)
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1018
          else t
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1019
      | bind (t $ u) = bind t $ bind u
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1020
      | bind (Abs (x, T, t)) = Abs (x, T, bind t)
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1021
      | bind a = a;
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1022
  in bind end;
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1023
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1024
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1025
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1026
(** cases **)
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1027
8403
a8a0411a8e8c check_case: disallow (T)Vars in invoked case;
wenzelm
parents: 8384
diff changeset
  1028
fun check_case ctxt name (xs, ts) =
a8a0411a8e8c check_case: disallow (T)Vars in invoked case;
wenzelm
parents: 8384
diff changeset
  1029
  if null (foldr Term.add_typ_tvars (map snd xs, [])) andalso
a8a0411a8e8c check_case: disallow (T)Vars in invoked case;
wenzelm
parents: 8384
diff changeset
  1030
    null (foldr Term.add_term_vars (ts, [])) then ()
a8a0411a8e8c check_case: disallow (T)Vars in invoked case;
wenzelm
parents: 8384
diff changeset
  1031
  else raise CONTEXT ("Illegal schematic variable(s) in case " ^ quote name, ctxt);
a8a0411a8e8c check_case: disallow (T)Vars in invoked case;
wenzelm
parents: 8384
diff changeset
  1032
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1033
fun get_case (ctxt as Context {cases, ...}) name =
8426
f6e022588624 cases: preserve order;
wenzelm
parents: 8403
diff changeset
  1034
  (case assoc (cases, name) of
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1035
    None => raise CONTEXT ("Unknown case: " ^ quote name, ctxt)
8403
a8a0411a8e8c check_case: disallow (T)Vars in invoked case;
wenzelm
parents: 8384
diff changeset
  1036
  | Some c => (check_case ctxt name c; c));
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1037
8384
13bc74731ae6 add_cases: omit unnamed;
wenzelm
parents: 8373
diff changeset
  1038
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1039
fun add_cases xs = map_context (fn (thy, data, asms, binds, thms, cases, defs) =>
8426
f6e022588624 cases: preserve order;
wenzelm
parents: 8403
diff changeset
  1040
  (thy, data, asms, binds, thms, rev (filter_out (equal "" o #1) xs) @ cases, defs));
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1041
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1042
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1043
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1044
(** theory setup **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1045
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1046
val setup = [ProofDataData.init];
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1047
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1048
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1049
end;