src/Pure/Isar/proof_context.ML
author kleing
Mon, 21 Jun 2004 10:25:57 +0200
changeset 14981 e73f8140af78
parent 14974 b1ecb7859c99
child 15452 e2a721567f67
permissions -rw-r--r--
Merged in license change from Isabelle2004
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
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
     4
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
     5
Proof context information.
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
     6
*)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
     7
14707
2d6350d7b9b7 show_structs option;
wenzelm
parents: 14697
diff changeset
     8
val show_structs = ref false;
2d6350d7b9b7 show_structs option;
wenzelm
parents: 14697
diff changeset
     9
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    10
signature PROOF_CONTEXT =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    11
sig
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    12
  type context
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
    13
  type exporter
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    14
  exception CONTEXT of string * context
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    15
  val theory_of: context -> theory
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    16
  val sign_of: context -> Sign.sg
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
    17
  val is_fixed: context -> string -> bool
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
    18
  val fixed_names_of: context -> string list
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
    19
  val assumptions_of: context -> (cterm list * exporter) list
7557
1b977741f530 export prems_of;
wenzelm
parents: 7505
diff changeset
    20
  val prems_of: context -> thm list
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    21
  val print_proof_data: theory -> unit
5874
a58d4528121d renamed init_context to init;
wenzelm
parents: 5819
diff changeset
    22
  val init: theory -> context
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
    23
  val pretty_term: context -> term -> Pretty.T
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
    24
  val pretty_typ: context -> typ -> Pretty.T
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
    25
  val pretty_sort: context -> sort -> Pretty.T
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
    26
  val pp: context -> Pretty.pp
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
    27
  val pretty_thm: context -> thm -> Pretty.T
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
    28
  val pretty_thms: context -> thm list -> Pretty.T
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
    29
  val pretty_fact: context -> string * thm list -> Pretty.T
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
    30
  val string_of_term: context -> term -> string
12414
61e1681b0b5d added default_type;
wenzelm
parents: 12309
diff changeset
    31
  val default_type: context -> string -> typ option
12504
5b46173df7ad export used_types;
wenzelm
parents: 12414
diff changeset
    32
  val used_types: context -> string list
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    33
  val read_typ: context -> string -> typ
14780
949a3f558a43 xxx_typ_raw replace xxx_typ_no_norm forms;
wenzelm
parents: 14720
diff changeset
    34
  val read_typ_raw: context -> string -> typ
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    35
  val cert_typ: context -> typ -> typ
14780
949a3f558a43 xxx_typ_raw replace xxx_typ_no_norm forms;
wenzelm
parents: 14720
diff changeset
    36
  val cert_typ_raw: context -> typ -> typ
10583
f2d9f4fd370b export get_skolem;
wenzelm
parents: 10554
diff changeset
    37
  val get_skolem: context -> string -> string
9133
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
    38
  val extern_skolem: context -> term -> term
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
    39
  val read_termTs: context -> (string -> bool) -> (indexname -> typ option)
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
    40
    -> (indexname -> sort option) -> string list -> (string * typ) list
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
    41
    -> term list * (indexname * typ) list
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
    42
  val read_termTs_schematic: context -> (string -> bool) -> (indexname -> typ option)
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
    43
    -> (indexname -> sort option) -> string list -> (string * typ) list
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
    44
    -> term list * (indexname * typ) list
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
    45
  val read_term_liberal: context -> string -> term
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    46
  val read_term: context -> string -> term
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    47
  val read_prop: context -> string -> term
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
    48
  val read_prop_schematic: context -> string -> term
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
    49
  val read_terms: context -> string list -> term list
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
    50
  val read_term_pats: typ -> context -> string list -> term list
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
    51
  val read_prop_pats: context -> string list -> term list
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    52
  val cert_term: context -> term -> term
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    53
  val cert_prop: context -> term -> term
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
    54
  val cert_term_pats: typ -> context -> term list -> term list
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
    55
  val cert_prop_pats: context -> term list -> term list
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    56
  val declare_term: term -> context -> context
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    57
  val declare_terms: term list -> context -> context
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
    58
  val warn_extra_tfrees: context -> context -> context
12550
32843ad8160a generalize type variables properly: start with occurrences in objects
wenzelm
parents: 12530
diff changeset
    59
  val generalize: context -> context -> term list -> term list
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
    60
  val find_free: term -> string -> term option
12008
078637472921 simplified export;
wenzelm
parents: 11926
diff changeset
    61
  val export: bool -> context -> context -> thm -> thm Seq.seq
13415
63462ccc6fac tuned view;
wenzelm
parents: 13399
diff changeset
    62
  val export_standard: cterm list -> context -> context -> thm -> thm
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
    63
  val drop_schematic: indexname * term option -> indexname * term option
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
    64
  val add_binds: (indexname * string option) list -> context -> context
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
    65
  val add_binds_i: (indexname * term option) list -> context -> context
12147
64e69a8a945f adapted auto_bind_goal, auto_bind_facts;
wenzelm
parents: 12130
diff changeset
    66
  val auto_bind_goal: term list -> context -> context
64e69a8a945f adapted auto_bind_goal, auto_bind_facts;
wenzelm
parents: 12130
diff changeset
    67
  val auto_bind_facts: term list -> context -> context
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
    68
  val match_bind: bool -> (string list * string) list -> context -> context
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
    69
  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
    70
  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
    71
    -> context * (term * (term list * term list)) list list
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
    72
  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
    73
    -> context * (term * (term list * term list)) list list
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
    74
  val read_propp_schematic: context * (string * (string list * string list)) list list
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
    75
    -> context * (term * (term list * term list)) list list
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
    76
  val cert_propp_schematic: context * (term * (term list * term list)) list list
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
    77
    -> context * (term * (term list * term list)) list list
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
    78
  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
    79
    -> context * (term list list * (context -> context))
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
    80
  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
    81
    -> context * (term list list * (context -> context))
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
    82
  val bind_propp_schematic: context * (string * (string list * string list)) list list
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
    83
    -> context * (term list list * (context -> context))
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
    84
  val bind_propp_schematic_i: context * (term * (term list * term list)) list list
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
    85
    -> context * (term list list * (context -> context))
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
    86
  val get_thm: context -> string -> thm
9566
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
    87
  val get_thm_closure: context -> string -> thm
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
    88
  val get_thms: context -> string -> thm list
9566
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
    89
  val get_thms_closure: context -> string -> thm list
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
    90
  val cond_extern: context -> string -> xstring
13399
c136276dc847 support locale ``views'' (for cumulative predicates);
wenzelm
parents: 13378
diff changeset
    91
  val qualified: bool -> context -> context
c136276dc847 support locale ``views'' (for cumulative predicates);
wenzelm
parents: 13378
diff changeset
    92
  val restore_qualified: context -> context -> context
13425
119ae829ad9b support for split assumptions in cases (hyps vs. prems);
wenzelm
parents: 13415
diff changeset
    93
  val hide_thms: bool -> string list -> context -> context
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
    94
  val put_thm: string * thm -> context -> context
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
    95
  val put_thms: string * thm list -> context -> context
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
    96
  val put_thmss: (string * thm list) list -> context -> context
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
    97
  val reset_thms: string -> context -> context
14564
3667b4616e9a renamed have_thms to note_thms;
wenzelm
parents: 14508
diff changeset
    98
  val note_thmss:
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12704
diff changeset
    99
    ((bstring * context attribute list) * (xstring * context attribute list) list) list ->
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12704
diff changeset
   100
      context -> context * (bstring * thm list) list
14564
3667b4616e9a renamed have_thms to note_thms;
wenzelm
parents: 14508
diff changeset
   101
  val note_thmss_i:
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12704
diff changeset
   102
    ((bstring * context attribute list) * (thm list * context attribute list) list) list ->
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12704
diff changeset
   103
      context -> context * (bstring * thm list) list
11918
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
   104
  val export_assume: exporter
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
   105
  val export_presume: exporter
12086
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
   106
  val cert_def: context -> term -> string * term
11918
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
   107
  val export_def: exporter
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   108
  val assume: exporter
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   109
    -> ((string * context attribute list) * (string * (string list * string list)) list) list
12835
37202992c7e3 qualified_result replaces qualified;
wenzelm
parents: 12804
diff changeset
   110
    -> context -> context * (bstring * thm list) list
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   111
  val assume_i: exporter
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   112
    -> ((string * context attribute list) * (term * (term list * term list)) list) list
12835
37202992c7e3 qualified_result replaces qualified;
wenzelm
parents: 12804
diff changeset
   113
    -> context -> context * (bstring * thm list) list
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   114
  val read_vars: context * (string list * string option)
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   115
    -> context * (string list * typ option)
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   116
  val cert_vars: context * (string list * typ option)
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   117
    -> context * (string list * typ option)
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   118
  val read_vars_liberal: context * (string list * string option)
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   119
    -> context * (string list * typ option)
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   120
  val cert_vars_liberal: context * (string list * typ option)
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   121
    -> context * (string list * typ option)
7411
4dbff71ac480 fix: common constraints;
wenzelm
parents: 7270
diff changeset
   122
  val fix: (string list * string option) list -> context -> context
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   123
  val fix_i: (string list * typ option) list -> context -> context
14643
wenzelm
parents: 14564
diff changeset
   124
  val add_fixes: (string * typ option * Syntax.mixfix option) list -> context -> context
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   125
  val add_fixes_liberal: (string * typ option * Syntax.mixfix option) list -> context -> context
12016
425289df84d3 fix_frees;
wenzelm
parents: 12008
diff changeset
   126
  val fix_frees: term list -> context -> context
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
   127
  val bind_skolem: context -> string list -> term -> term
11793
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
   128
  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
   129
  val add_cases: (string * RuleCases.T) list -> context -> context
13425
119ae829ad9b support for split assumptions in cases (hyps vs. prems);
wenzelm
parents: 13415
diff changeset
   130
  val apply_case: RuleCases.T -> context
119ae829ad9b support for split assumptions in cases (hyps vs. prems);
wenzelm
parents: 13415
diff changeset
   131
    -> context * ((indexname * term option) list * (string * term list) list)
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
   132
  val verbose: bool ref
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
   133
  val setmp_verbose: ('a -> 'b) -> 'a -> 'b
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   134
  val print_syntax: context -> unit
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
   135
  val print_binds: context -> unit
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   136
  val print_lthms: context -> unit
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
   137
  val print_cases: context -> unit
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
   138
  val prems_limit: int ref
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   139
  val pretty_asms: context -> Pretty.T list
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
   140
  val pretty_context: context -> Pretty.T list
13284
20c818c966e6 thms_containing: optional limit argument;
wenzelm
parents: 13282
diff changeset
   141
  val thms_containing_limit: int ref
20c818c966e6 thms_containing: optional limit argument;
wenzelm
parents: 13282
diff changeset
   142
  val print_thms_containing: context -> int option -> string list -> unit
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   143
  val setup: (theory -> theory) list
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   144
end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   145
8151
9a2bdaa3c379 tuned sig;
wenzelm
parents: 8096
diff changeset
   146
