src/Pure/Isar/proof_context.ML
author wenzelm
Tue, 06 Nov 2001 23:56:14 +0100
changeset 12086 742b9c3740dc
parent 12072 4281198fb8cd
child 12093 1b890f1e0b4d
permissions -rw-r--r--
cert_def: proper check of args, improved msgs; tuned;
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
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
    16
  val syntax_of: context -> Syntax.syntax * string list * string list  (* FIXME *)
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
    17
  val fixed_names_of: context -> string list
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
    18
  val assumptions_of: context -> (cterm list * exporter) list
7557
1b977741f530 export prems_of;
wenzelm
parents: 7505
diff changeset
    19
  val prems_of: context -> thm list
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    20
  val print_proof_data: theory -> unit
5874
a58d4528121d renamed init_context to init;
wenzelm
parents: 5819
diff changeset
    21
  val init: theory -> context
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
    22
  val is_fixed: context -> string -> bool
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    23
  val read_typ: context -> string -> typ
9504
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
    24
  val read_typ_no_norm: context -> string -> typ
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    25
  val cert_typ: context -> typ -> typ
9504
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
    26
  val cert_typ_no_norm: context -> typ -> typ
10583
f2d9f4fd370b export get_skolem;
wenzelm
parents: 10554
diff changeset
    27
  val get_skolem: context -> string -> string
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
    28
  val intern_skolem: context -> term -> term
9133
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
    29
  val extern_skolem: context -> term -> term
5874
a58d4528121d renamed init_context to init;
wenzelm
parents: 5819
diff changeset
    30
  val read_termTs: context -> (string * typ) list -> term list * (indexname * typ) list
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    31
  val read_term: context -> string -> term
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    32
  val read_prop: context -> string -> term
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
    33
  val read_prop_schematic: context -> string -> term
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
    34
  val read_terms: context -> string list -> term list
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
    35
  val read_termT_pats: context -> (string * typ) list -> term list
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
    36
  val read_term_pats: typ -> context -> string list -> term list
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
    37
  val read_prop_pats: context -> string list -> term list
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    38
  val cert_term: context -> term -> term
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    39
  val cert_prop: context -> term -> term
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
    40
  val cert_term_pats: typ -> context -> term list -> term list
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
    41
  val cert_prop_pats: context -> term list -> term list
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    42
  val declare_term: term -> context -> context
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    43
  val declare_terms: term list -> context -> context
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
    44
  val warn_extra_tfrees: context -> context -> context
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
    45
  val generalizeT: context -> context -> typ -> typ
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
    46
  val generalize: context -> context -> term -> term
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
    47
  val find_free: term -> string -> term option
12008
078637472921 simplified export;
wenzelm
parents: 11926
diff changeset
    48
  val export: bool -> context -> context -> thm -> thm Seq.seq
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
    49
  val drop_schematic: indexname * term option -> indexname * term option
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
    50
  val add_binds: (indexname * string option) list -> context -> context
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
    51
  val add_binds_i: (indexname * term option) list -> context -> context
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
    52
  val auto_bind_goal: term -> context -> context
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
    53
  val auto_bind_facts: string -> term list -> context -> context
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
    54
  val match_bind: bool -> (string list * string) list -> context -> context
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
    55
  val match_bind_i: bool -> (term list * term) list -> context -> context
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
    56
  val read_propp: context * (string * (string list * string list)) list list
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
    57
    -> context * (term * (term list * term list)) list list
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
    58
  val cert_propp: context * (term * (term list * term list)) list list
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
    59
    -> context * (term * (term list * term list)) list list
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
    60
  val read_propp_schematic: context * (string * (string list * string list)) list list
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
    61
    -> context * (term * (term list * term list)) list list
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
    62
  val cert_propp_schematic: context * (term * (term list * term list)) list list
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
    63
    -> context * (term * (term list * term list)) list list
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
    64
  val bind_propp: context * (string * (string list * string list)) list list
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
    65
    -> context * (term list list * (context -> context))
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
    66
  val bind_propp_i: context * (term * (term list * term list)) list list
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
    67
    -> context * (term list list * (context -> context))
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
    68
  val bind_propp_schematic: context * (string * (string list * string list)) list list
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
    69
    -> context * (term list list * (context -> context))
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
    70
  val bind_propp_schematic_i: context * (term * (term list * term list)) list list
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
    71
    -> context * (term list list * (context -> context))
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
    72
  val get_thm: context -> string -> thm
9566
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
    73
  val get_thm_closure: context -> string -> thm
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
    74
  val get_thms: context -> string -> thm list
9566
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
    75
  val get_thms_closure: context -> string -> thm list
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
    76
  val put_thm: string * thm -> context -> context
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
    77
  val put_thms: string * thm list -> context -> context
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
    78
  val put_thmss: (string * thm list) list -> context -> context
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
    79
  val reset_thms: string -> context -> context
9196
1f6f66fe777a facts: handle multiple lists of arguments;
wenzelm
parents: 9133
diff changeset
    80
  val have_thmss:
1f6f66fe777a facts: handle multiple lists of arguments;
wenzelm
parents: 9133
diff changeset
    81
    ((string * context attribute list) * (thm list * context attribute list) list) list ->
1f6f66fe777a facts: handle multiple lists of arguments;
wenzelm
parents: 9133
diff changeset
    82
      context -> context * (string * thm list) list
11918
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
    83
  val export_assume: exporter
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
    84
  val export_presume: exporter
12086
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
    85
  val cert_def: context -> term -> string * term
11918
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
    86
  val export_def: exporter
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
    87
  val assume: exporter
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
    88
    -> ((string * context attribute list) * (string * (string list * string list)) list) list
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
    89
    -> context -> context * (string * thm list) list
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
    90
  val assume_i: exporter
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
    91
    -> ((string * context attribute list) * (term * (term list * term list)) list) list
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
    92
    -> context -> context * (string * thm list) list
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
    93
  val read_vars: context * (string list * string option) -> context * (string list * typ option)
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
    94
  val cert_vars: context * (string list * typ option) -> context * (string list * typ option)
7411
4dbff71ac480 fix: common constraints;
wenzelm
parents: 7270
diff changeset
    95
  val fix: (string list * string option) list -> context -> context
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
    96
  val fix_i: (string list * typ option) list -> context -> context
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
    97
  val fix_direct: (string list * typ option) list -> context -> context
12016
425289df84d3 fix_frees;
wenzelm
parents: 12008
diff changeset
    98
  val fix_frees: term list -> context -> context
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
    99
  val bind_skolem: context -> string list -> term -> term
11793
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
   100
  val get_case: context -> string -> string option list -> RuleCases.T
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   101
  val add_cases: (string * RuleCases.T) list -> context -> context
10830
d19f9f4c35ee avoid renaming of params in cases;
wenzelm
parents: 10818
diff changeset
   102
  val apply_case: RuleCases.T -> context -> context * ((indexname * term option) list * term list)
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
   103
  val show_hyps: bool ref
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   104
  val add_syntax: (string * typ option * mixfix option) list -> context -> context
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   105
  val pretty_term: context -> term -> Pretty.T
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   106
  val pretty_typ: context -> typ -> Pretty.T
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   107
  val pretty_sort: context -> sort -> Pretty.T
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   108
  val pretty_thm: context -> thm -> Pretty.T
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   109
  val pretty_thms: context -> thm list -> Pretty.T
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   110
  val string_of_term: context -> term -> string
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
   111
  val verbose: bool ref
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
   112
  val setmp_verbose: ('a -> 'b) -> 'a -> 'b
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   113
  val print_syntax: context -> unit
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
   114
  val print_binds: context -> unit
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   115
  val print_lthms: context -> unit
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
   116
  val print_cases: context -> unit
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
   117
  val prems_limit: int ref
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   118
  val pretty_asms: context -> Pretty.T list
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
   119
  val pretty_context: context -> Pretty.T list
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   120
  val setup: (theory -> theory) list
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   121
end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   122
8151
9a2bdaa3c379 tuned sig;
wenzelm
parents: 8096
diff changeset
   123