signature PRIVATE_PROOF_CONTEXT =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   147
sig
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   148
  include PROOF_CONTEXT
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   149
  val init_data: Object.kind -> (theory -> Object.T) * (context -> Object.T -> unit)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   150
    -> theory -> theory
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   151
  val print_data: Object.kind -> context -> unit
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   152
  val get_data: Object.kind -> (Object.T -> 'a) -> context -> 'a
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   153
  val put_data: Object.kind -> ('a -> Object.T) -> 'a -> context -> context
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   154
end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   155
8151
9a2bdaa3c379 tuned sig;
wenzelm
parents: 8096
diff changeset
   156
structure ProofContext: PRIVATE_PROOF_CONTEXT =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   157
struct
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   158
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   159
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   160
(** datatype context **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   161
11816
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   162
type exporter = bool -> cterm list -> thm -> thm Seq.seq;
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
   163
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   164
datatype context =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   165
  Context of
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   166
   {thy: theory,                                              (*current theory*)
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   167
    syntax: Syntax.syntax * string list * string list,        (*syntax with structs and mixfixed*)
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   168
    data: Object.T Symtab.table,                              (*user data*)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   169
    asms:
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   170
      ((cterm list * exporter) list *                         (*assumes: A ==> _*)
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14665
diff changeset
   171
        (string * thm list) list) *                           (*prems: A |- A *)
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   172
      (string * string) list,                                 (*fixes: !!x. _*)
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   173
    binds: (term * typ) option Vartab.table,                  (*term bindings*)
13278
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
   174
    thms: bool * NameSpace.T * thm list option Symtab.table
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
   175
      * FactIndex.T,                                          (*local thms*)
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14665
diff changeset
   176
    (*thms is of the form (q, n, t, i) where
14508
859b11514537 Experimental command for instantiation of locales in proof contexts:
ballarin
parents: 14287
diff changeset
   177
       q: indicates whether theorems with qualified names may be stored;
859b11514537 Experimental command for instantiation of locales in proof contexts:
ballarin
parents: 14287
diff changeset
   178
          this is initially forbidden (false); flag may be changed with
859b11514537 Experimental command for instantiation of locales in proof contexts:
ballarin
parents: 14287
diff changeset
   179
          qualified and restore_qualified;
859b11514537 Experimental command for instantiation of locales in proof contexts:
ballarin
parents: 14287
diff changeset
   180
       n: theorem namespace;
859b11514537 Experimental command for instantiation of locales in proof contexts:
ballarin
parents: 14287
diff changeset
   181
       t: table of theorems;
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14665
diff changeset
   182
       i: index for theorem lookup (cf. thms_containing) *)
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   183
    cases: (string * RuleCases.T) list,                       (*local contexts*)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   184
    defs:
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   185
      typ Vartab.table *                                      (*type constraints*)
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   186
      sort Vartab.table *                                     (*default sorts*)
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   187
      string list *                                           (*used type variables*)
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   188
      term list Symtab.table};                                (*type variable occurrences*)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   189
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   190
exception CONTEXT of string * context;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   191
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   192
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   193
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
   194
  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
   195
    thms = thms, cases = cases, defs = defs};
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   196
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   197
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
   198
  make_context (f (thy, syntax, data, asms, binds, thms, cases, defs));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   199
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   200
fun theory_of (Context {thy, ...}) = thy;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   201
val sign_of = Theory.sign_of o theory_of;
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   202
fun syntax_of (Context {syntax, ...}) = syntax;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   203
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   204
fun fixes_of (Context {asms = (_, fixes), ...}) = fixes;
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   205
val fixed_names_of = map #2 o fixes_of;
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   206
fun is_fixed ctxt x = exists (equal x o #2) (fixes_of ctxt);
13278
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
   207
fun is_known (ctxt as Context {defs = (types, _, _, _), ...}) x =
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
   208
  is_some (Vartab.lookup (types, (x, ~1))) orelse is_fixed ctxt x;
12291
43f37745b600 type variables: clarified "used" vs. "occ";
wenzelm
parents: 12213
diff changeset
   209
fun type_occs (Context {defs = (_, _, _, tab), ...}) = tab;
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   210
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   211
fun assumptions_of (Context {asms = ((asms, _), _), ...}) = asms;
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   212
fun prems_of (Context {asms = ((_, prems), _), ...}) = flat (map #2 prems);
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   213
7270
2b64729d9acb warn_vars;
wenzelm
parents: 7200
diff changeset
   214
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   215
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   216
(** user data **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   217
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   218
(* errors *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   219
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   220
fun of_theory thy = "\nof theory " ^ Sign.str_of_sg (Theory.sign_of thy);
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   221
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   222
fun err_inconsistent kinds =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   223
  error ("Attempt to merge different versions of " ^ commas_quote kinds ^ " proof data");
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   224
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   225
fun err_dup_init thy kind =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   226
  error ("Duplicate initialization of " ^ quote kind ^ " proof data" ^ of_theory thy);
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   227
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   228
fun err_undef ctxt kind =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   229
  raise CONTEXT ("Tried to access undefined " ^ quote kind ^ " proof data", ctxt);
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   230
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   231
fun err_uninit ctxt kind =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   232
  raise CONTEXT ("Tried to access uninitialized " ^ quote kind ^ " proof data" ^
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   233
    of_theory (theory_of ctxt), ctxt);
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   234
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   235
fun err_access ctxt kind =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   236
  raise CONTEXT ("Unauthorized access to " ^ quote kind ^ " proof data" ^
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   237
    of_theory (theory_of ctxt), ctxt);
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   238
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   239
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   240
(* data kind 'Isar/proof_data' *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   241
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   242
structure ProofDataDataArgs =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   243
struct
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   244
  val name = "Isar/proof_data";
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   245
  type T = (Object.kind * ((theory -> Object.T) * (context -> Object.T -> unit))) Symtab.table;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   246
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   247
  val empty = Symtab.empty;
6550
68f950b1a664 dummy patterns;
wenzelm
parents: 6528
diff changeset
   248
  val copy = I;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   249
  val prep_ext = I;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   250
  fun merge tabs = Symtab.merge (Object.eq_kind o pairself fst) tabs
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   251
    handle Symtab.DUPS kinds => err_inconsistent kinds;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   252
  fun print _ tab = Pretty.writeln (Pretty.strs (map #1 (Symtab.dest tab)));
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   253
end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   254
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   255
structure ProofDataData = TheoryDataFun(ProofDataDataArgs);
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   256
val print_proof_data = ProofDataData.print;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   257
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   258
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   259
(* init proof data *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   260
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   261
fun init_data kind meths thy =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   262
  let
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   263
    val name = Object.name_of_kind kind;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   264
    val tab = Symtab.update_new ((name, (kind, meths)), ProofDataData.get thy)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   265
      handle Symtab.DUP _ => err_dup_init thy name;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   266
  in thy |> ProofDataData.put tab end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   267
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   268
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   269
(* access data *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   270
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   271
fun lookup_data (ctxt as Context {data, ...}) kind =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   272
  let
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   273
    val thy = theory_of ctxt;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   274
    val name = Object.name_of_kind kind;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   275
  in
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   276
    (case Symtab.lookup (ProofDataData.get thy, name) of
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   277
      Some (k, meths) =>
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   278
        if Object.eq_kind (kind, k) then
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   279
          (case Symtab.lookup (data, name) of
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   280
            Some x => (x, meths)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   281
          | None => err_undef ctxt name)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   282
        else err_access ctxt name
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   283
    | None => err_uninit ctxt name)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   284
  end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   285
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   286
fun get_data kind f ctxt =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   287
  let val (x, _) = lookup_data ctxt kind
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   288
  in f x handle Match => Object.kind_error kind end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   289
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   290
fun print_data kind ctxt =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   291
  let val (x, (_, prt)) = lookup_data ctxt kind
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   292
  in prt ctxt x end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   293
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   294
fun put_data kind f x ctxt =
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
   295
 (lookup_data ctxt kind;
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   296
  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
   297
    (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
   298
      asms, binds, thms, cases, defs)) ctxt);
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   299
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   300
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   301
(* init context *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   302
5874
a58d4528121d renamed init_context to init;
wenzelm
parents: 5819
diff changeset
   303
fun init thy =
a58d4528121d renamed init_context to init;
wenzelm
parents: 5819
diff changeset
   304
  let val data = Symtab.map (fn (_, (f, _)) => f thy) (ProofDataData.get thy) in
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   305
    make_context (thy, (Theory.syn_of thy, [], []), data, (([], []), []), Vartab.empty,
13278
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
   306
      (false, NameSpace.empty, Symtab.empty, FactIndex.empty), [],
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
   307
      (Vartab.empty, Vartab.empty, [], Symtab.empty))
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   308
  end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   309
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   310
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   311
12093
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   312
(** local syntax **)
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   313
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   314
val fixedN = "\\<^fixed>";
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   315
val structN = "\\<^struct>";
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   316
12100
bb10ac677955 proper syntax for structs;
wenzelm
parents: 12093
diff changeset
   317
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14665
diff changeset
   318
(* translation functions *)
14665
d2e5df3d1201 index syntax: support for general expressions (input only);
wenzelm
parents: 14643
diff changeset
   319
d2e5df3d1201 index syntax: support for general expressions (input only);
wenzelm
parents: 14643
diff changeset
   320
fun fixed_tr x = (fixedN ^ x, curry Term.list_comb (Syntax.free x));
d2e5df3d1201 index syntax: support for general expressions (input only);
wenzelm
parents: 14643
diff changeset
   321
12100
bb10ac677955 proper syntax for structs;
wenzelm
parents: 12093
diff changeset
   322
fun context_tr' ctxt =
bb10ac677955 proper syntax for structs;
wenzelm
parents: 12093
diff changeset
   323
  let
bb10ac677955 proper syntax for structs;
wenzelm
parents: 12093
diff changeset
   324
    val (_, structs, mixfixed) = syntax_of ctxt;
bb10ac677955 proper syntax for structs;
wenzelm
parents: 12093
diff changeset
   325
bb10ac677955 proper syntax for structs;
wenzelm
parents: 12093
diff changeset
   326
    fun tr' (t $ u) = tr' t $ tr' u
bb10ac677955 proper syntax for structs;
wenzelm
parents: 12093
diff changeset
   327
      | tr' (Abs (x, T, t)) = Abs (x, T, tr' t)
bb10ac677955 proper syntax for structs;
wenzelm
parents: 12093
diff changeset
   328
      | tr' (t as Free (x, T)) =
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14665
diff changeset
   329
          let val i = Library.find_index_eq x structs + 1 in
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14665
diff changeset
   330
            if i = 0 andalso x mem_string mixfixed then Const (fixedN ^ x, T)
14707
2d6350d7b9b7 show_structs option;
wenzelm
parents: 14697
diff changeset
   331
            else if i = 1 andalso not (! show_structs) then
2d6350d7b9b7 show_structs option;
wenzelm
parents: 14697
diff changeset
   332
              Syntax.const "_struct" $ Syntax.const "_indexdefault"
12100
bb10ac677955 proper syntax for structs;
wenzelm
parents: 12093
diff changeset
   333
            else t
bb10ac677955 proper syntax for structs;
wenzelm
parents: 12093
diff changeset
   334
          end
bb10ac677955 proper syntax for structs;
wenzelm
parents: 12093
diff changeset
   335
      | tr' a = a;
bb10ac677955 proper syntax for structs;
wenzelm
parents: 12093
diff changeset
   336
  in tr' end;
bb10ac677955 proper syntax for structs;
wenzelm
parents: 12093
diff changeset
   337
bb10ac677955 proper syntax for structs;
wenzelm
parents: 12093
diff changeset
   338
12576
9fd10052c3f7 added add_fixes: derives mssing type scheme from mixfix;
wenzelm
parents: 12550
diff changeset
   339
(* add syntax *)
9fd10052c3f7 added add_fixes: derives mssing type scheme from mixfix;
wenzelm
parents: 12550
diff changeset
   340
9fd10052c3f7 added add_fixes: derives mssing type scheme from mixfix;
wenzelm
parents: 12550
diff changeset
   341
fun mixfix_type mx = replicate (Syntax.mixfix_args mx) TypeInfer.logicT ---> TypeInfer.logicT;
12093
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   342
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   343
local
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   344
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   345
fun mixfix x None mx = (fixedN ^ x, mixfix_type mx, Syntax.fix_mixfix x mx)
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   346
  | mixfix x (Some T) mx = (fixedN ^ x, T, Syntax.fix_mixfix x mx);
12093
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   347
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   348
fun prep_mixfix (_, _, None) = None
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   349
  | prep_mixfix (x, opt_T, Some mx) = Some (mixfix x opt_T mx);
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   350
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   351
fun prep_mixfix' (_, _, None) = None
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   352
  | prep_mixfix' (x, _, Some Syntax.NoSyn) = None
12863
cc4dd256564f prep_mixfix': proper use of Syntax.literal;
wenzelm
parents: 12835
diff changeset
   353
  | prep_mixfix' (x, opt_T, _) = Some (x, mixfix x opt_T (Syntax.literal x));
12093
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   354
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   355
fun prep_struct (x, _, None) = Some x
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   356
  | prep_struct _ = None;
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   357
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   358
in
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   359
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   360
fun add_syntax decls =
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   361
  map_context (fn (thy, (syn, structs, mixfixed), data, asms, binds, thms, cases, defs) =>
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   362
    let
14901
c7a8a8eb7fc8 Sign.is_logtype;
wenzelm
parents: 14876
diff changeset
   363
      val is_logtype = Sign.is_logtype (Theory.sign_of thy);
12093
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   364
      val structs' = structs @ mapfilter prep_struct decls;
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   365
      val mxs = mapfilter prep_mixfix decls;
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   366
      val (fixed, mxs_output) = Library.split_list (mapfilter prep_mixfix' decls);
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   367
      val trs = map fixed_tr fixed;
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   368
      val syn' = syn
14901
c7a8a8eb7fc8 Sign.is_logtype;
wenzelm
parents: 14876
diff changeset
   369
        |> Syntax.extend_const_gram is_logtype ("", false) mxs_output
c7a8a8eb7fc8 Sign.is_logtype;
wenzelm
parents: 14876
diff changeset
   370
        |> Syntax.extend_const_gram is_logtype ("", true) mxs
12093
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   371
        |> Syntax.extend_trfuns ([], trs, [], []);
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   372
    in (thy, (syn', structs', fixed @ mixfixed), data, asms, binds, thms, cases, defs) end)
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   373
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   374
fun syn_of (Context {syntax = (syn, structs, _), ...}) =
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14665
diff changeset
   375
  syn |> Syntax.extend_trfuns (Syntax.struct_trfuns structs);
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14665
diff changeset
   376
12093
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   377
end;
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   378
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   379
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   380
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   381
(** pretty printing **)
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   382
14974
b1ecb7859c99 avoid premature evaluation of syn_of (wastes time in conjunction with pp);
wenzelm
parents: 14901
diff changeset
   383
fun pretty_term ctxt t = Sign.pretty_term' (syn_of ctxt) (sign_of ctxt) (context_tr' ctxt t);
b1ecb7859c99 avoid premature evaluation of syn_of (wastes time in conjunction with pp);
wenzelm
parents: 14901
diff changeset
   384
fun pretty_typ ctxt T = Sign.pretty_typ (sign_of ctxt) T;
b1ecb7859c99 avoid premature evaluation of syn_of (wastes time in conjunction with pp);
wenzelm
parents: 14901
diff changeset
   385
fun pretty_sort ctxt S = Sign.pretty_sort (sign_of ctxt) S;
b1ecb7859c99 avoid premature evaluation of syn_of (wastes time in conjunction with pp);
wenzelm
parents: 14901
diff changeset
   386
fun pretty_classrel ctxt cs = Sign.pretty_classrel (sign_of ctxt) cs;
b1ecb7859c99 avoid premature evaluation of syn_of (wastes time in conjunction with pp);
wenzelm
parents: 14901
diff changeset
   387
fun pretty_arity ctxt ar = Sign.pretty_arity (sign_of ctxt) ar;
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   388
14974
b1ecb7859c99 avoid premature evaluation of syn_of (wastes time in conjunction with pp);
wenzelm
parents: 14901
diff changeset
   389
fun pp ctxt = Pretty.pp (pretty_term ctxt, pretty_typ ctxt, pretty_sort ctxt,
b1ecb7859c99 avoid premature evaluation of syn_of (wastes time in conjunction with pp);
wenzelm
parents: 14901
diff changeset
   390
  pretty_classrel ctxt, pretty_arity ctxt);
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   391
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   392
val string_of_term = Pretty.string_of oo pretty_term;
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   393
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   394
fun pretty_thm ctxt thm =
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   395
  if ! Display.show_hyps then
14876
477c414000f8 pretty_thm/goals_aux, pretty_flexpair: pp;
wenzelm
parents: 14828
diff changeset
   396
    Display.pretty_thm_aux (pp ctxt) false thm
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   397
  else pretty_term ctxt (Thm.prop_of thm);
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   398
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   399
fun pretty_thms ctxt [th] = pretty_thm ctxt th
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   400
  | pretty_thms ctxt ths = Pretty.blk (0, Pretty.fbreaks (map (pretty_thm ctxt) ths));
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   401
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   402
fun pretty_fact ctxt ("", ths) = pretty_thms ctxt ths
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   403
  | pretty_fact ctxt (a, [th]) =
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   404
      Pretty.block [Pretty.str (a ^ ":"), Pretty.brk 1, pretty_thm ctxt th]
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   405
  | pretty_fact ctxt (a, ths) =
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   406
      Pretty.block (Pretty.fbreaks (Pretty.str (a ^ ":") :: map (pretty_thm ctxt) ths));
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   407
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   408
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   409
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   410
(** default sorts and types **)
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   411
12291
43f37745b600 type variables: clarified "used" vs. "occ";
wenzelm
parents: 12213
diff changeset
   412
fun def_sort (Context {defs = (_, sorts, _, _), ...}) xi = Vartab.lookup (sorts, xi);
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   413
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   414
fun def_type (Context {binds, defs = (types, _, _, _), ...}) pattern xi =
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   415
  (case Vartab.lookup (types, xi) of
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   416
    None =>
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   417
      if pattern then None else
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   418
        (case Vartab.lookup (binds, xi) of
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   419
          Some (Some (_, T)) => Some (TypeInfer.polymorphicT T)
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   420
        | _ => None)
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   421
  | some => some);
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   422
12504
5b46173df7ad export used_types;
wenzelm
parents: 12414
diff changeset
   423
fun default_type (Context {defs = (types, _, _, _), ...}) x = Vartab.lookup (types, (x, ~1));
5b46173df7ad export used_types;
wenzelm
parents: 12414
diff changeset
   424
fun used_types (Context {defs = (_, _, used, _), ...}) = used;
12414
61e1681b0b5d added default_type;
wenzelm
parents: 12309
diff changeset
   425
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   426
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   427
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   428
(** prepare types **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   429
9504
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   430
local
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   431
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   432
fun read_typ_aux read ctxt s =
12093
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   433
  transform_error (read (syn_of ctxt) (sign_of ctxt, def_sort ctxt)) s
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   434
    handle ERROR_MESSAGE msg => raise CONTEXT (msg, ctxt);
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   435
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   436
fun cert_typ_aux cert ctxt raw_T =
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   437
  cert (sign_of ctxt) raw_T
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   438
    handle TYPE (msg, _, _) => raise CONTEXT (msg, ctxt);
9504
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   439
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   440
in
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   441
14287
f630017ed01c Isar: where attribute supports instantiation of type variables.
ballarin
parents: 14257
diff changeset
   442
(* Read/certify type, using default sort information from context. *)
f630017ed01c Isar: where attribute supports instantiation of type variables.
ballarin
parents: 14257
diff changeset
   443
14780
949a3f558a43 xxx_typ_raw replace xxx_typ_no_norm forms;
wenzelm
parents: 14720
diff changeset
   444
val read_typ     = read_typ_aux Sign.read_typ';
949a3f558a43 xxx_typ_raw replace xxx_typ_no_norm forms;
wenzelm
parents: 14720
diff changeset
   445
val read_typ_raw = read_typ_aux Sign.read_typ_raw';
949a3f558a43 xxx_typ_raw replace xxx_typ_no_norm forms;
wenzelm
parents: 14720
diff changeset
   446
val cert_typ     = cert_typ_aux Sign.certify_typ;
949a3f558a43 xxx_typ_raw replace xxx_typ_no_norm forms;
wenzelm
parents: 14720
diff changeset
   447
val cert_typ_raw = cert_typ_aux Sign.certify_typ_raw;
9504
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   448
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   449
end;
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   450
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   451
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   452
(* internalize Skolem constants *)
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   453
10583
f2d9f4fd370b export get_skolem;
wenzelm
parents: 10554
diff changeset
   454
fun lookup_skolem ctxt x = assoc (fixes_of ctxt, x);
f2d9f4fd370b export get_skolem;
wenzelm
parents: 10554
diff changeset
   455
fun get_skolem ctxt x = if_none (lookup_skolem ctxt x) x;
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   456
12504
5b46173df7ad export used_types;
wenzelm
parents: 12414
diff changeset
   457
fun no_skolem internal ctxt x =
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
   458
  if can Syntax.dest_skolem x then
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   459
    raise CONTEXT ("Illegal reference to internal Skolem constant: " ^ quote x, ctxt)
12504
5b46173df7ad export used_types;
wenzelm
parents: 12414
diff changeset
   460
  else if not internal andalso can Syntax.dest_internal x then
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
   461
    raise CONTEXT ("Illegal reference to internal variable: " ^ quote x, ctxt)
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   462
  else x;
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   463
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   464
fun intern_skolem ctxt internal =
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   465
  let
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   466
    fun intern (t as Free (x, T)) =
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   467
          if internal x then t
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   468
          else
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   469
            (case lookup_skolem ctxt (no_skolem false ctxt x) of
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   470
              Some x' => Free (x', T)
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   471
            | None => t)
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   472
      | intern (t $ u) = intern t $ intern u
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   473
      | intern (Abs (x, T, t)) = Abs (x, T, intern t)
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   474
      | intern a = a;
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   475
  in intern end;
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   476
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   477
9133
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   478
(* externalize Skolem constants -- for printing purposes only *)
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   479
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   480
fun extern_skolem ctxt =
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   481
  let
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   482
    val rev_fixes = map Library.swap (fixes_of ctxt);
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   483
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   484
    fun extern (t as Free (x, T)) =
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   485
          (case assoc (rev_fixes, x) of
10583
f2d9f4fd370b export get_skolem;
wenzelm
parents: 10554
diff changeset
   486
            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
   487
          | None => t)
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   488
      | extern (t $ u) = extern t $ extern u
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   489
      | extern (Abs (x, T, t)) = Abs (x, T, extern t)
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   490
      | extern a = a;
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   491
  in extern end
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   492
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   493
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   494
(** prepare terms and propositions **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   495
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   496
(*
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   497
  (1) read / certify wrt. signature of context
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   498
  (2) intern Skolem constants
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   499
  (3) expand term bindings
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   500
*)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   501
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   502
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   503
(* read / certify wrt. signature *)     (*exception ERROR*) (*exception TERM*)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   504
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   505
fun read_def_termTs freeze pp syn sg (types, sorts, used) sTs =
14901
c7a8a8eb7fc8 Sign.is_logtype;
wenzelm
parents: 14876
diff changeset
   506
  Sign.read_def_terms' pp (Sign.is_logtype sg) syn (sg, types, sorts) used freeze sTs;
5874
a58d4528121d renamed init_context to init;
wenzelm
parents: 5819
diff changeset
   507
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   508
fun read_def_termT freeze pp syn sg defs sT =
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   509
  apfst hd (read_def_termTs freeze pp syn sg defs [sT]);
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   510
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   511
fun read_term_sg freeze pp syn sg defs s =
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   512
  #1 (read_def_termT freeze pp syn sg defs (s, TypeInfer.logicT));
5874
a58d4528121d renamed init_context to init;
wenzelm
parents: 5819
diff changeset
   513
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   514
fun read_prop_sg freeze pp syn sg defs s =
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   515
  #1 (read_def_termT freeze pp syn sg defs (s, propT));
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   516
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   517
fun read_terms_sg freeze pp syn sg defs =
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   518
  #1 o read_def_termTs freeze pp syn sg defs o map (rpair TypeInfer.logicT);
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   519
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   520
fun read_props_sg freeze pp syn sg defs =
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   521
  #1 o read_def_termTs freeze pp syn sg defs o map (rpair propT);
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   522
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   523
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   524
fun cert_term_sg pp sg t = #1 (Sign.certify_term pp sg t);
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   525
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   526
fun cert_prop_sg pp sg tm =
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   527
  let val (t, T, _) = Sign.certify_term pp sg tm
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   528
  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
   529
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   530
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   531
(* norm_term *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   532
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   533
(*beta normal form for terms (not eta normal form), chase variables in
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   534
  bindings environment (code taken from Pure/envir.ML)*)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   535
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   536
fun unifyT ctxt (T, U) =
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   537
  let val maxidx = Int.max (Term.maxidx_of_typ T, Term.maxidx_of_typ U)
12530
c32d201d7c08 tuned Type.unify;
wenzelm
parents: 12504
diff changeset
   538
  in #1 (Type.unify (Sign.tsig_of (sign_of ctxt)) (Vartab.empty, maxidx) (T, U)) end;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   539
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   540
fun norm_term (ctxt as Context {binds, ...}) schematic =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   541
  let
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   542
    (*raised when norm has no effect on a term, to do sharing instead of copying*)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   543
    exception SAME;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   544
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   545
    fun norm (t as Var (xi, T)) =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   546
          (case Vartab.lookup (binds, xi) of
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   547
            Some (Some (u, U)) =>
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   548
              let
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   549
                val env = unifyT ctxt (T, U) handle Type.TUNIFY =>
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13629
diff changeset
   550
                  raise TYPE ("norm_term: ill-typed variable assignment", [T, U], [t, u]);
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   551
                val u' = Term.subst_TVars_Vartab env u;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   552
              in norm u' handle SAME => u' end
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   553
          | _ =>
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   554
            if schematic then raise SAME
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   555
            else raise CONTEXT ("Unbound schematic variable: " ^ Syntax.string_of_vname xi, ctxt))
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   556
      | norm (Abs (a, T, body)) =  Abs (a, T, norm body)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   557
      | norm (Abs (_, _, body) $ t) = normh (subst_bound (t, body))
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   558
      | norm (f $ t) =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   559
          ((case norm f of
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   560
            Abs (_, _, body) => normh (subst_bound (t, body))
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   561
          | nf => nf $ (norm t handle SAME => t)) handle SAME => f $ norm t)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   562
      | norm _ =  raise SAME
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   563
    and normh t = norm t handle SAME => t
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   564
  in normh end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   565
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   566
6550
68f950b1a664 dummy patterns;
wenzelm
parents: 6528
diff changeset
   567
(* dummy patterns *)
68f950b1a664 dummy patterns;
wenzelm
parents: 6528
diff changeset
   568
9540
02c51ca9c531 dummy_patterns moved to term.ML;
wenzelm
parents: 9515
diff changeset
   569
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
   570
9540
02c51ca9c531 dummy_patterns moved to term.ML;
wenzelm
parents: 9515
diff changeset
   571
fun reject_dummies ctxt t = Term.no_dummy_patterns t
02c51ca9c531 dummy_patterns moved to term.ML;
wenzelm
parents: 9515
diff changeset
   572
  handle TERM _ => raise CONTEXT ("Illegal dummy pattern(s) in term", ctxt);
6550
68f950b1a664 dummy patterns;
wenzelm
parents: 6528
diff changeset
   573
68f950b1a664 dummy patterns;
wenzelm
parents: 6528
diff changeset
   574
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   575
(* read terms *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   576
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   577
local
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   578
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   579
fun append_env e1 e2 x = (case e2 x of None => e1 x | some => some);
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   580
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   581
fun gen_read' read app pattern dummies schematic
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   582
    ctxt internal more_types more_sorts more_used s =
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13629
diff changeset
   583
  let
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   584
    val types = append_env (def_type ctxt pattern) more_types;
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   585
    val sorts = append_env (def_sort ctxt) more_sorts;
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   586
    val used = used_types ctxt @ more_used;
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13629
diff changeset
   587
  in
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   588
    (transform_error (read (pp ctxt) (syn_of ctxt) (sign_of ctxt) (types, sorts, used)) s
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13629
diff changeset
   589
      handle TERM (msg, _) => raise CONTEXT (msg, ctxt)
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   590
        | ERROR_MESSAGE msg => raise CONTEXT (msg, ctxt))
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   591
    |> app (intern_skolem ctxt internal)
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   592
    |> app (if pattern then I else norm_term ctxt schematic)
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   593
    |> app (if pattern then prepare_dummies else if dummies then I else reject_dummies ctxt)
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   594
  end;
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   595
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   596
fun gen_read read app pattern dummies schematic ctxt =
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   597
  gen_read' read app pattern dummies schematic ctxt (K false) (K None) (K None) [];
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   598
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   599
in
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   600
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   601
val read_termTs           = gen_read' (read_def_termTs false) (apfst o map) false false false;
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   602
val read_termTs_schematic = gen_read' (read_def_termTs false) (apfst o map) false false true;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   603
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   604
fun read_term_pats T ctxt =
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   605
  #1 o gen_read (read_def_termTs false) (apfst o map) true false false ctxt o map (rpair T);
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   606
val read_prop_pats = read_term_pats propT;
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   607
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   608
fun read_term_liberal ctxt =
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   609
  gen_read' (read_term_sg true) I false false false ctxt (K true) (K None) (K None) [];
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   610
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   611
val read_term              = gen_read (read_term_sg true) I false false false;
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   612
val read_term_dummies      = gen_read (read_term_sg true) I false true false;
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   613
val read_prop              = gen_read (read_prop_sg true) I false false false;
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   614
val read_prop_schematic    = gen_read (read_prop_sg true) I false false true;
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   615
val read_terms             = gen_read (read_terms_sg true) map false false false;
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   616
fun read_props schematic   = gen_read (read_props_sg true) map false false schematic;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   617
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   618
end;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   619
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   620
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   621
(* certify terms *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   622
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   623
local
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   624
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   625
fun gen_cert cert pattern schematic ctxt t = t
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   626
  |> (if pattern then I else norm_term ctxt schematic)
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   627
  |> (fn t' => cert (pp ctxt) (sign_of ctxt) t'
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   628
    handle TERM (msg, _) => raise CONTEXT (msg, ctxt));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   629
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   630
in
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   631
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   632
val cert_term = gen_cert cert_term_sg false false;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   633
val cert_prop = gen_cert cert_prop_sg false false;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   634
val cert_props = map oo gen_cert cert_prop_sg false;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   635
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   636
fun cert_term_pats _ = map o gen_cert cert_term_sg true false;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   637
val cert_prop_pats = map o gen_cert cert_prop_sg true false;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   638
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   639
end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   640
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   641
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   642
(* declare terms *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   643
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   644
local
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   645
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   646
val ins_types = foldl_aterms
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   647
  (fn (types, Free (x, T)) => Vartab.update (((x, ~1), T), types)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   648
    | (types, Var v) => Vartab.update (v, types)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   649
    | (types, _) => types);
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   650
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   651
val ins_sorts = foldl_types (foldl_atyps
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   652
  (fn (sorts, TFree (x, S)) => Vartab.update (((x, ~1), S), sorts)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   653
    | (sorts, TVar v) => Vartab.update (v, sorts)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   654
    | (sorts, _) => sorts));
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   655
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   656
val ins_used = foldl_term_types (fn t => foldl_atyps
12504
5b46173df7ad export used_types;
wenzelm
parents: 12414
diff changeset
   657
  (fn (used, TFree (x, _)) => x ins_string used
5b46173df7ad export used_types;
wenzelm
parents: 12414
diff changeset
   658
    | (used, _) => used));
12291
43f37745b600 type variables: clarified "used" vs. "occ";
wenzelm
parents: 12213
diff changeset
   659
43f37745b600 type variables: clarified "used" vs. "occ";
wenzelm
parents: 12213
diff changeset
   660
val ins_occs = foldl_term_types (fn t => foldl_atyps
43f37745b600 type variables: clarified "used" vs. "occ";
wenzelm
parents: 12213
diff changeset
   661
  (fn (tab, TFree (x, _)) => Symtab.update_multi ((x, t), tab) | (tab, _) => tab));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   662
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   663
fun ins_skolem def_ty = foldr
5994
7b84677315ed fixed declatation of patterns and skolem;
wenzelm
parents: 5935
diff changeset
   664
  (fn ((x, x'), types) =>
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   665
    (case def_ty x' of
5994
7b84677315ed fixed declatation of patterns and skolem;
wenzelm
parents: 5935
diff changeset
   666
      Some T => Vartab.update (((x, ~1), T), types)
7b84677315ed fixed declatation of patterns and skolem;
wenzelm
parents: 5935
diff changeset
   667
    | None => types));
7b84677315ed fixed declatation of patterns and skolem;
wenzelm
parents: 5935
diff changeset
   668
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   669
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
   670
  (thy, syntax, data, asms, binds, thms, cases, f defs));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   671
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   672
fun declare_syn (ctxt, t) =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   673
  ctxt
12291
43f37745b600 type variables: clarified "used" vs. "occ";
wenzelm
parents: 12213
diff changeset
   674
  |> map_defaults (fn (types, sorts, used, occ) => (ins_types (types, t), sorts, used, occ))
43f37745b600 type variables: clarified "used" vs. "occ";
wenzelm
parents: 12213
diff changeset
   675
  |> map_defaults (fn (types, sorts, used, occ) => (types, ins_sorts (sorts, t), used, occ))
43f37745b600 type variables: clarified "used" vs. "occ";
wenzelm
parents: 12213
diff changeset
   676
  |> map_defaults (fn (types, sorts, used, occ) => (types, sorts, ins_used (used, t), occ));
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   677
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   678
fun declare_occ (ctxt as Context {asms = (_, fixes), ...}, t) =
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   679
  declare_syn (ctxt, t)
12291
43f37745b600 type variables: clarified "used" vs. "occ";
wenzelm
parents: 12213
diff changeset
   680
  |> map_defaults (fn (types, sorts, used, occ) => (types, sorts, used, ins_occs (occ, t)))
43f37745b600 type variables: clarified "used" vs. "occ";
wenzelm
parents: 12213
diff changeset
   681
  |> map_defaults (fn (types, sorts, used, occ) =>
43f37745b600 type variables: clarified "used" vs. "occ";
wenzelm
parents: 12213
diff changeset
   682
      (ins_skolem (fn x => Vartab.lookup (types, (x, ~1))) (fixes, types), sorts, used, occ));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   683
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   684
in
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   685
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   686
fun declare_term t ctxt = declare_occ (ctxt, t);
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   687
fun declare_terms ts ctxt = foldl declare_occ (ctxt, ts);
12130
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
   688
fun declare_terms_syntax ts ctxt = foldl declare_syn (ctxt, ts);
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   689
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   690
end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   691
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   692
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   693
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   694
(** Hindley-Milner polymorphism **)
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   695
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   696
(* warn_extra_tfrees *)
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   697
12130
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
   698
fun warn_extra_tfrees
12291
43f37745b600 type variables: clarified "used" vs. "occ";
wenzelm
parents: 12213
diff changeset
   699
    (ctxt1 as Context {defs = (_, _, _, occ1), ...})
43f37745b600 type variables: clarified "used" vs. "occ";
wenzelm
parents: 12213
diff changeset
   700
    (ctxt2 as Context {defs = (_, _, _, occ2), ...}) =
12130
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
   701
  let
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
   702
    fun known_tfree a (Type (_, Ts)) = exists (known_tfree a) Ts
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
   703
      | known_tfree a (TFree (a', _)) = a = a'
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
   704
      | known_tfree _ _ = false;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   705
12130
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
   706
    val extras =
12291
43f37745b600 type variables: clarified "used" vs. "occ";
wenzelm
parents: 12213
diff changeset
   707
      Library.gen_rems Library.eq_fst (Symtab.dest occ2, Symtab.dest occ1)
12130
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
   708
      |> map (fn (a, ts) => map (pair a) (mapfilter (try (#1 o Term.dest_Free)) ts)) |> flat
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
   709
      |> mapfilter (fn (a, x) =>
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
   710
          (case def_type ctxt1 false (x, ~1) of None => Some (a, x)
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
   711
          | Some T => if known_tfree a T then None else Some (a, x)));
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
   712
    val tfrees = map #1 extras |> Library.sort_strings |> Library.unique_strings;
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
   713
    val frees = map #2 extras |> Library.sort_strings |> Library.unique_strings;
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
   714
  in
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
   715
    if null extras then ()
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
   716
    else warning ("Just introduced free type variable(s): " ^ commas tfrees ^ " in " ^
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
   717
      space_implode " or " frees);
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
   718
    ctxt2
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
   719
  end;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   720
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   721
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   722
(* generalize type variables *)
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   723
12550
32843ad8160a generalize type variables properly: start with occurrences in objects
wenzelm
parents: 12530
diff changeset
   724
fun generalize_tfrees inner outer =
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   725
  let
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   726
    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
   727
    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
   728
      | still_fixed _ = false;
12550
32843ad8160a generalize type variables properly: start with occurrences in objects
wenzelm
parents: 12530
diff changeset
   729
    val occs_inner = type_occs inner;
32843ad8160a generalize type variables properly: start with occurrences in objects
wenzelm
parents: 12530
diff changeset
   730
    val occs_outer = type_occs outer;
32843ad8160a generalize type variables properly: start with occurrences in objects
wenzelm
parents: 12530
diff changeset
   731
    fun add (gen, a) =
32843ad8160a generalize type variables properly: start with occurrences in objects
wenzelm
parents: 12530
diff changeset
   732
      if is_some (Symtab.lookup (occs_outer, a)) orelse
32843ad8160a generalize type variables properly: start with occurrences in objects
wenzelm
parents: 12530
diff changeset
   733
        exists still_fixed (Symtab.lookup_multi (occs_inner, a))
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   734
      then gen else a :: gen;
12550
32843ad8160a generalize type variables properly: start with occurrences in objects
wenzelm
parents: 12530
diff changeset
   735
  in fn tfrees => foldl add ([], tfrees) end;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   736
12550
32843ad8160a generalize type variables properly: start with occurrences in objects
wenzelm
parents: 12530
diff changeset
   737
fun generalize inner outer ts =
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   738
  let
12550
32843ad8160a generalize type variables properly: start with occurrences in objects
wenzelm
parents: 12530
diff changeset
   739
    val tfrees = generalize_tfrees inner outer (foldr Term.add_term_tfree_names (ts, []));
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   740
    fun gen (x, S) = if x mem_string tfrees then TVar ((x, 0), S) else TFree (x, S);
12550
32843ad8160a generalize type variables properly: start with occurrences in objects
wenzelm
parents: 12530
diff changeset
   741
  in map (Term.map_term_types (Term.map_type_tfree gen)) ts end;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   742
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   743
9553
c2e3773475b6 norm_hhf results;
wenzelm
parents: 9540
diff changeset
   744
c2e3773475b6 norm_hhf results;
wenzelm
parents: 9540
diff changeset
   745
(** export theorems **)
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   746
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   747
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
   748
  | get_free _ (opt, _) = opt;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   749
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   750
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
   751
13415
63462ccc6fac tuned view;
wenzelm
parents: 13399
diff changeset
   752
fun export_view view is_goal inner outer =
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   753
  let
12550
32843ad8160a generalize type variables properly: start with occurrences in objects
wenzelm
parents: 12530
diff changeset
   754
    val gen = generalize_tfrees inner outer;
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   755
    val fixes = fixed_names_of inner \\ fixed_names_of outer;
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   756
    val asms = Library.drop (length (assumptions_of outer), assumptions_of inner);
11816
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   757
    val exp_asms = map (fn (cprops, exp) => exp is_goal cprops) asms;
12550
32843ad8160a generalize type variables properly: start with occurrences in objects
wenzelm
parents: 12530
diff changeset
   758
  in fn thm => thm
12804
163a85ba885b Tactic.norm_hhf renamed to Tactic.norm_hhf_rule;
wenzelm
parents: 12770
diff changeset
   759
    |> Tactic.norm_hhf_rule
11816
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   760
    |> Seq.EVERY (rev exp_asms)
13415
63462ccc6fac tuned view;
wenzelm
parents: 13399
diff changeset
   761
    |> Seq.map (Drule.implies_intr_list view)
11816
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   762
    |> Seq.map (fn rule =>
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   763
      let
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   764
        val {sign, prop, ...} = Thm.rep_thm rule;
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   765
        val frees = map (Thm.cterm_of sign) (mapfilter (find_free prop) fixes);
12550
32843ad8160a generalize type variables properly: start with occurrences in objects
wenzelm
parents: 12530
diff changeset
   766
        val tfrees = gen (Term.add_term_tfree_names (prop, []));
11816
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   767
      in
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   768
        rule
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   769
        |> Drule.forall_intr_list frees
12804
163a85ba885b Tactic.norm_hhf renamed to Tactic.norm_hhf_rule;
wenzelm
parents: 12770
diff changeset
   770
        |> Tactic.norm_hhf_rule
12504
5b46173df7ad export used_types;
wenzelm
parents: 12414
diff changeset
   771
        |> (#1 o Drule.tvars_intr_list tfrees)
11816
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   772
      end)
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   773
  end;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   774
13415
63462ccc6fac tuned view;
wenzelm
parents: 13399
diff changeset
   775
val export = export_view [];
13399
c136276dc847 support locale ``views'' (for cumulative predicates);
wenzelm
parents: 13378
diff changeset
   776
c136276dc847 support locale ``views'' (for cumulative predicates);
wenzelm
parents: 13378
diff changeset
   777
fun export_standard view inner outer =
13415
63462ccc6fac tuned view;
wenzelm
parents: 13399
diff changeset
   778
  let val exp = export_view view false inner outer in
13378
b261d9cdd6b2 export_standard supercedes export_single;
wenzelm
parents: 13284
diff changeset
   779
    fn th =>
b261d9cdd6b2 export_standard supercedes export_single;
wenzelm
parents: 13284
diff changeset
   780
      (case Seq.pull (exp th) of
b261d9cdd6b2 export_standard supercedes export_single;
wenzelm
parents: 13284
diff changeset
   781
        Some (th', _) => th' |> Drule.local_standard
b261d9cdd6b2 export_standard supercedes export_single;
wenzelm
parents: 13284
diff changeset
   782
      | None => raise CONTEXT ("Internal failure while exporting theorem", inner))
b261d9cdd6b2 export_standard supercedes export_single;
wenzelm
parents: 13284
diff changeset
   783
  end;
12704
7bffaadc581e export_single;
wenzelm
parents: 12576
diff changeset
   784
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   785
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   786
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   787
(** bindings **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   788
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   789
(* update_binds *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   790
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   791
fun del_bind (ctxt, xi) =
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   792
  ctxt
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   793
  |> 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
   794
      (thy, syntax, data, asms, Vartab.update ((xi, None), binds), thms, cases, defs));
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   795
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   796
fun upd_bind (ctxt, ((x, i), t)) =
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   797
  let
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   798
    val T = Term.fastype_of t;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   799
    val t' =
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   800
      if null (Term.term_tvars t \\ Term.typ_tvars T) then t
8637
wenzelm
parents: 8616
diff changeset
   801
      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
   802
  in
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   803
    ctxt
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   804
    |> declare_term t'
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   805
    |> 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
   806
      (thy, syntax, data, asms, Vartab.update (((x, i), Some (t', T)), binds), thms, cases, defs))
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   807
  end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   808
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   809
fun del_upd_bind (ctxt, (xi, None)) = del_bind (ctxt, xi)
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   810
  | del_upd_bind (ctxt, (xi, Some t)) = upd_bind (ctxt, (xi, t));
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   811
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   812
fun update_binds bs ctxt = foldl upd_bind (ctxt, bs);
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   813
fun delete_update_binds bs ctxt = foldl del_upd_bind (ctxt, bs);
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   814
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   815
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   816
(* simult_matches *)
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   817
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   818
fun simult_matches ctxt [] = []
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   819
  | simult_matches ctxt pairs =
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   820
      let
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   821
        fun fail () = raise CONTEXT ("Pattern match failed!", ctxt);
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   822
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   823
        val maxidx = foldl (fn (i, (t1, t2)) =>
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   824
          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
   825
        val envs = Unify.smash_unifiers (sign_of ctxt, Envir.empty maxidx,
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   826
          map swap pairs);    (*prefer assignment of variables from patterns*)
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   827
        val env =
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   828
          (case Seq.pull envs of
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   829
            None => fail ()
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   830
          | Some (env, _) => env);    (*ignore further results*)
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   831
        val domain =
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   832
          filter_out Term.is_replaced_dummy_pattern (map #1 (Drule.vars_of_terms (map #1 pairs)));
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   833
        val _ =    (*may not assign variables from text*)
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   834
          if null (map #1 (Envir.alist_of env) inter (map #1 (Drule.vars_of_terms (map #2 pairs))))
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   835
          then () else fail ();
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   836
        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
   837
      in mapfilter norm_bind (Envir.alist_of env) end;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   838
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   839
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   840
(* add_binds(_i) *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   841
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   842
local
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   843
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   844
fun gen_bind prep (ctxt, (xi as (x, _), raw_t)) =
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   845
  ctxt |> delete_update_binds [(xi, apsome (prep ctxt) raw_t)];
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   846
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   847
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
   848
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
   849
in
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
   850
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   851
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
   852
  | drop_schematic b = b;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   853
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   854
val add_binds = gen_binds read_term;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   855
val add_binds_i = gen_binds cert_term;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   856
12147
64e69a8a945f adapted auto_bind_goal, auto_bind_facts;
wenzelm
parents: 12130
diff changeset
   857
fun auto_bind f ts ctxt = ctxt |> add_binds_i (map drop_schematic (f (sign_of ctxt) ts));
64e69a8a945f adapted auto_bind_goal, auto_bind_facts;
wenzelm
parents: 12130
diff changeset
   858
val auto_bind_goal = auto_bind AutoBind.goal;
64e69a8a945f adapted auto_bind_goal, auto_bind_facts;
wenzelm
parents: 12130
diff changeset
   859
val auto_bind_facts = auto_bind AutoBind.facts;
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   860
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   861
end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   862
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   863
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   864
(* match_bind(_i) *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   865
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   866
local
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   867
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   868
fun prep_bind prep_pats (ctxt, (raw_pats, t)) =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   869
  let
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   870
    val ctxt' = declare_term t ctxt;
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   871
    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
   872
    val binds = simult_matches ctxt' (map (rpair t) pats);
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   873
  in (ctxt', binds) end;
7670
e302e4269087 added cert_skolem;
wenzelm
parents: 7663
diff changeset
   874
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   875
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
   876
  let
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   877
    val ts = prep_terms ctxt (map snd raw_binds);
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   878
    val (ctxt', binds) =
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   879
      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
   880
    val binds' =
12550
32843ad8160a generalize type variables properly: start with occurrences in objects
wenzelm
parents: 12530
diff changeset
   881
      if gen then map #1 binds ~~ generalize ctxt' ctxt (map #2 binds)
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   882
      else binds;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   883
    val binds'' = map (apsnd Some) binds';
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   884
  in
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   885
    warn_extra_tfrees ctxt
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   886
     (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
   887
      else ctxt' |> add_binds_i binds'')
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   888
  end;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   889
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   890
in
5935
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   891
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   892
val match_bind = gen_binds read_terms read_term_pats;
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   893
val match_bind_i = gen_binds (map o cert_term) cert_term_pats;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   894
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   895
end;
5935
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   896
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   897
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   898
(* propositions with patterns *)
5935
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   899
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   900
local
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   901
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   902
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
   903
  let
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   904
    fun prep ((ctxt, prop :: props), (_, (raw_pats1, raw_pats2))) =
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   905
          let
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   906
            val ctxt' = declare_term prop ctxt;
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   907
            val pats = prep_pats ctxt' (raw_pats1 @ raw_pats2);    (*simultaneous type inference!*)
13629
a46362d2b19b take/drop -> splitAt
nipkow
parents: 13542
diff changeset
   908
          in ((ctxt', props), (prop, splitAt(length raw_pats1, pats))) end
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   909
      | prep _ = sys_error "prep_propp";
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   910
    val ((context', _), propp) = foldl_map (foldl_map prep)
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   911
        ((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
   912
  in (context', propp) end;
5935
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   913
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   914
fun matches ctxt (prop, (pats1, pats2)) =
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   915
  simult_matches ctxt (map (rpair prop) pats1 @ map (rpair (Logic.strip_imp_concl prop)) pats2);
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   916
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   917
fun gen_bind_propp prepp (ctxt, raw_args) =
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   918
  let
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   919
    val (ctxt', args) = prepp (ctxt, raw_args);
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   920
    val binds = flat (flat (map (map (matches ctxt')) args));
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   921
    val propss = map (map #1) args;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   922
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   923
    (*generalize result: context evaluated now, binds added later*)
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   924
    val gen = generalize ctxt' ctxt;
12550
32843ad8160a generalize type variables properly: start with occurrences in objects
wenzelm
parents: 12530
diff changeset
   925
    fun gen_binds c = c |> add_binds_i (map #1 binds ~~ map Some (gen (map #2 binds)));
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   926
  in (ctxt' |> add_binds_i (map (apsnd Some) binds), (propss, gen_binds)) end;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   927
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   928
in
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   929
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
   930
val read_propp = prep_propp false read_props read_prop_pats;
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
   931
val cert_propp = prep_propp false cert_props cert_prop_pats;
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   932
val read_propp_schematic = prep_propp true read_props read_prop_pats;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   933
val cert_propp_schematic = prep_propp true cert_props cert_prop_pats;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   934
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
   935
val bind_propp = gen_bind_propp read_propp;
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
   936
val bind_propp_i = gen_bind_propp cert_propp;
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
   937
val bind_propp_schematic = gen_bind_propp read_propp_schematic;
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   938
val bind_propp_schematic_i = gen_bind_propp cert_propp_schematic;
6789
0e5a965de17a auto_bind_goal, auto_bind_facts;
wenzelm
parents: 6762
diff changeset
   939
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   940
end;
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   941
6789
0e5a965de17a auto_bind_goal, auto_bind_facts;
wenzelm
parents: 6762
diff changeset
   942
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   943
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   944
(** theorems **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   945
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
   946
(* get_thm(s) *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   947
9566
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   948
(*beware of proper order of evaluation!*)
13278
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
   949
fun retrieve_thms f g (ctxt as Context {thy, thms = (_, space, tab, _), ...}) =
9566
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   950
  let
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   951
    val sg_ref = Sign.self_ref (Theory.sign_of thy);
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   952
    val get_from_thy = f thy;
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   953
  in
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   954
    fn xname =>
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   955
      (case Symtab.lookup (tab, NameSpace.intern space xname) of
9566
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   956
        Some (Some ths) => map (Thm.transfer_sg (Sign.deref sg_ref)) ths
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   957
      | _ => get_from_thy xname) |> g xname
9566
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   958
  end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   959
9566
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   960
val get_thm = retrieve_thms PureThy.get_thms PureThy.single_thm;
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   961
val get_thm_closure = retrieve_thms PureThy.get_thms_closure PureThy.single_thm;
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   962
val get_thms = retrieve_thms PureThy.get_thms (K I);
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   963
val get_thms_closure = retrieve_thms PureThy.get_thms_closure (K I);
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   964
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   965
13425
119ae829ad9b support for split assumptions in cases (hyps vs. prems);
wenzelm
parents: 13415
diff changeset
   966
(* name space operations *)
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   967
13278
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
   968
fun cond_extern (Context {thms = (_, space, _, _), ...}) = NameSpace.cond_extern space;
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   969
13399
c136276dc847 support locale ``views'' (for cumulative predicates);
wenzelm
parents: 13378
diff changeset
   970
fun qualified q = map_context (fn (thy, syntax, data, asms, binds,
13278
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
   971
    (_, space, tab, index), cases, defs) =>
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
   972
  (thy, syntax, data, asms, binds, (q, space, tab, index), cases, defs));
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   973
13399
c136276dc847 support locale ``views'' (for cumulative predicates);
wenzelm
parents: 13378
diff changeset
   974
fun restore_qualified (Context {thms, ...}) = qualified (#1 thms);
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   975
13425
119ae829ad9b support for split assumptions in cases (hyps vs. prems);
wenzelm
parents: 13415
diff changeset
   976
fun hide_thms fully names =
119ae829ad9b support for split assumptions in cases (hyps vs. prems);
wenzelm
parents: 13415
diff changeset
   977
  map_context (fn (thy, syntax, data, asms, binds, (q, space, tab, index), cases, defs) =>
119ae829ad9b support for split assumptions in cases (hyps vs. prems);
wenzelm
parents: 13415
diff changeset
   978
    (thy, syntax, data, asms, binds, (q, NameSpace.hide fully (space, names), tab, index),
119ae829ad9b support for split assumptions in cases (hyps vs. prems);
wenzelm
parents: 13415
diff changeset
   979
      cases, defs));
119ae829ad9b support for split assumptions in cases (hyps vs. prems);
wenzelm
parents: 13415
diff changeset
   980
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   981
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
   982
(* put_thm(s) *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   983
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   984
fun put_thms ("", _) ctxt = ctxt
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   985
  | put_thms (name, ths) ctxt = ctxt |> map_context
13278
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
   986
      (fn (thy, syntax, data, asms, binds, (q, space, tab, index), cases, defs) =>
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   987
        if not q andalso NameSpace.is_qualified name then
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   988
          raise CONTEXT ("Attempt to declare qualified name " ^ quote name, ctxt)
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   989
        else (thy, syntax, data, asms, binds, (q, NameSpace.extend (space, [name]),
13278
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
   990
          Symtab.update ((name, Some ths), tab),
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
   991
            FactIndex.add (is_known ctxt) (index, (name, ths))), cases, defs));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   992
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
   993
fun put_thm (name, th) = put_thms (name, [th]);
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   994
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
   995
fun put_thmss [] ctxt = ctxt
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
   996
  | put_thmss (th :: ths) ctxt = ctxt |> put_thms th |> put_thmss ths;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   997
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   998
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   999
(* reset_thms *)
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
  1000
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
  1001
fun reset_thms name =
13278
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1002
  map_context (fn (thy, syntax, data, asms, binds, (q, space, tab, index), cases, defs) =>
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1003
    (thy, syntax, data, asms, binds, (q, space, Symtab.update ((name, None), tab), index),
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1004
      cases, defs));
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
  1005
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
  1006
14564
3667b4616e9a renamed have_thms to note_thms;
wenzelm
parents: 14508
diff changeset
  1007
(* note_thmss *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1008
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12704
diff changeset
  1009
local
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12704
diff changeset
  1010
14564
3667b4616e9a renamed have_thms to note_thms;
wenzelm
parents: 14508
diff changeset
  1011
fun gen_note_thss get (ctxt, ((name, more_attrs), ths_attrs)) =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1012
  let
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1013
    fun app ((ct, ths), (th, attrs)) =
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12704
diff changeset
  1014
      let val (ct', th') = Thm.applys_attributes ((ct, get ctxt th), attrs @ more_attrs)
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12704
diff changeset
  1015
      in (ct', th' :: ths) end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1016
    val (ctxt', rev_thms) = foldl app ((ctxt, []), ths_attrs);
9196
1f6f66fe777a facts: handle multiple lists of arguments;
wenzelm
parents: 9133
diff changeset
  1017
    val thms = flat (rev rev_thms);
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
  1018
  in (ctxt' |> put_thms (name, thms), (name, thms)) end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1019
14564
3667b4616e9a renamed have_thms to note_thms;
wenzelm
parents: 14508
diff changeset
  1020
fun gen_note_thmss get args ctxt = foldl_map (gen_note_thss get) (ctxt, args);
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12704
diff changeset
  1021
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12704
diff changeset
  1022
in
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12704
diff changeset
  1023
14564
3667b4616e9a renamed have_thms to note_thms;
wenzelm
parents: 14508
diff changeset
  1024
val note_thmss = gen_note_thmss get_thms;
3667b4616e9a renamed have_thms to note_thms;
wenzelm
parents: 14508
diff changeset
  1025
val note_thmss_i = gen_note_thmss (K I);
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12704
diff changeset
  1026
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12704
diff changeset
  1027
end;
9196
1f6f66fe777a facts: handle multiple lists of arguments;
wenzelm
parents: 9133
diff changeset
  1028
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1029
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1030
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1031
(** assumptions **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1032
11918
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
  1033
(* basic exporters *)
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
  1034
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
  1035
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
  1036
  | 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
  1037
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
  1038
fun export_presume _ = export_assume false;
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
  1039
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
  1040
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1041
(* defs *)
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1042
12066
wenzelm
parents: 12057
diff changeset
  1043
fun cert_def ctxt eq =
12016
425289df84d3 fix_frees;
wenzelm
parents: 12008
diff changeset
  1044
  let
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1045
    fun err msg = raise CONTEXT (msg ^
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1046
      "\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
  1047
    val (lhs, rhs) = Logic.dest_equals (Term.strip_all_body eq)
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1048
      handle TERM _ => err "Not a meta-equality (==)";
12086
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
  1049
    val (f, xs) = Term.strip_comb lhs;
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
  1050
    val (c, _) = Term.dest_Free f handle TERM _ =>
13430
ab814c7685a9 tuned messages;
wenzelm
parents: 13426
diff changeset
  1051
      err "Head of lhs must be a free/fixed variable";
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1052
12086
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
  1053
    fun is_free (Free (x, _)) = not (is_fixed ctxt x)
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
  1054
      | is_free _ = false;
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
  1055
    val extra_frees = filter is_free (term_frees rhs) \\ xs;
12016
425289df84d3 fix_frees;
wenzelm
parents: 12008
diff changeset
  1056
  in
12086
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
  1057
    conditional (not (forall (is_Bound orf is_free) xs andalso null (duplicates xs))) (fn () =>
13430
ab814c7685a9 tuned messages;
wenzelm
parents: 13426
diff changeset
  1058
      err "Arguments of lhs must be distinct free/bound variables");
12086
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
  1059
    conditional (f mem Term.term_frees rhs) (fn () =>
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
  1060
      err "Element to be defined occurs on rhs");
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
  1061
    conditional (not (null extra_frees)) (fn () =>
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
  1062
      err ("Extra free variables on rhs: " ^ commas_quote (map (#1 o dest_Free) extra_frees)));
742b9c3740dc cert_def: proper check of args, improved msgs;
wenzelm
parents: 12072
diff changeset
  1063
    (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
  1064
  end;
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1065
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1066
fun head_of_def cprop =
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1067
  #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
  1068
  |> 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
  1069
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
  1070
fun export_def _ cprops thm =
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
  1071
  thm
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
  1072
  |> Drule.implies_intr_list cprops
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1073
  |> 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
  1074
  |> Drule.forall_elim_vars 0
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
  1075
  |> 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
  1076
dfdf0798d7b8 added export_assume, export_presume, export_def (from proof.ML);
wenzelm
parents: 11915
diff changeset
  1077
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1078
(* assume *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1079
7270
2b64729d9acb warn_vars;
wenzelm
parents: 7200
diff changeset
  1080
local
6797
f86b96a0f6fb improved handling of assumptions;
wenzelm
parents: 6789
diff changeset
  1081
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
  1082
fun add_assm (ctxt, ((name, attrs), props)) =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1083
  let
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
  1084
    val cprops = map (Thm.cterm_of (sign_of ctxt)) props;
12804
163a85ba885b Tactic.norm_hhf renamed to Tactic.norm_hhf_rule;
wenzelm
parents: 12770
diff changeset
  1085
    val asms = map (Tactic.norm_hhf_rule o Thm.assume) cprops;
5919
a5b2d4b9ed6f have_tthms;
wenzelm
parents: 5874
diff changeset
  1086
a5b2d4b9ed6f have_tthms;
wenzelm
parents: 5874
diff changeset
  1087
    val ths = map (fn th => ([th], [])) asms;
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
  1088
    val (ctxt', [(_, thms)]) =
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
  1089
      ctxt
12147
64e69a8a945f adapted auto_bind_goal, auto_bind_facts;
wenzelm
parents: 12130
diff changeset
  1090
      |> auto_bind_facts props
14564
3667b4616e9a renamed have_thms to note_thms;
wenzelm
parents: 14508
diff changeset
  1091
      |> note_thmss_i [((name, attrs), ths)];
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
  1092
  in (ctxt', (cprops, (name, asms), (name, thms))) end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1093
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
  1094
fun gen_assms prepp exp args ctxt =
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
  1095
  let
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
  1096
    val (ctxt1, propss) = prepp (ctxt, map snd args);
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
  1097
    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
  1098
9470
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
  1099
    val cprops = flat (map #1 results);
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
  1100
    val asmss = map #2 results;
705ca49129fc exporter setup for context elements;
wenzelm
parents: 9325
diff changeset
  1101
    val thmss = map #3 results;
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1102
    val ctxt3 = ctxt2 |> map_context
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1103
      (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
  1104
        (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
  1105
          cases, defs));
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1106
    val ctxt4 = ctxt3 |> put_thms ("prems", prems_of ctxt3);
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1107
  in (warn_extra_tfrees ctxt ctxt4, thmss) end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1108
7270
2b64729d9acb warn_vars;
wenzelm
parents: 7200
diff changeset
  1109
in
2b64729d9acb warn_vars;
wenzelm
parents: 7200
diff changeset
  1110
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
  1111
val assume = gen_assms (apsnd #1 o bind_propp);
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
  1112
val assume_i = gen_assms (apsnd #1 o bind_propp_i);
7270
2b64729d9acb warn_vars;
wenzelm
parents: 7200
diff changeset
  1113
2b64729d9acb warn_vars;
wenzelm
parents: 7200
diff changeset
  1114
end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1115
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1116
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1117
(* variables *)
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1118
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
  1119
local
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
  1120
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
  1121
fun prep_vars prep_typ internal liberal (ctxt, (xs, raw_T)) =
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1122
  let
12504
5b46173df7ad export used_types;
wenzelm
parents: 12414
diff changeset
  1123
    fun cond_tvars T =
5b46173df7ad export used_types;
wenzelm
parents: 12414
diff changeset
  1124
      if internal then T
5b46173df7ad export used_types;
wenzelm
parents: 12414
diff changeset
  1125
      else Type.no_tvars T handle TYPE (msg, _, _) => raise CONTEXT (msg, ctxt);
5b46173df7ad export used_types;
wenzelm
parents: 12414
diff changeset
  1126
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
  1127
    val _ = if liberal then () else
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
  1128
      (case filter (not o Syntax.is_identifier) (map (no_skolem internal ctxt) xs) of
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1129
      [] => () | bads => raise CONTEXT ("Bad variable name(s): " ^ commas_quote bads, ctxt));
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1130
12504
5b46173df7ad export used_types;
wenzelm
parents: 12414
diff changeset
  1131
    val opt_T = apsome (cond_tvars o prep_typ ctxt) raw_T;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1132
    val T = if_none opt_T TypeInfer.logicT;
12130
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
  1133
    val ctxt' = ctxt |> declare_terms_syntax (map (fn x => Free (x, T)) xs);
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1134
  in (ctxt', (xs, opt_T)) end;
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1135
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
  1136
in
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
  1137
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
  1138
val read_vars         = prep_vars read_typ false false;
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
  1139
val cert_vars         = prep_vars cert_typ true false;
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
  1140
val read_vars_liberal = prep_vars read_typ false true;
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
  1141
val cert_vars_liberal = prep_vars cert_typ true true;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1142
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
  1143
end;
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
  1144
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1145
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1146
(* fix *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1147
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1148
local
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1149
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
  1150
fun map_fixes f =
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
  1151
  map_context (fn (thy, syntax, data, (assumes, fixes), binds, thms, cases, defs) =>
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
  1152
    (thy, syntax, data, (assumes, f fixes), binds, thms, cases, defs));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1153
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1154
fun err_dups ctxt xs = raise CONTEXT ("Duplicate variable(s): " ^ commas_quote xs, ctxt);
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1155
12130
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
  1156
val declare =
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
  1157
  declare_terms_syntax o mapfilter (fn (_, None) => None | (x, Some T) => Some (Free (x, T)));
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
  1158
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
  1159
fun add_vars xs Ts ctxt =
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
  1160
  let val xs' = Term.variantlist (map Syntax.skolem xs, map #2 (fixes_of ctxt)) in
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
  1161
    ctxt
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
  1162
    |> declare (xs' ~~ Ts)
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
  1163
    |> map_fixes (fn fixes => (xs ~~ xs') @ fixes)
12130
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
  1164
  end;
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1165
12130
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
  1166
fun add_vars_direct xs Ts ctxt =
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
  1167
  ctxt
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
  1168
  |> declare (xs ~~ Ts)
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
  1169
  |> map_fixes (fn fixes =>
12130
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
  1170
    (case xs inter_string map #1 fixes of
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
  1171
      [] => (xs ~~ xs) @ fixes
12130
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
  1172
    | dups => err_dups ctxt dups));
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
  1173
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1174
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1175
fun gen_fix prep add raw_vars ctxt =
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1176
  let
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1177
    val (ctxt', varss) = foldl_map prep (ctxt, raw_vars);
12130
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
  1178
    val vars = rev (flat (map (fn (xs, T) => map (rpair T) xs) varss));
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
  1179
    val xs = map #1 vars;
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
  1180
    val Ts = map #2 vars;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1181
  in
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1182
    (case Library.duplicates xs of [] => () | dups => err_dups ctxt dups);
12130
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
  1183
    ctxt' |> add xs Ts
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1184
  end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1185
12576
9fd10052c3f7 added add_fixes: derives mssing type scheme from mixfix;
wenzelm
parents: 12550
diff changeset
  1186
fun prep_type (x, None, Some mx) = ([x], Some (mixfix_type mx))
9fd10052c3f7 added add_fixes: derives mssing type scheme from mixfix;
wenzelm
parents: 12550
diff changeset
  1187
  | prep_type (x, opt_T, _) = ([x], opt_T);
9fd10052c3f7 added add_fixes: derives mssing type scheme from mixfix;
wenzelm
parents: 12550
diff changeset
  1188
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1189
in
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
  1190
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1191
val fix = gen_fix read_vars add_vars;
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1192
val fix_i = gen_fix cert_vars add_vars;
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
  1193
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
  1194
fun fix_direct liberal =
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
  1195
  gen_fix (if liberal then cert_vars_liberal else cert_vars) add_vars_direct;
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
  1196
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
  1197
fun add_fixes decls = add_syntax decls o fix_direct false (map prep_type decls);
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
  1198
fun add_fixes_liberal decls = add_syntax decls o fix_direct true (map prep_type decls);
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1199
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1200
end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1201
12048
d38b5388e695 added get_thms_with_closure;
wenzelm
parents: 12016
diff changeset
  1202
fun fix_frees ts ctxt =
d38b5388e695 added get_thms_with_closure;
wenzelm
parents: 12016
diff changeset
  1203
  let
12504
5b46173df7ad export used_types;
wenzelm
parents: 12414
diff changeset
  1204
    val frees = foldl Term.add_frees ([], ts);
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1205
    fun new (x, T) = if is_fixed ctxt x then None else Some ([x], Some T);
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
  1206
  in fix_direct false (rev (mapfilter new frees)) ctxt end;
12016
425289df84d3 fix_frees;
wenzelm
parents: 12008
diff changeset
  1207
6895
450b1f67f099 added transfer_used_names;
wenzelm
parents: 6875
diff changeset
  1208
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1209
(*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
  1210
fun bind_skolem ctxt xs =
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1211
  let
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1212
    val ctxt' = ctxt |> fix_i [(xs, None)];
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1213
    fun bind (t as Free (x, T)) =
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1214
          if x mem_string xs then
10583
f2d9f4fd370b export get_skolem;
wenzelm
parents: 10554
diff changeset
  1215
            (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
  1216
          else t
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1217
      | bind (t $ u) = bind t $ bind u
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1218
      | 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
  1219
      | bind a = a;
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1220
  in bind end;
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1221
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1222
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1223
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1224
(** cases **)
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1225
11793
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
  1226
fun prep_case ctxt name xs {fixes, assumes, binds} =
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
  1227
  let
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
  1228
    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
  1229
      | replace [] ys = ys
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
  1230
      | replace (_ :: _) [] = raise CONTEXT ("Too many parameters for case " ^ quote name, ctxt);
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
  1231
  in
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
  1232
    if null (foldr Term.add_typ_tvars (map snd fixes, [])) andalso
13426
e0e2351043d2 make SML/NJ happy;
wenzelm
parents: 13425
diff changeset
  1233
      null (foldr Term.add_term_vars (flat (map snd assumes), [])) then
11793
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
  1234
        {fixes = replace xs fixes, assumes = assumes, binds = map drop_schematic binds}
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
  1235
    else raise CONTEXT ("Illegal schematic variable(s) in case " ^ quote name, ctxt)
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
  1236
  end;
8403
a8a0411a8e8c check_case: disallow (T)Vars in invoked case;
wenzelm
parents: 8384
diff changeset
  1237
11793
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
  1238
fun get_case (ctxt as Context {cases, ...}) name xs =
8426
f6e022588624 cases: preserve order;
wenzelm
parents: 8403
diff changeset
  1239
  (case assoc (cases, name) of
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1240
    None => raise CONTEXT ("Unknown case: " ^ quote name, ctxt)
11793
5f0ab6f5c280 support impromptu terminology of cases parameters;
wenzelm
parents: 11764
diff changeset
  1241
  | 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
  1242
8384
13bc74731ae6 add_cases: omit unnamed;
wenzelm
parents: 8373
diff changeset
  1243
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1244
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
  1245
  (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
  1246
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1247
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1248
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1249
(** print context information **)
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
val verbose = ref false;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1252
fun verb f x = if ! verbose then f (x ()) else [];
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1253
fun verb_single x = verb Library.single x;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1254
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1255
fun setmp_verbose f x = Library.setmp verbose true f x;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1256
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1257
fun pretty_items prt name items =
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1258
  let
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1259
    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
  1260
      | prt_itms (name, xs) = Pretty.big_list (name ^ ":") (map prt xs);
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1261
  in
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1262
    if null items andalso not (! verbose) then []
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1263
    else [Pretty.big_list name (map prt_itms items)]
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1264
  end;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1265
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1266
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1267
(* local syntax *)
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1268
12093
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1269
val print_syntax = Syntax.print_syntax o syn_of;
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1270
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1271
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1272
(* term bindings *)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1273
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1274
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
  1275
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1276
fun pretty_binds (ctxt as Context {binds, ...}) =
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1277
  let
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1278
    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
  1279
    val bs = mapfilter smash_option (Vartab.dest binds);
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1280
  in
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1281
    if null bs andalso not (! verbose) then []
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1282
    else [Pretty.big_list "term bindings:" (map prt_bind bs)]
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1283
  end;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1284
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1285
val print_binds = Pretty.writeln o Pretty.chunks o pretty_binds;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1286
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1287
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1288
(* local theorems *)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1289
13278
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1290
fun pretty_lthms (ctxt as Context {thms = (_, space, tab, _), ...}) =
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
  1291
  pretty_items (pretty_thm ctxt) "facts:"
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
  1292
    (mapfilter smash_option (NameSpace.cond_extern_table space tab));
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1293
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1294
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
  1295
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1296
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1297
(* local contexts *)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1298
10830
d19f9f4c35ee avoid renaming of params in cases;
wenzelm
parents: 10818
diff changeset
  1299
fun apply_case ({fixes, assumes, binds}: RuleCases.T) ctxt =
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1300
  let
10830
d19f9f4c35ee avoid renaming of params in cases;
wenzelm
parents: 10818
diff changeset
  1301
    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
  1302
    val (ctxt', xs) = foldl_map bind (ctxt, fixes);
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1303
    fun app t = foldl Term.betapply (t, xs);
13425
119ae829ad9b support for split assumptions in cases (hyps vs. prems);
wenzelm
parents: 13415
diff changeset
  1304
  in (ctxt', (map (apsnd (apsome app)) binds, map (apsnd (map app)) assumes)) end;
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1305
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1306
fun pretty_cases (ctxt as Context {cases, ...}) =
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1307
  let
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1308
    val prt_term = pretty_term ctxt;
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1309
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1310
    fun prt_let (xi, t) = Pretty.block
10818
37fa05a12459 tuned output;
wenzelm
parents: 10810
diff changeset
  1311
      [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
  1312
        Pretty.quote (prt_term t)];
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1313
13425
119ae829ad9b support for split assumptions in cases (hyps vs. prems);
wenzelm
parents: 13415
diff changeset
  1314
    fun prt_asm (a, ts) = Pretty.block (Pretty.breaks
119ae829ad9b support for split assumptions in cases (hyps vs. prems);
wenzelm
parents: 13415
diff changeset
  1315
      ((if a = "" then [] else [Pretty.str (a ^ ":")]) @ map (Pretty.quote o prt_term) ts));
119ae829ad9b support for split assumptions in cases (hyps vs. prems);
wenzelm
parents: 13415
diff changeset
  1316
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1317
    fun prt_sect _ _ _ [] = []
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1318
      | 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
  1319
            flat (Library.separate sep (map (Library.single o prt) xs))))];
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1320
10830
d19f9f4c35ee avoid renaming of params in cases;
wenzelm
parents: 10818
diff changeset
  1321
    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
  1322
      (Pretty.str (name ^ ":") ::
11915
df030220a2a8 print fixed names as plain strings;
wenzelm
parents: 11816
diff changeset
  1323
        prt_sect "fix" [] (Pretty.str o fst) fixes @
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1324
        prt_sect "let" [Pretty.str "and"] prt_let
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1325
          (mapfilter (fn (xi, Some t) => Some (xi, t) | _ => None) lets) @
13425
119ae829ad9b support for split assumptions in cases (hyps vs. prems);
wenzelm
parents: 13415
diff changeset
  1326
        (if forall (null o #2) asms then []
119ae829ad9b support for split assumptions in cases (hyps vs. prems);
wenzelm
parents: 13415
diff changeset
  1327
          else prt_sect "assume" [Pretty.str "and"] prt_asm asms)));
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1328
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1329
    val cases' = rev (Library.gen_distinct Library.eq_fst cases);
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1330
  in
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1331
    if null cases andalso not (! verbose) then []
10830
d19f9f4c35ee avoid renaming of params in cases;
wenzelm
parents: 10818
diff changeset
  1332
    else [Pretty.big_list "cases:"
d19f9f4c35ee avoid renaming of params in cases;
wenzelm
parents: 10818
diff changeset
  1333
      (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
  1334
  end;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1335
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1336
val print_cases = Pretty.writeln o Pretty.chunks o pretty_cases;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1337
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1338
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1339
(* core context *)
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1340
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1341
val prems_limit = ref 10;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1342
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1343
fun pretty_asms ctxt =
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1344
  let
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1345
    val prt_term = pretty_term ctxt;
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1346
12093
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1347
    (*structures*)
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1348
    val (_, structs, _) = syntax_of ctxt;
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1349
    val prt_structs = if null structs then []
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1350
      else [Pretty.block (Pretty.str "structures:" :: Pretty.brk 1 ::
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1351
        Pretty.commas (map Pretty.str structs))];
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1352
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1353
    (*fixes*)
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1354
    fun prt_fix (x, x') =
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1355
      if x = x' then Pretty.str x
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1356
      else Pretty.block [Pretty.str x, Pretty.str " =", Pretty.brk 1, prt_term (Syntax.free x')];
12093
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1357
    val fixes = rev (filter_out
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1358
      ((can Syntax.dest_internal o #1) orf (fn (_, x') => x' mem_string structs)) (fixes_of ctxt));
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1359
    val prt_fixes = if null fixes then []
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1360
      else [Pretty.block (Pretty.str "fixed variables:" :: Pretty.brk 1 ::
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1361
        Pretty.commas (map prt_fix fixes))];
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1362
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1363
    (*prems*)
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1364
    val limit = ! prems_limit;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1365
    val prems = prems_of ctxt;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1366
    val len = length prems;
12093
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1367
    val prt_prems = if null prems then []
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1368
      else [Pretty.big_list "prems:" ((if len <= limit then [] else [Pretty.str "..."]) @
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1369
        map (pretty_thm ctxt) (Library.drop (len - limit, prems)))];
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1370
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1371
  in prt_structs @ prt_fixes @ prt_prems end;
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1372
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1373
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1374
(* main context *)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1375
12291
43f37745b600 type variables: clarified "used" vs. "occ";
wenzelm
parents: 12213
diff changeset
  1376
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
  1377
  let
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1378
    val prt_term = pretty_term ctxt;
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1379
    val prt_typ = pretty_typ ctxt;
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1380
    val prt_sort = pretty_sort ctxt;
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1381
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1382
    (*theory*)
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1383
    val pretty_thy = Pretty.block
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1384
      [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
  1385
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1386
    (*defaults*)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1387
    fun prt_atom prt prtT (x, X) = Pretty.block
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1388
      [prt x, Pretty.str " ::", Pretty.brk 1, prtT X];
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1389
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1390
    fun prt_var (x, ~1) = prt_term (Syntax.free x)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1391
      | prt_var xi = prt_term (Syntax.var xi);
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1392
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1393
    fun prt_varT (x, ~1) = prt_typ (TFree (x, []))
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1394
      | prt_varT xi = prt_typ (TVar (xi, []));
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1395
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1396
    val prt_defT = prt_atom prt_var prt_typ;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1397
    val prt_defS = prt_atom prt_varT prt_sort;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1398
  in
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1399
    verb_single (K pretty_thy) @
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1400
    pretty_asms ctxt @
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1401
    verb pretty_binds (K ctxt) @
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1402
    verb pretty_lthms (K ctxt) @
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1403
    verb pretty_cases (K ctxt) @
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1404
    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
  1405
    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
  1406
    verb_single (fn () => Pretty.strs ("used type variable names:" :: used))
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1407
  end;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1408
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1409
13278
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1410
(* print_thms_containing *)
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1411
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1412
fun lthms_containing (ctxt as Context {thms = (_, _, _, index), ...}) idx =
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1413
  let
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1414
    fun valid (name, ths) =
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1415
      (case try (transform_error (fn () => get_thms ctxt name)) () of
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1416
        None => false
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1417
      | Some ths' => Library.equal_lists Thm.eq_thm (ths, ths'));
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1418
  in gen_distinct eq_fst (filter valid (FactIndex.find idx index)) end;
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1419
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1420
13284
20c818c966e6 thms_containing: optional limit argument;
wenzelm
parents: 13282
diff changeset
  1421
val thms_containing_limit = ref 40;
20c818c966e6 thms_containing: optional limit argument;
wenzelm
parents: 13282
diff changeset
  1422
20c818c966e6 thms_containing: optional limit argument;
wenzelm
parents: 13282
diff changeset
  1423
fun print_thms_containing ctxt opt_limit ss =
13278
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1424
  let
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1425
    val prt_term = pretty_term ctxt;
13282
49f0c90a1bc6 tuned print_thms_containing;
wenzelm
parents: 13278
diff changeset
  1426
    val prt_fact = pretty_fact ctxt;
13278
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1427
    fun prt_consts [] = []
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1428
      | prt_consts cs = [Pretty.block (Pretty.breaks (Pretty.str "constants" ::
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1429
          map (Pretty.quote o prt_term o Syntax.const) cs))];
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1430
    fun prt_frees [] = []
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1431
      | prt_frees xs = [Pretty.block (Pretty.breaks (Pretty.str "variables" ::
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1432
          map (Pretty.quote o prt_term o Syntax.free) xs))];
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1433
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1434
    val (cs, xs) = foldl (FactIndex.index_term (is_known ctxt))
13542
bb3e8a86d610 thms_containing: allow "_" in specification;
wenzelm
parents: 13461
diff changeset
  1435
      (([], []), map (read_term_dummies ctxt) ss);
13278
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1436
    val empty_idx = Library.null cs andalso Library.null xs;
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1437
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1438
    val header =
13378
b261d9cdd6b2 export_standard supercedes export_single;
wenzelm
parents: 13284
diff changeset
  1439
      if empty_idx then [Pretty.block [Pretty.str "Known facts:", Pretty.fbrk]]
13278
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1440
      else [Pretty.block (Pretty.breaks (Pretty.str "Facts containing" ::
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1441
        separate (Pretty.str "and") (prt_consts cs @ prt_frees xs)) @
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1442
          [Pretty.str ":", Pretty.fbrk])]
13284
20c818c966e6 thms_containing: optional limit argument;
wenzelm
parents: 13282
diff changeset
  1443
    val facts =
20c818c966e6 thms_containing: optional limit argument;
wenzelm
parents: 13282
diff changeset
  1444
      PureThy.thms_containing (theory_of ctxt) (cs, xs) @ lthms_containing ctxt (cs, xs)
20c818c966e6 thms_containing: optional limit argument;
wenzelm
parents: 13282
diff changeset
  1445
      |> sort_wrt #1;
20c818c966e6 thms_containing: optional limit argument;
wenzelm
parents: 13282
diff changeset
  1446
    val len = length facts;
20c818c966e6 thms_containing: optional limit argument;
wenzelm
parents: 13282
diff changeset
  1447
    val limit = if_none opt_limit (! thms_containing_limit);
13278
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1448
  in
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1449
    if empty_idx andalso not (Library.null ss) then
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1450
      warning "thms_containing: no consts/frees in specification"
13284
20c818c966e6 thms_containing: optional limit argument;
wenzelm
parents: 13282
diff changeset
  1451
    else (header @ (if len <= limit then [] else [Pretty.str "..."]) @
20c818c966e6 thms_containing: optional limit argument;
wenzelm
parents: 13282
diff changeset
  1452
        map prt_fact (Library.drop (len - limit, facts))) |> Pretty.chunks |> Pretty.writeln
13278
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1453
  end;
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1454
b62514fcbcab print_thms_containing: index variables, refer to local facts as well;
wenzelm
parents: 12863
diff changeset
  1455
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1456
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1457
(** theory setup **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1458
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1459
val setup = [ProofDataData.init];
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1460
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1461
end;