signature PRIVATE_PROOF_CONTEXT =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   124
sig
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   125
  include PROOF_CONTEXT
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   126
  val init_data: Object.kind -> (theory -> Object.T) * (context -> Object.T -> unit)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   127
    -> theory -> theory
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   128
  val print_data: Object.kind -> context -> unit
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   129
  val get_data: Object.kind -> (Object.T -> 'a) -> context -> 'a
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   130
  val put_data: Object.kind -> ('a -> Object.T) -> 'a -> context -> context
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   131
end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   132
8151
9a2bdaa3c379 tuned sig;
wenzelm
parents: 8096
diff changeset
   133
structure ProofContext: PRIVATE_PROOF_CONTEXT =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   134
struct
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   135
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   136
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   137
(** datatype context **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   138
11816
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   139
type exporter = bool -> cterm list -> thm -> thm Seq.seq;
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   140
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   141
datatype context =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   142
  Context of
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   143
   {thy: theory,                                           (*current theory*)
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   144
    syntax: Syntax.syntax * string list * string list,     (*syntax with structs and mixfixed*)
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   145
    data: Object.T Symtab.table,                           (*user data*)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   146
    asms:
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   147
      ((cterm list * exporter) list *                      (*assumes: A ==> _*)
6931
bd8aa6ae6bcd propp: 'concl' patterns;
wenzelm
parents: 6895
diff changeset
   148
        (string * thm list) list) *
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   149
      ((string * string) list * string list),              (*fixes: !!x. _*)
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   150
    binds: (term * typ) option Vartab.table,               (*term bindings*)
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   151
    thms: thm list option Symtab.table,                    (*local thms*)
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   152
    cases: (string * RuleCases.T) list,                    (*local contexts*)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   153
    defs:
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   154
      typ Vartab.table *                                   (*type constraints*)
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   155
      sort Vartab.table *                                  (*default sorts*)
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   156
      (string list * term list Symtab.table)};             (*used type variables*)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   157
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   158
exception CONTEXT of string * context;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   159
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   160
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   161
fun make_context (thy, syntax, data, asms, binds, thms, cases, defs) =
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   162
  Context {thy = thy, syntax = syntax, data = data, asms = asms, binds = binds,
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   163
    thms = thms, cases = cases, defs = defs};
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   164
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   165
fun map_context f (Context {thy, syntax, data, asms, binds, thms, cases, defs}) =
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   166
  make_context (f (thy, syntax, data, asms, binds, thms, cases, defs));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   167
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   168
fun theory_of (Context {thy, ...}) = thy;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   169
val sign_of = Theory.sign_of o theory_of;
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   170
fun syntax_of (Context {syntax, ...}) = syntax;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   171
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   172
fun fixes_of (Context {asms = (_, (fixes, _)), ...}) = fixes;
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   173
val fixed_names_of = map #2 o fixes_of;
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   174
fun is_fixed (Context {asms = (_, (fixes, _)), ...}) x = exists (equal x o #2) fixes;
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   175
fun used_table (Context {defs = (_, _, (_, tab)), ...}) = tab;
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   176
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   177
fun assumptions_of (Context {asms = ((asms, _), _), ...}) = asms;
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   178
fun prems_of (Context {asms = ((_, prems), _), ...}) = flat (map #2 prems);
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   179
7270
2b64729d9acb warn_vars;
wenzelm
parents: 7200
diff changeset
   180
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   181
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   182
(** user data **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   183
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   184
(* errors *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   185
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   186
fun of_theory thy = "\nof theory " ^ Sign.str_of_sg (Theory.sign_of thy);
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   187
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   188
fun err_inconsistent kinds =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   189
  error ("Attempt to merge different versions of " ^ commas_quote kinds ^ " proof data");
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   190
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   191
fun err_dup_init thy kind =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   192
  error ("Duplicate initialization of " ^ quote kind ^ " proof data" ^ of_theory thy);
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   193
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   194
fun err_undef ctxt kind =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   195
  raise CONTEXT ("Tried to access undefined " ^ quote kind ^ " proof data", ctxt);
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   196
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   197
fun err_uninit ctxt kind =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   198
  raise CONTEXT ("Tried to access uninitialized " ^ quote kind ^ " proof data" ^
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   199
    of_theory (theory_of ctxt), ctxt);
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   200
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   201
fun err_access ctxt kind =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   202
  raise CONTEXT ("Unauthorized access to " ^ quote kind ^ " proof data" ^
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   203
    of_theory (theory_of ctxt), ctxt);
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   204
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   205
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   206
(* data kind 'Isar/proof_data' *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   207
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   208
structure ProofDataDataArgs =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   209
struct
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   210
  val name = "Isar/proof_data";
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   211
  type T = (Object.kind * ((theory -> Object.T) * (context -> Object.T -> unit))) Symtab.table;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   212
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   213
  val empty = Symtab.empty;
6550
68f950b1a664 dummy patterns;
wenzelm
parents: 6528
diff changeset
   214
  val copy = I;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   215
  val prep_ext = I;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   216
  fun merge tabs = Symtab.merge (Object.eq_kind o pairself fst) tabs
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   217
    handle Symtab.DUPS kinds => err_inconsistent kinds;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   218
  fun print _ tab = Pretty.writeln (Pretty.strs (map #1 (Symtab.dest tab)));
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   219
end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   220
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   221
structure ProofDataData = TheoryDataFun(ProofDataDataArgs);
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   222
val print_proof_data = ProofDataData.print;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   223
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   224
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   225
(* init proof data *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   226
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   227
fun init_data kind meths thy =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   228
  let
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   229
    val name = Object.name_of_kind kind;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   230
    val tab = Symtab.update_new ((name, (kind, meths)), ProofDataData.get thy)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   231
      handle Symtab.DUP _ => err_dup_init thy name;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   232
  in thy |> ProofDataData.put tab end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   233
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   234
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   235
(* access data *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   236
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   237
fun lookup_data (ctxt as Context {data, ...}) kind =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   238
  let
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   239
    val thy = theory_of ctxt;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   240
    val name = Object.name_of_kind kind;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   241
  in
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   242
    (case Symtab.lookup (ProofDataData.get thy, name) of
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   243
      Some (k, meths) =>
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   244
        if Object.eq_kind (kind, k) then
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   245
          (case Symtab.lookup (data, name) of
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   246
            Some x => (x, meths)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   247
          | None => err_undef ctxt name)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   248
        else err_access ctxt name
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   249
    | None => err_uninit ctxt name)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   250
  end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   251
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   252
fun get_data kind f ctxt =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   253
  let val (x, _) = lookup_data ctxt kind
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   254
  in f x handle Match => Object.kind_error kind end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   255
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   256
fun print_data kind ctxt =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   257
  let val (x, (_, prt)) = lookup_data ctxt kind
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   258
  in prt ctxt x end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   259
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   260
fun put_data kind f x ctxt =
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   261
 (lookup_data ctxt kind;
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   262
  map_context (fn (thy, syntax, data, asms, binds, thms, cases, defs) =>
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   263
    (thy, syntax, Symtab.update ((Object.name_of_kind kind, f x), data),
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   264
      asms, binds, thms, cases, defs)) ctxt);
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   265
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   266
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   267
(* init context *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   268
5874
a58d4528121d renamed init_context to init;
wenzelm
parents: 5819
diff changeset
   269
fun init thy =
a58d4528121d renamed init_context to init;
wenzelm
parents: 5819
diff changeset
   270
  let val data = Symtab.map (fn (_, (f, _)) => f thy) (ProofDataData.get thy) in
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   271
    make_context (thy, (Theory.syn_of thy, [], []), data, (([], []), ([], [])), Vartab.empty,
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   272
      Symtab.empty, [], (Vartab.empty, Vartab.empty, ([], Symtab.empty)))
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   273
  end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   274
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   275
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   276
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   277
(** default sorts and types **)
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   278
7670
e302e4269087 added cert_skolem;
wenzelm
parents: 7663
diff changeset
   279
fun def_sort (Context {defs = (_, sorts, _), ...}) xi = Vartab.lookup (sorts, xi);
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   280
7670
e302e4269087 added cert_skolem;
wenzelm
parents: 7663
diff changeset
   281
fun def_type (Context {binds, defs = (types, _, _), ...}) is_pat xi =
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   282
  (case Vartab.lookup (types, xi) of
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   283
    None =>
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   284
      if is_pat then None else
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   285
        (case Vartab.lookup (binds, xi) of
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   286
          Some (Some (_, T)) => Some (TypeInfer.polymorphicT T)
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   287
        | _ => None)
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   288
  | some => some);
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   289
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   290
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   291
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   292
(** prepare types **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   293
9504
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   294
local
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   295
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   296
fun read_typ_aux read ctxt s =
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   297
  transform_error (read (#1 (syntax_of ctxt)) (sign_of ctxt, def_sort ctxt)) s
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   298
    handle ERROR_MESSAGE msg => raise CONTEXT (msg, ctxt);
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   299
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   300
fun cert_typ_aux cert ctxt raw_T =
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   301
  cert (sign_of ctxt) raw_T
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   302
    handle TYPE (msg, _, _) => raise CONTEXT (msg, ctxt);
9504
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   303
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   304
in
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   305
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   306
val read_typ = read_typ_aux Sign.read_typ';
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   307
val read_typ_no_norm = read_typ_aux Sign.read_typ_no_norm';
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
   308
val cert_typ = cert_typ_aux Sign.certify_typ;
9504
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   309
val cert_typ_no_norm = cert_typ_aux Sign.certify_typ_no_norm;
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   310
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   311
end;
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   312
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   313
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   314
(* internalize Skolem constants *)
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   315
10583
f2d9f4fd370b export get_skolem;
wenzelm
parents: 10554
diff changeset
   316
fun lookup_skolem ctxt x = assoc (fixes_of ctxt, x);
f2d9f4fd370b export get_skolem;
wenzelm
parents: 10554
diff changeset
   317
fun get_skolem ctxt x = if_none (lookup_skolem ctxt x) x;
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   318
9325
a7f3deedacdb fix(_i): admit internal variables;
wenzelm
parents: 9291
diff changeset
   319
fun no_skolem no_internal ctxt x =
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
   320
  if can Syntax.dest_skolem x then
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   321
    raise CONTEXT ("Illegal reference to internal Skolem constant: " ^ quote x, ctxt)
9325
a7f3deedacdb fix(_i): admit internal variables;
wenzelm
parents: 9291
diff changeset
   322
  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
   323
    raise CONTEXT ("Illegal reference to internal variable: " ^ quote x, ctxt)
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   324
  else x;
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   325
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
   326
fun intern_skolem ctxt =
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   327
  let
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   328
    fun intern (t as Free (x, T)) =
10583
f2d9f4fd370b export get_skolem;
wenzelm
parents: 10554
diff changeset
   329
          (case lookup_skolem ctxt (no_skolem true ctxt x) of
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   330
            Some x' => Free (x', T)
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   331
          | None => t)
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   332
      | intern (t $ u) = intern t $ intern u
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   333
      | intern (Abs (x, T, t)) = Abs (x, T, intern t)
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   334
      | intern a = a;
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   335
  in intern end;
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   336
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   337
9133
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   338
(* externalize Skolem constants -- for printing purposes only *)
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   339
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   340
fun extern_skolem ctxt =
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   341
  let
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   342
    val rev_fixes = map Library.swap (fixes_of ctxt);
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   343
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   344
    fun extern (t as Free (x, T)) =
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   345
          (case assoc (rev_fixes, x) of
10583
f2d9f4fd370b export get_skolem;
wenzelm
parents: 10554
diff changeset
   346
            Some x' => Free (if lookup_skolem ctxt x' = Some x then x' else NameSpace.hidden x', T)
9133
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   347
          | None => t)
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   348
      | extern (t $ u) = extern t $ extern u
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   349
      | extern (Abs (x, T, t)) = Abs (x, T, extern t)
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   350
      | extern a = a;
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   351
  in extern end
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   352
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   353
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   354
(** prepare terms and propositions **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   355
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   356
(*
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   357
  (1) read / certify wrt. signature of context
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   358
  (2) intern Skolem constants
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   359
  (3) expand term bindings
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   360
*)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   361
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   362
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   363
(* read / certify wrt. signature *)     (*exception ERROR*) (*exception TERM*)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   364
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   365
fun read_def_termTs freeze syn sg (types, sorts, used) sTs =
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   366
  Sign.read_def_terms' syn (sg, types, sorts) used freeze sTs;
5874
a58d4528121d renamed init_context to init;
wenzelm
parents: 5819
diff changeset
   367
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   368
fun read_def_termT freeze syn sg defs sT = apfst hd (read_def_termTs freeze syn sg defs [sT]);
5874
a58d4528121d renamed init_context to init;
wenzelm
parents: 5819
diff changeset
   369
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   370
fun read_term_sg freeze syn sg defs s =
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   371
  #1 (read_def_termT freeze syn sg defs (s, TypeInfer.logicT));
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   372
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   373
fun read_prop_sg freeze syn sg defs s = #1 (read_def_termT freeze syn sg defs (s, propT));
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   374
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   375
fun read_terms_sg freeze syn sg defs =
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   376
  #1 o read_def_termTs freeze syn sg defs o map (rpair TypeInfer.logicT);
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   377
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   378
fun read_props_sg freeze syn sg defs = #1 o read_def_termTs freeze syn sg defs o map (rpair propT);
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   379
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   380
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   381
fun cert_term_sg sg t = Thm.term_of (Thm.cterm_of sg t);
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   382
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   383
fun cert_prop_sg sg tm =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   384
  let
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   385
    val ctm = Thm.cterm_of sg tm;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   386
    val {t, T, ...} = Thm.rep_cterm ctm;
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   387
  in if T = propT then t else raise TERM ("Term not of type prop", [t]) end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   388
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   389
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   390
(* norm_term *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   391
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   392
(*beta normal form for terms (not eta normal form), chase variables in
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   393
  bindings environment (code taken from Pure/envir.ML)*)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   394
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   395
fun unifyT ctxt (T, U) =
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   396
  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
   397
  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
   398
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   399
fun norm_term (ctxt as Context {binds, ...}) schematic =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   400
  let
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   401
    (*raised when norm has no effect on a term, to do sharing instead of copying*)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   402
    exception SAME;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   403
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   404
    fun norm (t as Var (xi, T)) =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   405
          (case Vartab.lookup (binds, xi) of
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   406
            Some (Some (u, U)) =>
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   407
              let
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   408
                val env = unifyT ctxt (T, U) handle Type.TUNIFY =>
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   409
                  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
   410
                val u' = Term.subst_TVars_Vartab env u;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   411
              in norm u' handle SAME => u' end
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   412
          | _ =>
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   413
            if schematic then raise SAME
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   414
            else raise CONTEXT ("Unbound schematic variable: " ^ Syntax.string_of_vname xi, ctxt))
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   415
      | norm (Abs (a, T, body)) =  Abs (a, T, norm body)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   416
      | norm (Abs (_, _, body) $ t) = normh (subst_bound (t, body))
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   417
      | norm (f $ t) =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   418
          ((case norm f of
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   419
            Abs (_, _, body) => normh (subst_bound (t, body))
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   420
          | nf => nf $ (norm t handle SAME => t)) handle SAME => f $ norm t)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   421
      | norm _ =  raise SAME
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   422
    and normh t = norm t handle SAME => t
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   423
  in normh end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   424
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   425
6550
68f950b1a664 dummy patterns;
wenzelm
parents: 6528
diff changeset
   426
(* dummy patterns *)
68f950b1a664 dummy patterns;
wenzelm
parents: 6528
diff changeset
   427
9540
02c51ca9c531 dummy_patterns moved to term.ML;
wenzelm
parents: 9515
diff changeset
   428
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
   429
9540
02c51ca9c531 dummy_patterns moved to term.ML;
wenzelm
parents: 9515
diff changeset
   430
fun reject_dummies ctxt t = Term.no_dummy_patterns t
02c51ca9c531 dummy_patterns moved to term.ML;
wenzelm
parents: 9515
diff changeset
   431
  handle TERM _ => raise CONTEXT ("Illegal dummy pattern(s) in term", ctxt);
6550
68f950b1a664 dummy patterns;
wenzelm
parents: 6528
diff changeset
   432
68f950b1a664 dummy patterns;
wenzelm
parents: 6528
diff changeset
   433
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   434
(* read terms *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   435
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   436
local
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   437
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   438
fun gen_read read app is_pat schematic (ctxt as Context {defs = (_, _, (used, _)), ...}) s =
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   439
  (transform_error (read (#1 (syntax_of ctxt))
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   440
      (sign_of ctxt) (def_type ctxt is_pat, def_sort ctxt, used)) s
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   441
    handle TERM (msg, _) => raise CONTEXT (msg, ctxt)
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   442
    | ERROR_MESSAGE msg => raise CONTEXT (msg, ctxt))
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
   443
  |> app (intern_skolem ctxt)
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   444
  |> app (if is_pat then I else norm_term ctxt schematic)
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   445
  |> app (if is_pat then prepare_dummies else (reject_dummies ctxt));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   446
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   447
in
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   448
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   449
val read_termTs = gen_read (read_def_termTs false) (apfst o map) false false;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   450
val read_termT_pats = #1 oo gen_read (read_def_termTs false) (apfst o map) true false;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   451
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   452
fun read_term_pats T ctxt pats = read_termT_pats ctxt (map (rpair T) pats);
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   453
val read_prop_pats = read_term_pats propT;
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   454
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   455
val read_term = gen_read (read_term_sg true) I false false;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   456
val read_prop = gen_read (read_prop_sg true) I false false;
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
   457
val read_prop_schematic = gen_read (read_prop_sg true) I false true;
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   458
val read_terms = gen_read (read_terms_sg true) map false false;
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   459
val read_props = gen_read (read_props_sg true) map false;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   460
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   461
end;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   462
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   463
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   464
(* certify terms *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   465
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   466
local
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   467
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   468
fun gen_cert cert is_pat schematic ctxt t = t
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   469
  |> (if is_pat then I else norm_term ctxt schematic)
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   470
  |> (fn t' => cert (sign_of ctxt) t' handle TERM (msg, _) => raise CONTEXT (msg, ctxt));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   471
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   472
in
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   473
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   474
val cert_term = gen_cert cert_term_sg false false;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   475
val cert_prop = gen_cert cert_prop_sg false false;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   476
val cert_props = map oo gen_cert cert_prop_sg false;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   477
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   478
fun cert_term_pats _ = map o gen_cert cert_term_sg true false;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   479
val cert_prop_pats = map o gen_cert cert_prop_sg true false;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   480
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   481
end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   482
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   483
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   484
(* declare terms *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   485
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   486
local
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   487
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   488
val ins_types = foldl_aterms
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   489
  (fn (types, Free (x, T)) => Vartab.update (((x, ~1), T), types)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   490
    | (types, Var v) => Vartab.update (v, types)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   491
    | (types, _) => types);
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   492
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   493
val ins_sorts = foldl_types (foldl_atyps
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   494
  (fn (sorts, TFree (x, S)) => Vartab.update (((x, ~1), S), sorts)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   495
    | (sorts, TVar v) => Vartab.update (v, sorts)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   496
    | (sorts, _) => sorts));
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   497
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   498
val ins_used = foldl_term_types (fn t => foldl_atyps
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   499
  (fn ((used, tab), TFree (x, _)) => (x ins used, Symtab.update_multi ((x, t), tab))
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   500
    | (used, _) => used));
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   501
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   502
fun ins_skolem def_ty = foldr
5994
7b84677315ed fixed declatation of patterns and skolem;
wenzelm
parents: 5935
diff changeset
   503
  (fn ((x, x'), types) =>
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   504
    (case def_ty x' of
5994
7b84677315ed fixed declatation of patterns and skolem;
wenzelm
parents: 5935
diff changeset
   505
      Some T => Vartab.update (((x, ~1), T), types)
7b84677315ed fixed declatation of patterns and skolem;
wenzelm
parents: 5935
diff changeset
   506
    | None => types));
7b84677315ed fixed declatation of patterns and skolem;
wenzelm
parents: 5935
diff changeset
   507
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   508
fun map_defaults f = map_context (fn (thy, syntax, data, asms, binds, thms, cases, defs) =>
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   509
  (thy, syntax, data, asms, binds, thms, cases, f defs));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   510
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   511
fun declare_syn (ctxt, t) =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   512
  ctxt
7670
e302e4269087 added cert_skolem;
wenzelm
parents: 7663
diff changeset
   513
  |> 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
   514
  |> 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
   515
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   516
fun declare_occ (ctxt as Context {asms = (_, (fixes, _)), ...}, t) =
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   517
  declare_syn (ctxt, t)
7670
e302e4269087 added cert_skolem;
wenzelm
parents: 7663
diff changeset
   518
  |> map_defaults (fn (types, sorts, used) => (types, sorts, ins_used (used, t)))
e302e4269087 added cert_skolem;
wenzelm
parents: 7663
diff changeset
   519
  |> map_defaults (fn (types, sorts, used) =>
e302e4269087 added cert_skolem;
wenzelm
parents: 7663
diff changeset
   520
      (ins_skolem (fn x => Vartab.lookup (types, (x, ~1))) (fixes, types), sorts, used));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   521
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   522
in
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   523
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   524
fun declare_term t ctxt = declare_occ (ctxt, t);
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   525
fun declare_terms ts ctxt = foldl declare_occ (ctxt, ts);
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   526
fun predeclare_terms ts ctxt = foldl declare_syn (ctxt, ts);
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   527
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   528
end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   529
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   530
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   531
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   532
(** local syntax **)
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   533
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   534
val fixedN = "\\<^fixed>";
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   535
val structN = "\\<^struct>";
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   536
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   537
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   538
(* add_syntax *)
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   539
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   540
local
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   541
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   542
val aT = TFree ("'a", logicS);
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   543
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   544
fun mixfix x None mx = (fixedN ^ x, replicate (Syntax.mixfix_args mx) aT ---> aT, mx)
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   545
  | mixfix x (Some T) mx = (fixedN ^ x, T, mx);
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   546
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   547
fun prep_mixfix (_, _, None) = None
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   548
  | prep_mixfix (x, opt_T, Some mx) = Some (mixfix x opt_T mx);
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   549
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   550
fun prep_mixfix' (_, _, None) = None
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   551
  | prep_mixfix' (x, _, Some Syntax.NoSyn) = None
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   552
  | prep_mixfix' (x, opt_T, _) = Some (x, mixfix x opt_T (Syntax.Delimfix x));
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   553
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   554
fun fixed_tr x = (fixedN ^ x, curry Term.list_comb (Syntax.free x));
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   555
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   556
fun prep_struct (x, _, None) = Some x
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   557
  | prep_struct _ = None;
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   558
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   559
in
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   560
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   561
fun add_syntax decls =
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   562
  map_context (fn (thy, (syn, structs, mixfixed), data, asms, binds, thms, cases, defs) =>
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   563
    let
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   564
      val structs' = mapfilter prep_struct decls @ structs;
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   565
      val mxs = mapfilter prep_mixfix decls;
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   566
      val (fixed, mxs_output) = Library.split_list (mapfilter prep_mixfix' decls);
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   567
      val trs = map fixed_tr fixed;
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   568
      val syn' = syn
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   569
        |> Syntax.extend_const_gram ("", false) mxs_output
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   570
        |> Syntax.extend_const_gram ("", true) mxs
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   571
        |> Syntax.extend_trfuns ([], trs, [], []);
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   572
    in (thy, (syn', structs', fixed @ mixfixed), data, asms, binds, thms, cases, defs) end)
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   573
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   574
end;
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   575
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   576
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   577
(* annotate_term *)  (* FIXME structs *)
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   578
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   579
fun annotate_term ctxt =
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   580
  let
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   581
    val (_, structs, mixfixed) = syntax_of ctxt;
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   582
    fun annotate (t as Free (x, T)) = if x mem_string mixfixed then Const (fixedN ^ x, T) else t
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   583
      | annotate (t $ u) = annotate t $ annotate u
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   584
      | annotate (Abs (x, T, t)) = Abs (x, T, annotate t)
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   585
      | annotate a = a;
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   586
  in annotate end;
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   587
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   588
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   589
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   590
(** pretty printing **)
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   591
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   592
fun pretty_term ctxt =
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   593
  Sign.pretty_term' (#1 (syntax_of ctxt)) (sign_of ctxt) o annotate_term ctxt;
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   594
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   595
val pretty_typ = Sign.pretty_typ o sign_of;
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   596
val pretty_sort = Sign.pretty_sort o sign_of;
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   597
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   598
val string_of_term = Pretty.string_of oo pretty_term;
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   599
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   600
val show_hyps = ref false;
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   601
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   602
fun pretty_thm ctxt thm =
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   603
  if ! show_hyps then setmp Display.show_hyps true (fn () =>
12086
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
   604
    Display.pretty_thm_aux (pretty_sort ctxt, pretty_term ctxt) false thm) ()
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   605
  else pretty_term ctxt (#prop (Thm.rep_thm thm));
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   606
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   607
fun pretty_thms ctxt [th] = pretty_thm ctxt th
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   608
  | pretty_thms ctxt ths = Pretty.blk (0, Pretty.fbreaks (map (pretty_thm ctxt) ths));
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   609
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   610
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   611
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   612
(** Hindley-Milner polymorphism **)
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   613
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   614
(* warn_extra_tfrees *)
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   615
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   616
local
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   617
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   618
fun used_free (a, ts) =
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   619
  (case mapfilter (fn Free (x, _) => Some x | _ => None) ts of
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   620
    [] => None
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   621
  | xs => Some (a, xs));
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   622
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   623
fun warn_extra (names1: string list, tab1) (names2, tab2) =
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   624
  if names1 = names2 then ()
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   625
  else
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   626
    let
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   627
      val extra =
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   628
        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
   629
        |> mapfilter used_free;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   630
      val tfrees = map #1 extra;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   631
      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
   632
    in
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   633
      if null extra then ()
12086
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
   634
      else warning ("Just introduced free type variable(s): " ^ commas tfrees ^ " in " ^
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   635
          space_implode " or " frees)
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   636
    end;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   637
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   638
in
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   639
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   640
fun warn_extra_tfrees (ctxt1 as Context {defs = (_, _, used1), ...})
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   641
    (ctxt2 as Context {defs = (_, _, used2), ...}) = (warn_extra used1 used2; ctxt2);
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   642
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   643
end;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   644
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   645
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   646
(* generalize type variables *)
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   647
12008
078637472921 simplified export;
wenzelm
parents: 11926
diff changeset
   648
fun gen_tfrees inner outer =
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   649
  let
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   650
    val extra_fixes = fixed_names_of inner \\ fixed_names_of outer;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   651
    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
   652
      | still_fixed _ = false;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   653
    fun add (gen, (a, xs)) =
12008
078637472921 simplified export;
wenzelm
parents: 11926
diff changeset
   654
      if is_some (Symtab.lookup (used_table outer, a)) orelse exists still_fixed xs
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   655
      then gen else a :: gen;
12008
078637472921 simplified export;
wenzelm
parents: 11926
diff changeset
   656
  in Symtab.foldl add ([], used_table inner) end;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   657
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   658
fun generalizeT inner outer =
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   659
  let
12008
078637472921 simplified export;
wenzelm
parents: 11926
diff changeset
   660
    val tfrees = gen_tfrees inner outer;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   661
    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
   662
  in Term.map_type_tfree gen end;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   663
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   664
val generalize = Term.map_term_types oo generalizeT;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   665
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   666
9553
c2e3773475b6 norm_hhf results;
wenzelm
parents: 9540
diff changeset
   667
c2e3773475b6 norm_hhf results;
wenzelm
parents: 9540
diff changeset
   668
(** export theorems **)
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   669
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   670
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
   671
  | get_free _ (opt, _) = opt;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   672
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   673
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
   674
12008
078637472921 simplified export;
wenzelm
parents: 11926
diff changeset
   675
fun export is_goal inner outer =
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   676
  let
12008
078637472921 simplified export;
wenzelm
parents: 11926
diff changeset
   677
    val tfrees = gen_tfrees inner outer;
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   678
    val fixes = fixed_names_of inner \\ fixed_names_of outer;
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   679
    val asms = Library.drop (length (assumptions_of outer), assumptions_of inner);
11816
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   680
    val exp_asms = map (fn (cprops, exp) => exp is_goal cprops) asms;
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   681
  in fn thm =>
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   682
    thm
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   683
    |> Tactic.norm_hhf
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   684
    |> Seq.EVERY (rev exp_asms)
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   685
    |> Seq.map (fn rule =>
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   686
      let
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   687
        val {sign, prop, ...} = Thm.rep_thm rule;
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   688
        val frees = map (Thm.cterm_of sign) (mapfilter (find_free prop) fixes);
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   689
      in
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   690
        rule
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   691
        |> Drule.forall_intr_list frees
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   692
        |> Tactic.norm_hhf
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   693
        |> Drule.tvars_intr_list tfrees
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   694
      end)
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   695
  end;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   696
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   697
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   698
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   699
(** bindings **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   700
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   701
(* update_binds *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   702
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   703
fun del_bind (ctxt, xi) =
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   704
  ctxt
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   705
  |> map_context (fn (thy, syntax, data, asms, binds, thms, cases, defs) =>
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   706
      (thy, syntax, data, asms, Vartab.update ((xi, None), binds), thms, cases, defs));
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   707
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   708
fun upd_bind (ctxt, ((x, i), t)) =
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   709
  let
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   710
    val T = Term.fastype_of t;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   711
    val t' =
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   712
      if null (Term.term_tvars t \\ Term.typ_tvars T) then t
8637
wenzelm
parents: 8616
diff changeset
   713
      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
   714
  in
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   715
    ctxt
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   716
    |> declare_term t'
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   717
    |> map_context (fn (thy, syntax, data, asms, binds, thms, cases, defs) =>
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   718
      (thy, syntax, data, asms, Vartab.update (((x, i), Some (t', T)), binds), thms, cases, defs))
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   719
  end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   720
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   721
fun del_upd_bind (ctxt, (xi, None)) = del_bind (ctxt, xi)
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   722
  | del_upd_bind (ctxt, (xi, Some t)) = upd_bind (ctxt, (xi, t));
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   723
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   724
fun update_binds bs ctxt = foldl upd_bind (ctxt, bs);
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   725
fun delete_update_binds bs ctxt = foldl del_upd_bind (ctxt, bs);
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   726
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   727
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   728
(* simult_matches *)
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   729
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   730
local
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   731
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   732
val add_vars = Term.foldl_aterms (fn (vs, Var (xi, _)) => xi ins vs | (vs, _) => vs);
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   733
fun vars_of ts = foldl add_vars ([], ts);
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   734
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   735
in
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   736
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   737
fun simult_matches ctxt [] = []
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   738
  | simult_matches ctxt pairs =
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   739
      let
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   740
        fun fail () = raise CONTEXT ("Pattern match failed!", ctxt);
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   741
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   742
        val maxidx = foldl (fn (i, (t1, t2)) =>
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   743
          Int.max (i, Int.max (Term.maxidx_of_term t1, Term.maxidx_of_term t2))) (~1, pairs);
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   744
        val envs = Unify.smash_unifiers (sign_of ctxt, Envir.empty maxidx,
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   745
          map swap pairs);    (*prefer assignment of variables from patterns*)
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   746
        val env =
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   747
          (case Seq.pull envs of
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   748
            None => fail ()
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   749
          | Some (env, _) => env);    (*ignore further results*)
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   750
        val domain = filter_out Term.is_replaced_dummy_pattern (vars_of (map #1 pairs));
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   751
        val _ =    (*may not assign variables from text*)
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   752
          if null (map #1 (Envir.alist_of env) inter vars_of (map #2 pairs)) then ()
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   753
          else fail ();
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   754
        fun norm_bind (xi, t) = if xi mem domain then Some (xi, Envir.norm_term env t) else None;
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   755
      in mapfilter norm_bind (Envir.alist_of env) end;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   756
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   757
end;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   758
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   759
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   760
(* add_binds(_i) *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   761
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   762
local
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   763
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   764
fun gen_bind prep (ctxt, (xi as (x, _), raw_t)) =
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   765
  ctxt |> delete_update_binds [(xi, apsome (prep ctxt) raw_t)];
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   766
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   767
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
   768
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
   769
in
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
   770
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   771
fun drop_schematic (b as (xi, Some t)) = if null (Term.term_vars t) then b else (xi, None)
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   772
  | drop_schematic b = b;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   773
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   774
val add_binds = gen_binds read_term;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   775
val add_binds_i = gen_binds cert_term;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   776
11764
fd780dd6e0b4 use ObjectLogic;
wenzelm
parents: 11526
diff changeset
   777
fun auto_bind_goal t ctxt =
fd780dd6e0b4 use ObjectLogic;
wenzelm
parents: 11526
diff changeset
   778
  ctxt |> add_binds_i (map drop_schematic (AutoBind.goal (sign_of ctxt) t));
fd780dd6e0b4 use ObjectLogic;
wenzelm
parents: 11526
diff changeset
   779
fd780dd6e0b4 use ObjectLogic;
wenzelm
parents: 11526
diff changeset
   780
fun auto_bind_facts name ts ctxt =
fd780dd6e0b4 use ObjectLogic;
wenzelm
parents: 11526
diff changeset
   781
  ctxt |> add_binds_i (map drop_schematic (AutoBind.facts (sign_of ctxt) name ts));
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   782
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   783
end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   784
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   785
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   786
(* match_bind(_i) *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   787
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   788
local
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   789
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   790
fun prep_bind prep_pats (ctxt, (raw_pats, t)) =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   791
  let
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   792
    val ctxt' = declare_term t ctxt;
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   793
    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
   794
    val binds = simult_matches ctxt' (map (rpair t) pats);
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   795
  in (ctxt', binds) end;
7670
e302e4269087 added cert_skolem;
wenzelm
parents: 7663
diff changeset
   796
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   797
fun gen_binds prep_terms prep_pats gen raw_binds ctxt =
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   798
  let
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   799
    val ts = prep_terms ctxt (map snd raw_binds);
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   800
    val (ctxt', binds) =
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   801
      apsnd flat (foldl_map (prep_bind prep_pats) (ctxt, map fst raw_binds ~~ ts));
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   802
    val binds' =
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   803
      if gen then map (apsnd (generalize ctxt' ctxt)) binds
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   804
      else binds;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   805
    val binds'' = map (apsnd Some) binds';
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   806
  in
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   807
    warn_extra_tfrees ctxt
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   808
     (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
   809
      else ctxt' |> add_binds_i binds'')
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   810
  end;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   811
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   812
in
5935
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   813
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   814
val match_bind = gen_binds read_terms read_term_pats;
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   815
val match_bind_i = gen_binds (map o cert_term) cert_term_pats;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   816
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   817
end;
5935
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   818
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   819
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   820
(* propositions with patterns *)
5935
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   821
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   822
local
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   823
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   824
fun prep_propp schematic prep_props prep_pats (context, args) =
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   825
  let
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   826
    fun prep ((ctxt, prop :: props), (_, (raw_pats1, raw_pats2))) =
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   827
          let
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   828
            val ctxt' = declare_term prop ctxt;
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   829
            val pats = prep_pats ctxt' (raw_pats1 @ raw_pats2);    (*simultaneous type inference!*)
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   830
            val len1 = length raw_pats1;
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   831
          in ((ctxt', props), (prop, (take (len1, pats), drop (len1, pats)))) end
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   832
      | prep _ = sys_error "prep_propp";
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   833
    val ((context', _), propp) = foldl_map (foldl_map prep)
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   834
        ((context, prep_props schematic context (flat (map (map fst) args))), args);
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   835
  in (context', propp) end;
5935
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   836
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   837
fun matches ctxt (prop, (pats1, pats2)) =
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   838
  simult_matches ctxt (map (rpair prop) pats1 @ map (rpair (Logic.strip_imp_concl prop)) pats2);
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   839
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   840
fun gen_bind_propp prepp (ctxt, raw_args) =
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   841
  let
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   842
    val (ctxt', args) = prepp (ctxt, raw_args);
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   843
    val binds = flat (flat (map (map (matches ctxt')) args));
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   844
    val propss = map (map #1) args;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   845
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   846
    (*generalize result: context evaluated now, binds added later*)
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   847
    val gen = generalize ctxt' ctxt;
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   848
    fun gen_binds c = c |> add_binds_i (map (apsnd (Some o gen)) binds);
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   849
  in (ctxt' |> add_binds_i (map (apsnd Some) binds), (propss, gen_binds)) end;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   850
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   851
in
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   852
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
   853
val read_propp = prep_propp false read_props read_prop_pats;
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
   854
val cert_propp = prep_propp false cert_props cert_prop_pats;
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   855
val read_propp_schematic = prep_propp true read_props read_prop_pats;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   856
val cert_propp_schematic = prep_propp true cert_props cert_prop_pats;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   857
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
   858
val bind_propp = gen_bind_propp read_propp;
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
   859
val bind_propp_i = gen_bind_propp cert_propp;
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
   860
val bind_propp_schematic = gen_bind_propp read_propp_schematic;
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   861
val bind_propp_schematic_i = gen_bind_propp cert_propp_schematic;
6789
0e5a965de17a auto_bind_goal, auto_bind_facts;
wenzelm
parents: 6762
diff changeset
   862
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   863
end;
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   864
6789
0e5a965de17a auto_bind_goal, auto_bind_facts;
wenzelm
parents: 6762
diff changeset
   865
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   866
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   867
(** theorems **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   868
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
   869
(* get_thm(s) *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   870
9566
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   871
(*beware of proper order of evaluation!*)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   872
9566
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   873
fun retrieve_thms f g (ctxt as Context {thy, thms, ...}) =
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   874
  let
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   875
    val sg_ref = Sign.self_ref (Theory.sign_of thy);
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   876
    val get_from_thy = f thy;
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   877
  in
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   878
    fn name =>
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   879
      (case Symtab.lookup (thms, name) of
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   880
        Some (Some ths) => map (Thm.transfer_sg (Sign.deref sg_ref)) ths
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   881
      | _ => get_from_thy name) |> g name
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   882
  end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   883
9566
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   884
val get_thm = retrieve_thms PureThy.get_thms PureThy.single_thm;
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   885
val get_thm_closure = retrieve_thms PureThy.get_thms_closure PureThy.single_thm;
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   886
val get_thms = retrieve_thms PureThy.get_thms (K I);
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   887
val get_thms_closure = retrieve_thms PureThy.get_thms_closure (K I);
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   888
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   889
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
   890
(* put_thm(s) *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   891
7479
b482d827899c eliminated Syntax.binding;
wenzelm
parents: 7411
diff changeset
   892
fun put_thms ("", _) = I
b482d827899c eliminated Syntax.binding;
wenzelm
parents: 7411
diff changeset
   893
  | put_thms (name, ths) = map_context
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   894
      (fn (thy, syntax, data, asms, binds, thms, cases, defs) =>
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   895
        (thy, syntax, data, asms, binds, Symtab.update ((name, Some ths), thms), cases, defs));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   896
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
   897
fun put_thm (name, th) = put_thms (name, [th]);
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   898
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
   899
fun put_thmss [] ctxt = ctxt
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
   900
  | put_thmss (th :: ths) ctxt = ctxt |> put_thms th |> put_thmss ths;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   901
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   902
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   903
(* reset_thms *)
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   904
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   905
fun reset_thms name = map_context (fn (thy, syntax, data, asms, binds, thms, cases, defs) =>
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   906
  (thy, syntax, data, asms, binds, Symtab.update ((name, None), thms), cases, defs));
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   907
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   908
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
   909
(* have_thmss *)
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_thss (ctxt, ((name, more_attrs), ths_attrs)) =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   912
  let
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   913
    fun app ((ct, ths), (th, attrs)) =
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
   914
      let val (ct', th') = Thm.applys_attributes ((ct, th), attrs @ more_attrs)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   915
      in (ct', th' :: ths) end
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   916
    val (ctxt', rev_thms) = foldl app ((ctxt, []), ths_attrs);
9196
1f6f66fe777a facts: handle multiple lists of arguments;
wenzelm
parents: 9133
diff changeset
   917
    val thms = flat (rev rev_thms);
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
   918
  in (ctxt' |> put_thms (name, thms), (name, thms)) end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   919
9196
1f6f66fe777a facts: handle multiple lists of arguments;
wenzelm
parents: 9133
diff changeset
   920
fun have_thmss args ctxt = foldl_map have_thss (ctxt, args);
1f6f66fe777a facts: handle multiple lists of arguments;
wenzelm
parents: 9133
diff changeset
   921
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   922
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   923
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   924
(** assumptions **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   925
11918
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
   926
(* basic exporters *)
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
   927
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
   928
fun export_assume true = Seq.single oo Drule.implies_intr_goals
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
   929
  | export_assume false = Seq.single oo Drule.implies_intr_list;
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
   930
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
   931
fun export_presume _ = export_assume false;
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
   932
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
   933
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   934
(* defs *)
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   935
12066
wenzelm
parents: 12057
diff changeset
   936
fun cert_def ctxt eq =
12016
425289df84d3 fix_frees;
wenzelm
parents: 12008
diff changeset
   937
  let
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   938
    fun err msg = raise CONTEXT (msg ^
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   939
      "\nThe error(s) above occurred in local definition: " ^ string_of_term ctxt eq, ctxt);
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   940
    val (lhs, rhs) = Logic.dest_equals (Term.strip_all_body eq)
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   941
      handle TERM _ => err "Not a meta-equality (==)";
12086
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
   942
    val (f, xs) = Term.strip_comb lhs;
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
   943
    val (c, _) = Term.dest_Free f handle TERM _ =>
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
   944
      err "Head of lhs must be free or fixed variable";
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   945
12086
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
   946
    fun is_free (Free (x, _)) = not (is_fixed ctxt x)
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
   947
      | is_free _ = false;
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
   948
    val extra_frees = filter is_free (term_frees rhs) \\ xs;
12016
425289df84d3 fix_frees;
wenzelm
parents: 12008
diff changeset
   949
  in
12086
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
   950
    conditional (not (forall (is_Bound orf is_free) xs andalso null (duplicates xs))) (fn () =>
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
   951
      err "Arguments of lhs must be distinct free or fixed variables");
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
   952
    conditional (f mem Term.term_frees rhs) (fn () =>
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
   953
      err "Element to be defined occurs on rhs");
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
   954
    conditional (not (null extra_frees)) (fn () =>
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
   955
      err ("Extra free variables on rhs: " ^ commas_quote (map (#1 o dest_Free) extra_frees)));
12066
wenzelm
parents: 12057
diff changeset
   956
    (* FIXME check for extra type variables on rhs *)
12086
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
   957
    (c, Term.list_all_free (mapfilter (try Term.dest_Free) xs, eq))
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   958
  end;
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   959
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   960
fun head_of_def cprop =
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   961
  #1 (Term.strip_comb (#1 (Logic.dest_equals (Term.strip_all_body (Thm.term_of cprop)))))
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   962
  |> Thm.cterm_of (Thm.sign_of_cterm cprop);
11918
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
   963
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
   964
fun export_def _ cprops thm =
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
   965
  thm
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
   966
  |> Drule.implies_intr_list cprops
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   967
  |> Drule.forall_intr_list (map head_of_def cprops)
11918
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
   968
  |> Drule.forall_elim_vars 0
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
   969
  |> RANGE (replicate (length cprops) (Tactic.rtac Drule.reflexive_thm)) 1;
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
   970
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
   971
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   972
(* assume *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   973
7270
2b64729d9acb warn_vars;
wenzelm
parents: 7200
diff changeset
   974
local
6797
f86b96a0f6fb improved handling of assumptions;
wenzelm
parents: 6789
diff changeset
   975
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   976
fun add_assm (ctxt, ((name, attrs), props)) =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   977
  let
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   978
    val cprops = map (Thm.cterm_of (sign_of ctxt)) props;
11816
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   979
    val asms = map (Tactic.norm_hhf o Thm.assume) cprops;
5919
a5b2d4b9ed6f have_tthms;
wenzelm
parents: 5874
diff changeset
   980
a5b2d4b9ed6f have_tthms;
wenzelm
parents: 5874
diff changeset
   981
    val ths = map (fn th => ([th], [])) asms;
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   982
    val (ctxt', [(_, thms)]) =
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   983
      ctxt
6797
f86b96a0f6fb improved handling of assumptions;
wenzelm
parents: 6789
diff changeset
   984
      |> auto_bind_facts name props
11526
b2e4077979b5 Removed tag_assumption.
berghofe
parents: 10830
diff changeset
   985
      |> have_thmss [((name, attrs), ths)];
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   986
  in (ctxt', (cprops, (name, asms), (name, thms))) end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   987
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   988
fun gen_assms prepp exp args ctxt =
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   989
  let
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   990
    val (ctxt1, propss) = prepp (ctxt, map snd args);
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   991
    val (ctxt2, results) = foldl_map add_assm (ctxt1, map fst args ~~ propss);
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   992
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   993
    val cprops = flat (map #1 results);
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   994
    val asmss = map #2 results;
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   995
    val thmss = map #3 results;
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   996
    val ctxt3 = ctxt2 |> map_context
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   997
      (fn (thy, syntax, data, ((asms_ct, asms_th), fixes), binds, thms, cases, defs) =>
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   998
        (thy, syntax, data, ((asms_ct @ [(cprops, exp)], asms_th @ asmss), fixes), binds, thms,
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   999
          cases, defs));
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1000
    val ctxt4 = ctxt3 |> put_thms ("prems", prems_of ctxt3);
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1001
  in (warn_extra_tfrees ctxt ctxt4, thmss) end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1002
7270
2b64729d9acb warn_vars;
wenzelm
parents: 7200
diff changeset
  1003
in
2b64729d9acb warn_vars;
wenzelm
parents: 7200
diff changeset
  1004
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
  1005
val assume = gen_assms (apsnd #1 o bind_propp);
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
  1006
val assume_i = gen_assms (apsnd #1 o bind_propp_i);
7270
2b64729d9acb warn_vars;
wenzelm
parents: 7200
diff changeset
  1007
2b64729d9acb warn_vars;
wenzelm
parents: 7200
diff changeset
  1008
end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1009
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1010
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1011
(* variables *)
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1012
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
  1013
local
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
  1014
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1015
fun prep_vars prep_typ no_internal (ctxt, (xs, raw_T)) =
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1016
  let
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1017
    val _ = (case filter (not o Syntax.is_identifier) (map (no_skolem no_internal ctxt) xs) of
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1018
      [] => () | bads => raise CONTEXT ("Bad variable name(s): " ^ commas_quote bads, ctxt));
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1019
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1020
    val opt_T = apsome (prep_typ ctxt) raw_T;
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1021
    val T = if_none opt_T TypeInfer.logicT;
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
  1022
    val ctxt' = ctxt |> predeclare_terms (map (fn x => Free (x, T)) xs);
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1023
  in (ctxt', (xs, opt_T)) end;
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1024
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
  1025
in
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
  1026
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1027
val read_vars = prep_vars read_typ true;
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1028
val cert_vars = prep_vars cert_typ false;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1029
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
  1030
end;
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
  1031
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1032
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1033
(* fix *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1034
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1035
local
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1036
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1037
fun map_vars f = map_context (fn (thy, syntax, data, (assumes, vars), binds, thms, cases, defs) =>
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1038
  (thy, syntax, data, (assumes, f vars), binds, thms, cases, defs));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1039
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1040
fun err_dups ctxt xs = raise CONTEXT ("Duplicate variable(s): " ^ commas_quote xs, ctxt);
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1041
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1042
fun add_vars _ xs (fixes, used) =
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1043
  let
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1044
    val xs' = variantlist (xs, used);
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1045
    val fixes' = (xs ~~ map Syntax.skolem xs') @ fixes;
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1046
    val used' = xs' @ used;
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1047
  in (fixes', used') end;
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1048
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1049
fun add_vars_direct ctxt xs (fixes, used) =
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1050
  (case xs inter_string map #1 fixes of
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1051
    [] => ((xs ~~ xs) @ fixes, xs @ used)
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1052
  | dups => err_dups ctxt dups);
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1053
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1054
fun gen_fix prep add raw_vars ctxt =
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1055
  let
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1056
    val (ctxt', varss) = foldl_map prep (ctxt, raw_vars);
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1057
    val xs = flat (map fst varss);
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1058
  in
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1059
    (case Library.duplicates xs of [] => () | dups => err_dups ctxt dups);
12048
d38b5388e695 added get_thms_with_closure;
wenzelm
parents: 12016
diff changeset
  1060
    ctxt' |> map_vars (add ctxt (rev xs))
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1061
  end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1062
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1063
in
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
  1064
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1065
val fix = gen_fix read_vars add_vars;
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1066
val fix_i = gen_fix cert_vars add_vars;
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1067
val fix_direct = gen_fix cert_vars add_vars_direct;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1068
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1069
end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1070
12048
d38b5388e695 added get_thms_with_closure;
wenzelm
parents: 12016
diff changeset
  1071
fun fix_frees ts ctxt =
d38b5388e695 added get_thms_with_closure;
wenzelm
parents: 12016
diff changeset
  1072
  let
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1073
    val frees = foldl Drule.add_frees ([], ts);
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1074
    fun new (x, T) = if is_fixed ctxt x then None else Some ([x], Some T);
12048
d38b5388e695 added get_thms_with_closure;
wenzelm
parents: 12016
diff changeset
  1075
  in fix_direct (mapfilter new frees) ctxt end;
12016
425289df84d3 fix_frees;
wenzelm
parents: 12008
diff changeset
  1076
6895
450b1f67f099 added transfer_used_names;
wenzelm
parents: 6875
diff changeset
  1077
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1078
(*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
  1079
fun bind_skolem ctxt xs =
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1080
  let
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1081
    val ctxt' = ctxt |> fix_i [(xs, None)];
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1082
    fun bind (t as Free (x, T)) =
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1083
          if x mem_string xs then
10583
f2d9f4fd370b export get_skolem;
wenzelm
parents: 10554
diff changeset
  1084
            (case lookup_skolem ctxt' x of Some x' => Free (x', T) | None => t)
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1085
          else t
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1086
      | bind (t $ u) = bind t $ bind u
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1087
      | 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
  1088
      | bind a = a;
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1089
  in bind end;
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1090
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1091
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1092
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1093
(** cases **)
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1094
11793
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
  1095
fun prep_case ctxt name xs {fixes, assumes, binds} =
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
  1096
  let
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
  1097
    fun replace (opt_x :: xs) ((y, T) :: ys) = (if_none opt_x y, T) :: replace xs ys
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
  1098
      | replace [] ys = ys
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
  1099
      | replace (_ :: _) [] = raise CONTEXT ("Too many parameters for case " ^ quote name, ctxt);
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
  1100
  in
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
  1101
    if null (foldr Term.add_typ_tvars (map snd fixes, [])) andalso
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
  1102
      null (foldr Term.add_term_vars (assumes, [])) then
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
  1103
        {fixes = replace xs fixes, assumes = assumes, binds = map drop_schematic binds}
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
  1104
    else raise CONTEXT ("Illegal schematic variable(s) in case " ^ quote name, ctxt)
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
  1105
  end;
8403
a8a0411a8e8c check_case: disallow (T)Vars in invoked case;
wenzelm
parents: 8384
diff changeset
  1106
11793
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
  1107
fun get_case (ctxt as Context {cases, ...}) name xs =
8426
f6e022588624 cases: preserve order;
wenzelm
parents: 8403
diff changeset
  1108
  (case assoc (cases, name) of
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1109
    None => raise CONTEXT ("Unknown case: " ^ quote name, ctxt)
11793
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
  1110
  | Some c => prep_case ctxt name xs c);
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1111
8384
13bc74731ae6 add_cases: omit unnamed;
wenzelm
parents: 8373
diff changeset
  1112
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1113
fun add_cases xs = map_context (fn (thy, syntax, data, asms, binds, thms, cases, defs) =>
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1114
  (thy, syntax, 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
  1115
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1116
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1117
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1118
(** print context information **)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1119
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1120
val verbose = ref false;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1121
fun verb f x = if ! verbose then f (x ()) else [];
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1122
fun verb_single x = verb Library.single x;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1123
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1124
fun setmp_verbose f x = Library.setmp verbose true f x;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1125
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1126
fun pretty_items prt name items =
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1127
  let
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1128
    fun prt_itms (name, [x]) = Pretty.block [Pretty.str (name ^ ":"), Pretty.brk 1, prt x]
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1129
      | prt_itms (name, xs) = Pretty.big_list (name ^ ":") (map prt xs);
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1130
  in
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1131
    if null items andalso not (! verbose) then []
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1132
    else [Pretty.big_list name (map prt_itms items)]
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1133
  end;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1134
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1135
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1136
(* local syntax *)
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1137
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1138
val print_syntax = Syntax.print_syntax o #1 o syntax_of;
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1139
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1140
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1141
(* term bindings *)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1142
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1143
val smash_option = fn (_, None) => None | (xi, Some b) => Some (xi, b);
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1144
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1145
fun pretty_binds (ctxt as Context {binds, ...}) =
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1146
  let
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1147
    fun prt_bind (xi, (t, T)) = pretty_term ctxt (Logic.mk_equals (Var (xi, T), t));
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1148
    val bs = mapfilter smash_option (Vartab.dest binds);
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1149
  in
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1150
    if null bs andalso not (! verbose) then []
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1151
    else [Pretty.big_list "term bindings:" (map prt_bind bs)]
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1152
  end;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1153
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1154
val print_binds = Pretty.writeln o Pretty.chunks o pretty_binds;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1155
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1156
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1157
(* local theorems *)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1158
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1159
fun pretty_lthms (ctxt as Context {thms, ...}) =
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1160
  pretty_items (pretty_thm ctxt) "facts:" (mapfilter smash_option (Symtab.dest thms));
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1161
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1162
val print_lthms = Pretty.writeln o Pretty.chunks o pretty_lthms;
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1163
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1164
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1165
(* local contexts *)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1166
10830
d19f9f4c35ee avoid renaming of params in cases;
wenzelm
parents: 10818
diff changeset
  1167
fun apply_case ({fixes, assumes, binds}: RuleCases.T) ctxt =
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1168
  let
10830
d19f9f4c35ee avoid renaming of params in cases;
wenzelm
parents: 10818
diff changeset
  1169
    fun bind (c, (x, T)) = (c |> fix_i [([x], Some T)], bind_skolem c [x] (Free (x, T)));
d19f9f4c35ee avoid renaming of params in cases;
wenzelm
parents: 10818
diff changeset
  1170
    val (ctxt', xs) = foldl_map bind (ctxt, fixes);
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1171
    fun app t = foldl Term.betapply (t, xs);
10830
d19f9f4c35ee avoid renaming of params in cases;
wenzelm
parents: 10818
diff changeset
  1172
  in (ctxt', (map (apsnd (apsome app)) binds, map app assumes)) end;
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1173
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1174
fun pretty_cases (ctxt as Context {cases, ...}) =
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1175
  let
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1176
    val prt_term = pretty_term ctxt;
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1177
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1178
    fun prt_let (xi, t) = Pretty.block
10818
37fa05a12459 tuned output;
wenzelm
parents: 10810
diff changeset
  1179
      [Pretty.quote (prt_term (Var (xi, Term.fastype_of t))), Pretty.str " =", Pretty.brk 1,
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1180
        Pretty.quote (prt_term t)];
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1181
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1182
    fun prt_sect _ _ _ [] = []
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1183
      | prt_sect s sep prt xs = [Pretty.block (Pretty.breaks (Pretty.str s ::
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1184
            flat (Library.separate sep (map (Library.single o prt) xs))))];
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1185
10830
d19f9f4c35ee avoid renaming of params in cases;
wenzelm
parents: 10818
diff changeset
  1186
    fun prt_case (name, (fixes, (lets, asms))) = Pretty.block (Pretty.fbreaks
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1187
      (Pretty.str (name ^ ":") ::
11915
df030220a2a8 print fixed names as plain strings;
wenzelm
parents: 11816
diff changeset
  1188
        prt_sect "fix" [] (Pretty.str o fst) fixes @
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1189
        prt_sect "let" [Pretty.str "and"] prt_let
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1190
          (mapfilter (fn (xi, Some t) => Some (xi, t) | _ => None) lets) @
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1191
        prt_sect "assume" [] (Pretty.quote o prt_term) asms));
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1192
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1193
    val cases' = rev (Library.gen_distinct Library.eq_fst cases);
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1194
  in
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1195
    if null cases andalso not (! verbose) then []
10830
d19f9f4c35ee avoid renaming of params in cases;
wenzelm
parents: 10818
diff changeset
  1196
    else [Pretty.big_list "cases:"
d19f9f4c35ee avoid renaming of params in cases;
wenzelm
parents: 10818
diff changeset
  1197
      (map (prt_case o apsnd (fn c => (#fixes c, #2 (apply_case c ctxt)))) cases')]
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1198
  end;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1199
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1200
val print_cases = Pretty.writeln o Pretty.chunks o pretty_cases;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1201
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1202
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1203
(* core context *)
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1204
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1205
val prems_limit = ref 10;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1206
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1207
fun pretty_asms ctxt =
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1208
  let
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1209
    val prt_term = pretty_term ctxt;
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1210
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1211
    (*fixes*)
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1212
    fun prt_fix (x, x') =
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1213
      if x = x' then Pretty.str x
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1214
      else Pretty.block [Pretty.str x, Pretty.str " =", Pretty.brk 1, prt_term (Syntax.free x')];
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1215
    fun prt_fixes [] = []
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1216
      | prt_fixes xs = [Pretty.block (Pretty.str "fixed variables:" :: Pretty.brk 1 ::
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1217
          Pretty.commas (map prt_fix xs))];
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1218
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1219
    (*prems*)
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1220
    val limit = ! prems_limit;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1221
    val prems = prems_of ctxt;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1222
    val len = length prems;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1223
    val prt_prems =
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1224
      (if len <= limit then [] else [Pretty.str "..."]) @
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1225
      map (pretty_thm ctxt) (Library.drop (len - limit, prems));
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1226
  in
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1227
    prt_fixes (rev (filter_out (can Syntax.dest_internal o #1) (fixes_of ctxt))) @
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1228
    (if null prems then [] else [Pretty.big_list "prems:" prt_prems])
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1229
  end;
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1230
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1231
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1232
(* main context *)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1233
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1234
fun pretty_context (ctxt as Context {cases, defs = (types, sorts, (used, _)), ...}) =
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1235
  let
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1236
    val prt_term = pretty_term ctxt;
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1237
    val prt_typ = pretty_typ ctxt;
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1238
    val prt_sort = pretty_sort ctxt;
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1239
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1240
    (*theory*)
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1241
    val pretty_thy = Pretty.block
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1242
      [Pretty.str "Theory:", Pretty.brk 1, Sign.pretty_sg (sign_of ctxt)];
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1243
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1244
    (*defaults*)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1245
    fun prt_atom prt prtT (x, X) = Pretty.block
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1246
      [prt x, Pretty.str " ::", Pretty.brk 1, prtT X];
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1247
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1248
    fun prt_var (x, ~1) = prt_term (Syntax.free x)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1249
      | prt_var xi = prt_term (Syntax.var xi);
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1250
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1251
    fun prt_varT (x, ~1) = prt_typ (TFree (x, []))
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1252
      | prt_varT xi = prt_typ (TVar (xi, []));
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1253
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1254
    val prt_defT = prt_atom prt_var prt_typ;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1255
    val prt_defS = prt_atom prt_varT prt_sort;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1256
  in
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1257
    verb_single (K pretty_thy) @
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1258
    pretty_asms ctxt @
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1259
    verb pretty_binds (K ctxt) @
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1260
    verb pretty_lthms (K ctxt) @
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1261
    verb pretty_cases (K ctxt) @
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1262
    verb_single (fn () => Pretty.big_list "type constraints:" (map prt_defT (Vartab.dest types))) @
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1263
    verb_single (fn () => Pretty.big_list "default sorts:" (map prt_defS (Vartab.dest sorts))) @
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1264
    verb_single (fn () => Pretty.strs ("used type variable names:" :: used))
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1265
  end;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1266
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1267
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1268
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1269
(** theory setup **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1270
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1271
val setup = [ProofDataData.init];
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1272
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1273
end;