src/Pure/Isar/proof_context.ML
author wenzelm
Mon, 02 Nov 2009 20:48:08 +0100
changeset 33387 acea2f336721
parent 33386 ff29d1549aca
child 33519 e31a85f92ce9
permissions -rw-r--r--
modernized structure Local_Syntax;
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
    Author:     Markus Wenzel, TU Muenchen
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
     3
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
     4
The key concept of Isar proof contexts: elevates primitive local
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
     5
reasoning Gamma |- phi to a structured concept, with generic context
20234
7e0693474bcd added legacy_pretty_thm (with fall-back on ProtoPure.thy);
wenzelm
parents: 20209
diff changeset
     6
elements.  See also structure Variable and Assumption.
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
     7
*)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
     8
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
     9
signature PROOF_CONTEXT =
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    10
sig
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    11
  val theory_of: Proof.context -> theory
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    12
  val init: theory -> Proof.context
24388
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
    13
  type mode
24501
7a2b20145888 export various inner syntax modes;
wenzelm
parents: 24495
diff changeset
    14
  val mode_default: mode
7a2b20145888 export various inner syntax modes;
wenzelm
parents: 24495
diff changeset
    15
  val mode_stmt: mode
7a2b20145888 export various inner syntax modes;
wenzelm
parents: 24495
diff changeset
    16
  val mode_pattern: mode
7a2b20145888 export various inner syntax modes;
wenzelm
parents: 24495
diff changeset
    17
  val mode_schematic: mode
7a2b20145888 export various inner syntax modes;
wenzelm
parents: 24495
diff changeset
    18
  val mode_abbrev: mode
24388
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
    19
  val set_mode: mode -> Proof.context -> Proof.context
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
    20
  val get_mode: Proof.context -> mode
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
    21
  val restore_mode: Proof.context -> Proof.context -> Proof.context
27286
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
    22
  val abbrev_mode: Proof.context -> bool
21667
ce813b82c88b add_notation: permissive about undeclared consts;
wenzelm
parents: 21648
diff changeset
    23
  val set_stmt: bool -> Proof.context -> Proof.context
33165
50c4debfd5ae more direct access to naming;
wenzelm
parents: 33157
diff changeset
    24
  val local_naming: Name_Space.naming
50c4debfd5ae more direct access to naming;
wenzelm
parents: 33157
diff changeset
    25
  val map_naming: (Name_Space.naming -> Name_Space.naming) -> Proof.context -> Proof.context
33095
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 33031
diff changeset
    26
  val naming_of: Proof.context -> Name_Space.naming
33165
50c4debfd5ae more direct access to naming;
wenzelm
parents: 33157
diff changeset
    27
  val restore_naming: Proof.context -> Proof.context -> Proof.context
29581
b3b33e0298eb binding is alias for Binding.T
haftmann
parents: 29318
diff changeset
    28
  val full_name: Proof.context -> binding -> string
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    29
  val consts_of: Proof.context -> Consts.T
21183
a76f457b6d86 added const_syntax_name;
wenzelm
parents: 20784
diff changeset
    30
  val const_syntax_name: Proof.context -> string -> string
24752
8aec6154bb17 exported constraint interfaces
haftmann
parents: 24693
diff changeset
    31
  val the_const_constraint: Proof.context -> string -> typ
26268
80aaf4d034be added mk_const functions
haftmann
parents: 26250
diff changeset
    32
  val mk_const: Proof.context -> string * typ list -> term
20784
eece9aaaf352 Syntax.mode;
wenzelm
parents: 20631
diff changeset
    33
  val set_syntax_mode: Syntax.mode -> Proof.context -> Proof.context
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    34
  val restore_syntax_mode: Proof.context -> Proof.context -> Proof.context
26284
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
    35
  val facts_of: Proof.context -> Facts.T
27259
6e71abb8c994 export transfer_syntax;
wenzelm
parents: 27195
diff changeset
    36
  val transfer_syntax: theory -> Proof.context -> Proof.context
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    37
  val transfer: theory -> Proof.context -> Proof.context
20367
ba1c262c7625 renamed map_theory to theory;
wenzelm
parents: 20330
diff changeset
    38
  val theory: (theory -> theory) -> Proof.context -> Proof.context
ba1c262c7625 renamed map_theory to theory;
wenzelm
parents: 20330
diff changeset
    39
  val theory_result: (theory -> 'a * theory) -> Proof.context -> 'a * Proof.context
28212
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
    40
  val extern_fact: Proof.context -> string -> xstring
21728
906649272ba0 added read/pretty_term_abbrev, print_abbrevs;
wenzelm
parents: 21704
diff changeset
    41
  val pretty_term_abbrev: Proof.context -> term -> Pretty.T
30723
a3adc9a96a16 pretty_thm_aux etc.: explicit show_status flag;
wenzelm
parents: 30628
diff changeset
    42
  val pretty_fact_aux: Proof.context -> bool -> string * thm list -> Pretty.T
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    43
  val pretty_fact: Proof.context -> string * thm list -> Pretty.T
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    44
  val read_typ: Proof.context -> string -> typ
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    45
  val read_typ_syntax: Proof.context -> string -> typ
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    46
  val read_typ_abbrev: Proof.context -> string -> typ
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    47
  val cert_typ: Proof.context -> typ -> typ
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    48
  val cert_typ_syntax: Proof.context -> typ -> typ
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    49
  val cert_typ_abbrev: Proof.context -> typ -> typ
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    50
  val get_skolem: Proof.context -> string -> string
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    51
  val revert_skolem: Proof.context -> string -> string
25328
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
    52
  val infer_type: Proof.context -> string -> typ
28082
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
    53
  val inferred_param: string -> Proof.context -> typ * Proof.context
25328
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
    54
  val inferred_fixes: Proof.context -> (string * typ) list * Proof.context
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
    55
  val read_tyname: Proof.context -> string -> typ
25345
dd5b851f8ef0 renamed ProofContext.read_const' to ProofContext.read_const_proper;
wenzelm
parents: 25332
diff changeset
    56
  val read_const_proper: Proof.context -> string -> term
25328
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
    57
  val read_const: Proof.context -> string -> term
27259
6e71abb8c994 export transfer_syntax;
wenzelm
parents: 27195
diff changeset
    58
  val allow_dummies: Proof.context -> Proof.context
22763
5c1752279f25 added decode_term (belongs to Syntax module);
wenzelm
parents: 22728
diff changeset
    59
  val decode_term: Proof.context -> term -> term
25406
1aa7927a6759 simplified Consts.dest;
wenzelm
parents: 25353
diff changeset
    60
  val standard_infer_types: Proof.context -> term list -> term list
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
    61
  val read_term_pattern: Proof.context -> string -> term
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
    62
  val read_term_schematic: Proof.context -> string -> term
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
    63
  val read_term_abbrev: Proof.context -> string -> term
25345
dd5b851f8ef0 renamed ProofContext.read_const' to ProofContext.read_const_proper;
wenzelm
parents: 25332
diff changeset
    64
  val expand_abbrevs: Proof.context -> term -> term
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    65
  val cert_term: Proof.context -> term -> term
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    66
  val cert_prop: Proof.context -> term -> term
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    67
  val goal_export: Proof.context -> Proof.context -> thm list -> thm list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    68
  val export: Proof.context -> Proof.context -> thm list -> thm list
21531
43aa65a8a870 added export_(standard_)morphism;
wenzelm
parents: 21443
diff changeset
    69
  val export_morphism: Proof.context -> Proof.context -> morphism
28396
72695dd4395d added norm_export_morphism;
wenzelm
parents: 28212
diff changeset
    70
  val norm_export_morphism: Proof.context -> Proof.context -> morphism
30757
2d2076300185 replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents: 30723
diff changeset
    71
  val bind_terms: (indexname * term option) list -> Proof.context -> Proof.context
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    72
  val auto_bind_goal: term list -> Proof.context -> Proof.context
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    73
  val auto_bind_facts: term list -> Proof.context -> Proof.context
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    74
  val match_bind: bool -> (string list * string) list -> Proof.context -> term list * Proof.context
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    75
  val match_bind_i: bool -> (term list * term) list -> Proof.context -> term list * Proof.context
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    76
  val read_propp: Proof.context * (string * string list) list list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    77
    -> Proof.context * (term * term list) list list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    78
  val cert_propp: Proof.context * (term * term list) list list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    79
    -> Proof.context * (term * term list) list list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    80
  val read_propp_schematic: Proof.context * (string * string list) list list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    81
    -> Proof.context * (term * term list) list list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    82
  val cert_propp_schematic: Proof.context * (term * term list) list list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    83
    -> Proof.context * (term * term list) list list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    84
  val bind_propp: Proof.context * (string * string list) list list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    85
    -> Proof.context * (term list list * (Proof.context -> Proof.context))
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    86
  val bind_propp_i: Proof.context * (term * term list) list list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    87
    -> Proof.context * (term list list * (Proof.context -> Proof.context))
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    88
  val bind_propp_schematic: Proof.context * (string * string list) list list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    89
    -> Proof.context * (term list list * (Proof.context -> Proof.context))
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    90
  val bind_propp_schematic_i: Proof.context * (term * term list) list list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    91
    -> Proof.context * (term list list * (Proof.context -> Proof.context))
18042
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
    92
  val fact_tac: thm list -> int -> tactic
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    93
  val some_fact_tac: Proof.context -> int -> tactic
26346
17debd2fff8e simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26336
diff changeset
    94
  val get_fact: Proof.context -> Facts.ref -> thm list
17debd2fff8e simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26336
diff changeset
    95
  val get_fact_single: Proof.context -> Facts.ref -> thm
17debd2fff8e simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26336
diff changeset
    96
  val get_thms: Proof.context -> xstring -> thm list
17debd2fff8e simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26336
diff changeset
    97
  val get_thm: Proof.context -> xstring -> thm
30761
ac7570d80c3d renamed ProofContext.note_thmss_i to ProofContext.note_thmss, eliminated obsolete external version;
wenzelm
parents: 30758
diff changeset
    98
  val note_thmss: string -> (Thm.binding * (thm list * attribute list) list) list ->
30211
556d1810cdad Thm.binding;
wenzelm
parents: 30190
diff changeset
    99
    Proof.context -> (string * thm list) list * Proof.context
28082
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
   100
  val put_thms: bool -> string * thm list option -> Proof.context -> Proof.context
29581
b3b33e0298eb binding is alias for Binding.T
haftmann
parents: 29318
diff changeset
   101
  val read_vars: (binding * string option * mixfix) list -> Proof.context ->
b3b33e0298eb binding is alias for Binding.T
haftmann
parents: 29318
diff changeset
   102
    (binding * typ option * mixfix) list * Proof.context
b3b33e0298eb binding is alias for Binding.T
haftmann
parents: 29318
diff changeset
   103
  val cert_vars: (binding * typ option * mixfix) list -> Proof.context ->
b3b33e0298eb binding is alias for Binding.T
haftmann
parents: 29318
diff changeset
   104
    (binding * typ option * mixfix) list * Proof.context
30763
6976521b4263 renamed ProofContext.add_fixes_i to ProofContext.add_fixes, eliminated obsolete external version;
wenzelm
parents: 30761
diff changeset
   105
  val add_fixes: (binding * typ option * mixfix) list -> Proof.context ->
6976521b4263 renamed ProofContext.add_fixes_i to ProofContext.add_fixes, eliminated obsolete external version;
wenzelm
parents: 30761
diff changeset
   106
    string list * Proof.context
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   107
  val auto_fixes: Proof.context * (term list list * 'a) -> Proof.context * (term list list * 'a)
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   108
  val bind_fixes: string list -> Proof.context -> (term -> term) * Proof.context
20234
7e0693474bcd added legacy_pretty_thm (with fall-back on ProtoPure.thy);
wenzelm
parents: 20209
diff changeset
   109
  val add_assms: Assumption.export ->
30211
556d1810cdad Thm.binding;
wenzelm
parents: 30190
diff changeset
   110
    (Thm.binding * (string * string list) list) list ->
28082
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
   111
    Proof.context -> (string * thm list) list * Proof.context
20234
7e0693474bcd added legacy_pretty_thm (with fall-back on ProtoPure.thy);
wenzelm
parents: 20209
diff changeset
   112
  val add_assms_i: Assumption.export ->
30211
556d1810cdad Thm.binding;
wenzelm
parents: 30190
diff changeset
   113
    (Thm.binding * (term * term list) list) list ->
28082
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
   114
    Proof.context -> (string * thm list) list * Proof.context
33368
b1cf34f1855c modernized structure Rule_Cases;
wenzelm
parents: 33224
diff changeset
   115
  val add_cases: bool -> (string * Rule_Cases.T option) list -> Proof.context -> Proof.context
b1cf34f1855c modernized structure Rule_Cases;
wenzelm
parents: 33224
diff changeset
   116
  val apply_case: Rule_Cases.T -> Proof.context -> (string * term list) list * Proof.context
b1cf34f1855c modernized structure Rule_Cases;
wenzelm
parents: 33224
diff changeset
   117
  val get_case: Proof.context -> string -> string option list -> Rule_Cases.T
24949
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24922
diff changeset
   118
  val notation: bool -> Syntax.mode -> (term * mixfix) list -> Proof.context -> Proof.context
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24922
diff changeset
   119
  val target_notation: bool -> Syntax.mode -> (term * mixfix) list -> morphism ->
21744
b790ce4c21c2 added target_notation/abbrev;
wenzelm
parents: 21728
diff changeset
   120
    Context.generic -> Context.generic
24767
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
   121
  val add_const_constraint: string * typ option -> Proof.context -> Proof.context
33173
b8ca12f6681a eliminated obsolete tags for types/consts -- now handled via name space, in strongly typed fashion;
wenzelm
parents: 33165
diff changeset
   122
  val add_abbrev: string -> binding * term -> Proof.context -> (term * term) * Proof.context
25052
a014d544f54d added revert_abbrev;
wenzelm
parents: 25039
diff changeset
   123
  val revert_abbrev: string -> string -> Proof.context -> Proof.context
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32090
diff changeset
   124
  val verbose: bool Unsynchronized.ref
33224
e15ce5aeb6d5 ProofContext.setmp_verbose_CRITICAL;
wenzelm
parents: 33173
diff changeset
   125
  val setmp_verbose_CRITICAL: ('a -> 'b) -> 'a -> 'b
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   126
  val print_syntax: Proof.context -> unit
21728
906649272ba0 added read/pretty_term_abbrev, print_abbrevs;
wenzelm
parents: 21704
diff changeset
   127
  val print_abbrevs: Proof.context -> unit
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   128
  val print_binds: Proof.context -> unit
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   129
  val print_lthms: Proof.context -> unit
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   130
  val print_cases: Proof.context -> unit
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32090
diff changeset
   131
  val debug: bool Unsynchronized.ref
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32090
diff changeset
   132
  val prems_limit: int Unsynchronized.ref
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   133
  val pretty_ctxt: Proof.context -> Pretty.T list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   134
  val pretty_context: Proof.context -> Pretty.T list
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   135
end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   136
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   137
structure ProofContext: PROOF_CONTEXT =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   138
struct
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   139
33031
b75c35574e04 backpatching of structure Proof and ProofContext -- avoid odd aliases;
wenzelm
parents: 32966
diff changeset
   140
open ProofContext;
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   141
7270
2b64729d9acb warn_vars;
wenzelm
parents: 7200
diff changeset
   142
24388
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   143
(** inner syntax mode **)
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   144
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   145
datatype mode =
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   146
  Mode of
24486
1dbf377c2e9a moved type_mode to type.ML;
wenzelm
parents: 24388
diff changeset
   147
   {stmt: bool,                (*inner statement mode*)
24388
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   148
    pattern: bool,             (*pattern binding schematic variables*)
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   149
    schematic: bool,           (*term referencing loose schematic variables*)
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   150
    abbrev: bool};             (*abbrev mode -- no normalization*)
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   151
24486
1dbf377c2e9a moved type_mode to type.ML;
wenzelm
parents: 24388
diff changeset
   152
fun make_mode (stmt, pattern, schematic, abbrev) =
1dbf377c2e9a moved type_mode to type.ML;
wenzelm
parents: 24388
diff changeset
   153
  Mode {stmt = stmt, pattern = pattern, schematic = schematic, abbrev = abbrev};
24388
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   154
24486
1dbf377c2e9a moved type_mode to type.ML;
wenzelm
parents: 24388
diff changeset
   155
val mode_default   = make_mode (false, false, false, false);
1dbf377c2e9a moved type_mode to type.ML;
wenzelm
parents: 24388
diff changeset
   156
val mode_stmt      = make_mode (true, false, false, false);
1dbf377c2e9a moved type_mode to type.ML;
wenzelm
parents: 24388
diff changeset
   157
val mode_pattern   = make_mode (false, true, false, false);
1dbf377c2e9a moved type_mode to type.ML;
wenzelm
parents: 24388
diff changeset
   158
val mode_schematic = make_mode (false, false, true, false);
1dbf377c2e9a moved type_mode to type.ML;
wenzelm
parents: 24388
diff changeset
   159
val mode_abbrev    = make_mode (false, false, false, true);
24388
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   160
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   161
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   162
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   163
(** Isar proof context information **)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   164
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   165
datatype ctxt =
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   166
  Ctxt of
24675
2be1253a20d3 removed obsolete set_expand_abbrevs (superceded by mode_abbrev);
wenzelm
parents: 24612
diff changeset
   167
   {mode: mode,                                       (*inner syntax mode*)
33095
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 33031
diff changeset
   168
    naming: Name_Space.naming,                        (*local naming conventions*)
33387
acea2f336721 modernized structure Local_Syntax;
wenzelm
parents: 33386
diff changeset
   169
    syntax: Local_Syntax.T,                           (*local syntax*)
25039
06ed511837d5 swapped constant components
haftmann
parents: 24982
diff changeset
   170
    consts: Consts.T * Consts.T,                      (*local/global consts*)
26284
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   171
    facts: Facts.T,                                   (*local facts*)
33368
b1cf34f1855c modernized structure Rule_Cases;
wenzelm
parents: 33224
diff changeset
   172
    cases: (string * (Rule_Cases.T * bool)) list};    (*named case contexts*)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   173
26284
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   174
fun make_ctxt (mode, naming, syntax, consts, facts, cases) =
26240
cc630a75b62a dropped local tsigs
haftmann
parents: 26200
diff changeset
   175
  Ctxt {mode = mode, naming = naming, syntax = syntax,
26284
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   176
    consts = consts, facts = facts, cases = cases};
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   177
33095
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 33031
diff changeset
   178
val local_naming = Name_Space.default_naming |> Name_Space.add_path "local";
19079
9a7678a0736d added put_thms_internal: local_naming, no fact index;
wenzelm
parents: 19062
diff changeset
   179
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   180
structure ContextData = ProofDataFun
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   181
(
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   182
  type T = ctxt;
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   183
  fun init thy =
33387
acea2f336721 modernized structure Local_Syntax;
wenzelm
parents: 33386
diff changeset
   184
    make_ctxt (mode_default, local_naming, Local_Syntax.init thy,
26284
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   185
      (Sign.consts_of thy, Sign.consts_of thy), Facts.empty, []);
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   186
);
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   187
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   188
fun rep_context ctxt = ContextData.get ctxt |> (fn Ctxt args => args);
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   189
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   190
fun map_context f =
26284
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   191
  ContextData.map (fn Ctxt {mode, naming, syntax, consts, facts, cases} =>
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   192
    make_ctxt (f (mode, naming, syntax, consts, facts, cases)));
24388
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   193
26284
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   194
fun set_mode mode = map_context (fn (_, naming, syntax, consts, facts, cases) =>
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   195
  (mode, naming, syntax, consts, facts, cases));
21443
cc5095d57da4 added stmt mode, which affects naming/indexing of local facts;
wenzelm
parents: 21370
diff changeset
   196
24388
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   197
fun map_mode f =
26284
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   198
  map_context (fn (Mode {stmt, pattern, schematic, abbrev}, naming, syntax, consts, facts, cases) =>
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   199
    (make_mode (f (stmt, pattern, schematic, abbrev)), naming, syntax, consts, facts, cases));
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   200
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   201
fun map_naming f =
26284
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   202
  map_context (fn (mode, naming, syntax, consts, facts, cases) =>
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   203
    (mode, f naming, syntax, consts, facts, cases));
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   204
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   205
fun map_syntax f =
26284
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   206
  map_context (fn (mode, naming, syntax, consts, facts, cases) =>
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   207
    (mode, naming, f syntax, consts, facts, cases));
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   208
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   209
fun map_consts f =
26284
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   210
  map_context (fn (mode, naming, syntax, consts, facts, cases) =>
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   211
    (mode, naming, syntax, f consts, facts, cases));
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   212
26284
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   213
fun map_facts f =
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   214
  map_context (fn (mode, naming, syntax, consts, facts, cases) =>
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   215
    (mode, naming, syntax, consts, f facts, cases));
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   216
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   217
fun map_cases f =
26284
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   218
  map_context (fn (mode, naming, syntax, consts, facts, cases) =>
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   219
    (mode, naming, syntax, consts, facts, f cases));
24388
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   220
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   221
val get_mode = #mode o rep_context;
28407
f9db1da584ac ContextPosition.report;
wenzelm
parents: 28396
diff changeset
   222
val restore_mode = set_mode o get_mode;
27286
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   223
val abbrev_mode = get_mode #> (fn Mode {abbrev, ...} => abbrev);
21443
cc5095d57da4 added stmt mode, which affects naming/indexing of local facts;
wenzelm
parents: 21370
diff changeset
   224
24486
1dbf377c2e9a moved type_mode to type.ML;
wenzelm
parents: 24388
diff changeset
   225
fun set_stmt stmt =
1dbf377c2e9a moved type_mode to type.ML;
wenzelm
parents: 24388
diff changeset
   226
  map_mode (fn (_, pattern, schematic, abbrev) => (stmt, pattern, schematic, abbrev));
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   227
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   228
val naming_of = #naming o rep_context;
33165
50c4debfd5ae more direct access to naming;
wenzelm
parents: 33157
diff changeset
   229
val restore_naming = map_naming o K o naming_of
33095
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 33031
diff changeset
   230
val full_name = Name_Space.full_name o naming_of;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   231
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   232
val syntax_of = #syntax o rep_context;
33387
acea2f336721 modernized structure Local_Syntax;
wenzelm
parents: 33386
diff changeset
   233
val syn_of = Local_Syntax.syn_of o syntax_of;
acea2f336721 modernized structure Local_Syntax;
wenzelm
parents: 33386
diff changeset
   234
val set_syntax_mode = map_syntax o Local_Syntax.set_mode;
acea2f336721 modernized structure Local_Syntax;
wenzelm
parents: 33386
diff changeset
   235
val restore_syntax_mode = map_syntax o Local_Syntax.restore_mode o syntax_of;
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   236
25052
a014d544f54d added revert_abbrev;
wenzelm
parents: 25039
diff changeset
   237
val consts_of = #1 o #consts o rep_context;
21183
a76f457b6d86 added const_syntax_name;
wenzelm
parents: 20784
diff changeset
   238
val const_syntax_name = Consts.syntax_name o consts_of;
24752
8aec6154bb17 exported constraint interfaces
haftmann
parents: 24693
diff changeset
   239
val the_const_constraint = Consts.the_constraint o consts_of;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   240
26268
80aaf4d034be added mk_const functions
haftmann
parents: 26250
diff changeset
   241
fun mk_const ctxt (c, Ts) = Const (c, Consts.instance (consts_of ctxt) (c, Ts));
80aaf4d034be added mk_const functions
haftmann
parents: 26250
diff changeset
   242
26284
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   243
val facts_of = #facts o rep_context;
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   244
val cases_of = #cases o rep_context;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   245
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   246
20367
ba1c262c7625 renamed map_theory to theory;
wenzelm
parents: 20330
diff changeset
   247
(* theory transfer *)
12093
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   248
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   249
fun transfer_syntax thy =
33387
acea2f336721 modernized structure Local_Syntax;
wenzelm
parents: 33386
diff changeset
   250
  map_syntax (Local_Syntax.rebuild thy) #>
30424
692279df7cc2 Consts.eq_const is back again (cf. 907da436f8a9) -- required in ProofContext.transfer_syntax to prevent expensive merges of local_consts/global_consts;
wenzelm
parents: 30420
diff changeset
   251
  map_consts (fn consts as (local_consts, global_consts) =>
692279df7cc2 Consts.eq_const is back again (cf. 907da436f8a9) -- required in ProofContext.transfer_syntax to prevent expensive merges of local_consts/global_consts;
wenzelm
parents: 30420
diff changeset
   252
    let val thy_consts = Sign.consts_of thy in
692279df7cc2 Consts.eq_const is back again (cf. 907da436f8a9) -- required in ProofContext.transfer_syntax to prevent expensive merges of local_consts/global_consts;
wenzelm
parents: 30420
diff changeset
   253
      if Consts.eq_consts (thy_consts, global_consts) then consts
692279df7cc2 Consts.eq_const is back again (cf. 907da436f8a9) -- required in ProofContext.transfer_syntax to prevent expensive merges of local_consts/global_consts;
wenzelm
parents: 30420
diff changeset
   254
      else (Consts.merge (local_consts, thy_consts), thy_consts)
692279df7cc2 Consts.eq_const is back again (cf. 907da436f8a9) -- required in ProofContext.transfer_syntax to prevent expensive merges of local_consts/global_consts;
wenzelm
parents: 30420
diff changeset
   255
    end);
17072
501c28052aea added transfer;
wenzelm
parents: 16992
diff changeset
   256
33031
b75c35574e04 backpatching of structure Proof and ProofContext -- avoid odd aliases;
wenzelm
parents: 32966
diff changeset
   257
fun transfer thy = Context.raw_transfer thy #> transfer_syntax thy;
17072
501c28052aea added transfer;
wenzelm
parents: 16992
diff changeset
   258
20367
ba1c262c7625 renamed map_theory to theory;
wenzelm
parents: 20330
diff changeset
   259
fun theory f ctxt = transfer (f (theory_of ctxt)) ctxt;
ba1c262c7625 renamed map_theory to theory;
wenzelm
parents: 20330
diff changeset
   260
ba1c262c7625 renamed map_theory to theory;
wenzelm
parents: 20330
diff changeset
   261
fun theory_result f ctxt =
ba1c262c7625 renamed map_theory to theory;
wenzelm
parents: 20330
diff changeset
   262
  let val (res, thy') = f (theory_of ctxt)
ba1c262c7625 renamed map_theory to theory;
wenzelm
parents: 20330
diff changeset
   263
  in (res, ctxt |> transfer thy') end;
19019
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
   264
12093
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   265
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   266
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   267
(** pretty printing **)
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   268
28212
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   269
(* extern *)
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   270
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   271
fun extern_fact ctxt name =
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   272
  let
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   273
    val local_facts = facts_of ctxt;
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   274
    val global_facts = PureThy.facts_of (theory_of ctxt);
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   275
  in
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   276
    if is_some (Facts.lookup (Context.Proof ctxt) local_facts name)
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   277
    then Facts.extern local_facts name
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   278
    else Facts.extern global_facts name
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   279
  end;
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   280
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   281
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   282
(* pretty *)
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   283
24922
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   284
fun pretty_term_abbrev ctxt = Syntax.pretty_term (set_mode mode_abbrev ctxt);
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   285
28212
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   286
fun pretty_fact_name ctxt a = Pretty.block
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   287
  [Pretty.markup (Markup.fact a) [Pretty.str (extern_fact ctxt a)], Pretty.str ":"];
28209
02f3222a392d pretty_fact: extern fact name wrt. the given context, assuming that is the proper one for presentation;
wenzelm
parents: 28087
diff changeset
   288
32090
39acf19e9f3a moved ProofContext.pretty_thm to Display.pretty_thm etc.;
wenzelm
parents: 32032
diff changeset
   289
fun pretty_fact_aux ctxt flag ("", ths) =
39acf19e9f3a moved ProofContext.pretty_thm to Display.pretty_thm etc.;
wenzelm
parents: 32032
diff changeset
   290
      Display.pretty_thms_aux ctxt flag ths
30723
a3adc9a96a16 pretty_thm_aux etc.: explicit show_status flag;
wenzelm
parents: 30628
diff changeset
   291
  | pretty_fact_aux ctxt flag (a, [th]) = Pretty.block
32090
39acf19e9f3a moved ProofContext.pretty_thm to Display.pretty_thm etc.;
wenzelm
parents: 32032
diff changeset
   292
      [pretty_fact_name ctxt a, Pretty.brk 1, Display.pretty_thm_aux ctxt flag th]
30723
a3adc9a96a16 pretty_thm_aux etc.: explicit show_status flag;
wenzelm
parents: 30628
diff changeset
   293
  | pretty_fact_aux ctxt flag (a, ths) = Pretty.block
32090
39acf19e9f3a moved ProofContext.pretty_thm to Display.pretty_thm etc.;
wenzelm
parents: 32032
diff changeset
   294
      (Pretty.fbreaks (pretty_fact_name ctxt a :: map (Display.pretty_thm_aux ctxt flag) ths));
30723
a3adc9a96a16 pretty_thm_aux etc.: explicit show_status flag;
wenzelm
parents: 30628
diff changeset
   295
a3adc9a96a16 pretty_thm_aux etc.: explicit show_status flag;
wenzelm
parents: 30628
diff changeset
   296
fun pretty_fact ctxt = pretty_fact_aux ctxt true;
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   297
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   298
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   299
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   300
(** prepare types **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   301
24277
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   302
(* read_typ *)
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   303
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   304
fun read_typ_mode mode ctxt s =
24486
1dbf377c2e9a moved type_mode to type.ML;
wenzelm
parents: 24388
diff changeset
   305
  Syntax.read_typ (Type.set_mode mode ctxt) s;
24277
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   306
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   307
val read_typ        = read_typ_mode Type.mode_default;
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   308
val read_typ_syntax = read_typ_mode Type.mode_syntax;
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   309
val read_typ_abbrev = read_typ_mode Type.mode_abbrev;
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   310
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   311
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   312
(* cert_typ *)
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   313
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   314
fun cert_typ_mode mode ctxt T =
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   315
  Sign.certify_typ_mode mode (theory_of ctxt) T
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   316
    handle TYPE (msg, _, _) => error msg;
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   317
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   318
val cert_typ        = cert_typ_mode Type.mode_default;
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   319
val cert_typ_syntax = cert_typ_mode Type.mode_syntax;
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   320
val cert_typ_abbrev = cert_typ_mode Type.mode_abbrev;
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   321
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   322
24388
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   323
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   324
(** prepare variables **)
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   325
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   326
(* internalize Skolem constants *)
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   327
19897
fe661eb3b0e7 ProofContext: moved variable operations to struct Variable;
wenzelm
parents: 19882
diff changeset
   328
val lookup_skolem = AList.lookup (op =) o Variable.fixes_of;
18187
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
   329
fun get_skolem ctxt x = the_default x (lookup_skolem ctxt x);
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   330
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
   331
fun no_skolem internal x =
20086
94ca946fb689 adapted to more efficient Name/Variable implementation;
wenzelm
parents: 20049
diff changeset
   332
  if can Name.dest_skolem x then
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
   333
    error ("Illegal reference to internal Skolem constant: " ^ quote x)
20086
94ca946fb689 adapted to more efficient Name/Variable implementation;
wenzelm
parents: 20049
diff changeset
   334
  else if not internal andalso can Name.dest_internal x then
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
   335
    error ("Illegal reference to internal variable: " ^ quote x)
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   336
  else x;
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   337
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   338
26717
2e1c3a0e7308 revert_skolem: do not change non-reversible names;
wenzelm
parents: 26705
diff changeset
   339
(* revert Skolem constants -- if possible *)
18255
5ef79b75a002 revert_skolem: fall back on Syntax.deskolem;
wenzelm
parents: 18211
diff changeset
   340
26717
2e1c3a0e7308 revert_skolem: do not change non-reversible names;
wenzelm
parents: 26705
diff changeset
   341
fun revert_skolem ctxt x =
2e1c3a0e7308 revert_skolem: do not change non-reversible names;
wenzelm
parents: 26705
diff changeset
   342
  (case find_first (fn (_, y) => y = x) (Variable.fixes_of ctxt) of
2e1c3a0e7308 revert_skolem: do not change non-reversible names;
wenzelm
parents: 26705
diff changeset
   343
    SOME (x', _) => if lookup_skolem ctxt x' = SOME x then x' else x
2e1c3a0e7308 revert_skolem: do not change non-reversible names;
wenzelm
parents: 26705
diff changeset
   344
  | NONE => x);
9133
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   345
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   346
26705
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   347
(* default token translations *)
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   348
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   349
local
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   350
26717
2e1c3a0e7308 revert_skolem: do not change non-reversible names;
wenzelm
parents: 26705
diff changeset
   351
fun free_or_skolem ctxt x =
2e1c3a0e7308 revert_skolem: do not change non-reversible names;
wenzelm
parents: 26705
diff changeset
   352
  (if can Name.dest_skolem x then Pretty.mark Markup.skolem (Pretty.str (revert_skolem ctxt x))
2e1c3a0e7308 revert_skolem: do not change non-reversible names;
wenzelm
parents: 26705
diff changeset
   353
   else Pretty.mark Markup.free (Pretty.str x))
26930
64e50d783276 default token translations: observe Sign.is_pretty_global for fixed variables;
wenzelm
parents: 26731
diff changeset
   354
  |> Pretty.mark
26939
1035c89b4c02 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26930
diff changeset
   355
    (if Variable.is_fixed ctxt x orelse Syntax.is_pretty_global ctxt then Markup.fixed x
26930
64e50d783276 default token translations: observe Sign.is_pretty_global for fixed variables;
wenzelm
parents: 26731
diff changeset
   356
     else Markup.hilite);
26705
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   357
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   358
fun var_or_skolem _ s =
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   359
  (case Lexicon.read_variable s of
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   360
    SOME (x, i) =>
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   361
      (case try Name.dest_skolem x of
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   362
        NONE => Pretty.mark Markup.var (Pretty.str s)
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   363
      | SOME x' => Pretty.mark Markup.skolem
32966
5b21661fe618 indicate CRITICAL nature of various setmp combinators;
wenzelm
parents: 32784
diff changeset
   364
          (Pretty.str (setmp_CRITICAL show_question_marks true Term.string_of_vname (x', i))))
26705
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   365
  | NONE => Pretty.mark Markup.var (Pretty.str s));
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   366
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   367
fun class_markup _ c =    (* FIXME authentic name *)
27828
edafacb690a3 renamed Markup.class to Markup.tclass, to avoid potential conflicts with spacial meaning in markup languages (e.g. HTML);
wenzelm
parents: 27821
diff changeset
   368
  Pretty.mark (Markup.tclassN, []) (Pretty.str c);
26705
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   369
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   370
fun plain_markup m _ s = Pretty.mark m (Pretty.str s);
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   371
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   372
val token_trans =
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   373
 Syntax.tokentrans_mode ""
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   374
  [("class", class_markup),
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   375
   ("tfree", plain_markup Markup.tfree),
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   376
   ("tvar", plain_markup Markup.tvar),
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   377
   ("free", free_or_skolem),
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   378
   ("bound", plain_markup Markup.bound),
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   379
   ("var", var_or_skolem),
29318
6337d1cb2ba0 added numeral, which supercedes num, xnum, float;
wenzelm
parents: 29006
diff changeset
   380
   ("numeral", plain_markup Markup.numeral),
6337d1cb2ba0 added numeral, which supercedes num, xnum, float;
wenzelm
parents: 29006
diff changeset
   381
   ("inner_string", plain_markup Markup.inner_string)];
26705
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   382
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   383
in val _ = Context.>> (Context.map_theory (Sign.add_tokentrfuns token_trans)) end;
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   384
334d3fa649ea default token translations with proper markup;
wenzelm
parents: 26695
diff changeset
   385
18187
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
   386
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   387
(** prepare terms and propositions **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   388
25328
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   389
(* inferred types of parameters *)
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   390
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   391
fun infer_type ctxt x =
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   392
  Term.fastype_of (singleton (Syntax.check_terms (set_mode mode_schematic ctxt))
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   393
    (Free (x, dummyT)));
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   394
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   395
fun inferred_param x ctxt =
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   396
  let val T = infer_type ctxt x
28082
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
   397
  in (T, ctxt |> Variable.declare_term (Free (x, T))) end;
25328
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   398
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   399
fun inferred_fixes ctxt =
28082
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
   400
  let
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
   401
    val xs = rev (map #2 (Variable.fixes_of ctxt));
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
   402
    val (Ts, ctxt') = fold_map inferred_param xs ctxt;
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
   403
  in (xs ~~ Ts, ctxt') end;
25328
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   404
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   405
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   406
(* type and constant names *)
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   407
27821
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   408
local
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   409
30573
49899f26fbd1 de-camelized Symbol_Pos;
wenzelm
parents: 30566
diff changeset
   410
val token_content = Syntax.read_token #>> Symbol_Pos.content;
27821
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   411
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   412
fun prep_const_proper ctxt (c, pos) =
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   413
  let val t as (Const (d, _)) =
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   414
    (case Variable.lookup_const ctxt c of
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   415
      SOME d => Const (d, Consts.type_scheme (consts_of ctxt) d handle TYPE (msg, _, _) => error msg)
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   416
    | NONE => Consts.read_const (consts_of ctxt) c)
28411
93ec7fa3b3a0 back to plain Position.report for regular references;
wenzelm
parents: 28407
diff changeset
   417
  in Position.report (Markup.const d) pos; t end;
27821
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   418
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   419
in
25328
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   420
27821
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   421
fun read_tyname ctxt str =
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   422
  let
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   423
    val thy = theory_of ctxt;
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   424
    val (c, pos) = token_content str;
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   425
  in
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   426
    if Syntax.is_tid c then
28411
93ec7fa3b3a0 back to plain Position.report for regular references;
wenzelm
parents: 28407
diff changeset
   427
     (Position.report Markup.tfree pos;
27821
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   428
      TFree (c, the_default (Sign.defaultS thy) (Variable.def_sort ctxt (c, ~1))))
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   429
    else
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   430
      let
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   431
        val d = Sign.intern_type thy c;
28411
93ec7fa3b3a0 back to plain Position.report for regular references;
wenzelm
parents: 28407
diff changeset
   432
        val _ = Position.report (Markup.tycon d) pos;
27821
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   433
      in Type (d, replicate (Sign.arity_number thy d) dummyT) end
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   434
  end;
25328
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   435
27821
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   436
fun read_const_proper ctxt = prep_const_proper ctxt o token_content;
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   437
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   438
fun read_const ctxt str =
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   439
  let val (c, pos) = token_content str in
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   440
    (case (lookup_skolem ctxt c, Variable.is_const ctxt c) of
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   441
      (SOME x, false) =>
28411
93ec7fa3b3a0 back to plain Position.report for regular references;
wenzelm
parents: 28407
diff changeset
   442
        (Position.report (Markup.name x
27821
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   443
            (if can Name.dest_skolem x then Markup.skolem else Markup.free)) pos;
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   444
          Free (x, infer_type ctxt x))
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   445
    | _ => prep_const_proper ctxt (c, pos))
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   446
  end;
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   447
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   448
end;
25328
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   449
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   450
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   451
(* read_term *)
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   452
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   453
fun read_term_mode mode ctxt = Syntax.read_term (set_mode mode ctxt);
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   454
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   455
val read_term_pattern   = read_term_mode mode_pattern;
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   456
val read_term_schematic = read_term_mode mode_schematic;
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   457
val read_term_abbrev    = read_term_mode mode_abbrev;
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   458
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   459
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   460
(* local abbreviations *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   461
26240
cc630a75b62a dropped local tsigs
haftmann
parents: 26200
diff changeset
   462
val tsig_of = Sign.tsig_of o ProofContext.theory_of;
cc630a75b62a dropped local tsigs
haftmann
parents: 26200
diff changeset
   463
24501
7a2b20145888 export various inner syntax modes;
wenzelm
parents: 24495
diff changeset
   464
local
7a2b20145888 export various inner syntax modes;
wenzelm
parents: 24495
diff changeset
   465
26731
48df747c8543 exported is_abbrev mode discriminator
haftmann
parents: 26722
diff changeset
   466
fun certify_consts ctxt = Consts.certify (Syntax.pp ctxt) (tsig_of ctxt)
27286
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   467
  (not (abbrev_mode ctxt)) (consts_of ctxt);
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   468
19897
fe661eb3b0e7 ProofContext: moved variable operations to struct Variable;
wenzelm
parents: 19882
diff changeset
   469
fun reject_schematic (Var (xi, _)) =
22678
23963361278c Term.string_of_vname;
wenzelm
parents: 22670
diff changeset
   470
      error ("Unbound schematic variable: " ^ Term.string_of_vname xi)
19897
fe661eb3b0e7 ProofContext: moved variable operations to struct Variable;
wenzelm
parents: 19882
diff changeset
   471
  | reject_schematic (Abs (_, _, t)) = reject_schematic t
fe661eb3b0e7 ProofContext: moved variable operations to struct Variable;
wenzelm
parents: 19882
diff changeset
   472
  | reject_schematic (t $ u) = (reject_schematic t; reject_schematic u)
fe661eb3b0e7 ProofContext: moved variable operations to struct Variable;
wenzelm
parents: 19882
diff changeset
   473
  | reject_schematic _ = ();
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   474
24495
eab1b52a47d0 added join_mode;
wenzelm
parents: 24486
diff changeset
   475
fun expand_binds ctxt =
eab1b52a47d0 added join_mode;
wenzelm
parents: 24486
diff changeset
   476
  let val Mode {pattern, schematic, ...} = get_mode ctxt in
eab1b52a47d0 added join_mode;
wenzelm
parents: 24486
diff changeset
   477
    if pattern then I
eab1b52a47d0 added join_mode;
wenzelm
parents: 24486
diff changeset
   478
    else Variable.expand_binds ctxt #> (if schematic then I else tap reject_schematic)
eab1b52a47d0 added join_mode;
wenzelm
parents: 24486
diff changeset
   479
  end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   480
24501
7a2b20145888 export various inner syntax modes;
wenzelm
parents: 24495
diff changeset
   481
in
7a2b20145888 export various inner syntax modes;
wenzelm
parents: 24495
diff changeset
   482
7a2b20145888 export various inner syntax modes;
wenzelm
parents: 24495
diff changeset
   483
fun expand_abbrevs ctxt = certify_consts ctxt #> expand_binds ctxt;
7a2b20145888 export various inner syntax modes;
wenzelm
parents: 24495
diff changeset
   484
7a2b20145888 export various inner syntax modes;
wenzelm
parents: 24495
diff changeset
   485
end;
7a2b20145888 export various inner syntax modes;
wenzelm
parents: 24495
diff changeset
   486
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   487
24922
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   488
fun contract_abbrevs ctxt t =
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   489
  let
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   490
    val thy = theory_of ctxt;
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   491
    val consts = consts_of ctxt;
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   492
    val Mode {abbrev, ...} = get_mode ctxt;
30566
9643f54c4184 reverted abbreviations: improved performance via Item_Net.T;
wenzelm
parents: 30473
diff changeset
   493
    val retrieve = Consts.retrieve_abbrevs consts (print_mode_value () @ [""]);
9643f54c4184 reverted abbreviations: improved performance via Item_Net.T;
wenzelm
parents: 30473
diff changeset
   494
    fun match_abbrev u = Option.map #1 (get_first (Pattern.match_rew thy u) (retrieve u));
24922
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   495
  in
25052
a014d544f54d added revert_abbrev;
wenzelm
parents: 25039
diff changeset
   496
    if abbrev orelse print_mode_active "no_abbrevs" orelse not (can Term.type_of t) then t
30566
9643f54c4184 reverted abbreviations: improved performance via Item_Net.T;
wenzelm
parents: 30473
diff changeset
   497
    else Pattern.rewrite_term thy [] [match_abbrev] t
24922
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   498
  end;
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   499
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   500
24518
4dd086997bab removed unused join_mode;
wenzelm
parents: 24511
diff changeset
   501
(* patterns *)
4dd086997bab removed unused join_mode;
wenzelm
parents: 24511
diff changeset
   502
32003
befec6450fd6 tuned prepare_patternT: Term.exists_subtype;
wenzelm
parents: 30815
diff changeset
   503
fun prepare_patternT ctxt T =
befec6450fd6 tuned prepare_patternT: Term.exists_subtype;
wenzelm
parents: 30815
diff changeset
   504
  let
befec6450fd6 tuned prepare_patternT: Term.exists_subtype;
wenzelm
parents: 30815
diff changeset
   505
    val Mode {pattern, schematic, ...} = get_mode ctxt;
befec6450fd6 tuned prepare_patternT: Term.exists_subtype;
wenzelm
parents: 30815
diff changeset
   506
    val _ =
befec6450fd6 tuned prepare_patternT: Term.exists_subtype;
wenzelm
parents: 30815
diff changeset
   507
      pattern orelse schematic orelse
befec6450fd6 tuned prepare_patternT: Term.exists_subtype;
wenzelm
parents: 30815
diff changeset
   508
        T |> Term.exists_subtype
befec6450fd6 tuned prepare_patternT: Term.exists_subtype;
wenzelm
parents: 30815
diff changeset
   509
          (fn TVar (xi, _) =>
befec6450fd6 tuned prepare_patternT: Term.exists_subtype;
wenzelm
parents: 30815
diff changeset
   510
            not (TypeInfer.is_param xi) andalso
befec6450fd6 tuned prepare_patternT: Term.exists_subtype;
wenzelm
parents: 30815
diff changeset
   511
              error ("Illegal schematic type variable: " ^ Term.string_of_vname xi)
befec6450fd6 tuned prepare_patternT: Term.exists_subtype;
wenzelm
parents: 30815
diff changeset
   512
          | _ => false)
befec6450fd6 tuned prepare_patternT: Term.exists_subtype;
wenzelm
parents: 30815
diff changeset
   513
  in T end;
24518
4dd086997bab removed unused join_mode;
wenzelm
parents: 24511
diff changeset
   514
22712
8f2ba236918b replaced read_term_legacy by read_prop_legacy;
wenzelm
parents: 22701
diff changeset
   515
24505
9e6d91f8bb73 reject_vars: accept type-inference params;
wenzelm
parents: 24501
diff changeset
   516
local
6550
68f950b1a664 dummy patterns;
wenzelm
parents: 6528
diff changeset
   517
30758
wenzelm
parents: 30757
diff changeset
   518
structure Allow_Dummies = ProofDataFun(type T = bool fun init _ = false);
27259
6e71abb8c994 export transfer_syntax;
wenzelm
parents: 27195
diff changeset
   519
6e71abb8c994 export transfer_syntax;
wenzelm
parents: 27195
diff changeset
   520
fun check_dummies ctxt t =
30758
wenzelm
parents: 30757
diff changeset
   521
  if Allow_Dummies.get ctxt then t
27259
6e71abb8c994 export transfer_syntax;
wenzelm
parents: 27195
diff changeset
   522
  else Term.no_dummy_patterns t handle TERM _ => error "Illegal dummy pattern(s) in term";
6e71abb8c994 export transfer_syntax;
wenzelm
parents: 27195
diff changeset
   523
24767
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
   524
fun prepare_dummies ts = #1 (fold_map Term.replace_dummy_patterns ts 1);
6762
a9a515a43ae0 read_term/prop_pat: do not freeze;
wenzelm
parents: 6721
diff changeset
   525
27259
6e71abb8c994 export transfer_syntax;
wenzelm
parents: 27195
diff changeset
   526
in
6550
68f950b1a664 dummy patterns;
wenzelm
parents: 6528
diff changeset
   527
30758
wenzelm
parents: 30757
diff changeset
   528
val allow_dummies = Allow_Dummies.put true;
24505
9e6d91f8bb73 reject_vars: accept type-inference params;
wenzelm
parents: 24501
diff changeset
   529
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   530
fun prepare_patterns ctxt =
24518
4dd086997bab removed unused join_mode;
wenzelm
parents: 24511
diff changeset
   531
  let val Mode {pattern, ...} = get_mode ctxt in
24767
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
   532
    TypeInfer.fixate_params (Variable.names_of ctxt) #>
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
   533
    pattern ? Variable.polymorphic ctxt #>
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   534
    (map o Term.map_types) (prepare_patternT ctxt) #>
27259
6e71abb8c994 export transfer_syntax;
wenzelm
parents: 27195
diff changeset
   535
    (if pattern then prepare_dummies else map (check_dummies ctxt))
24505
9e6d91f8bb73 reject_vars: accept type-inference params;
wenzelm
parents: 24501
diff changeset
   536
  end;
9e6d91f8bb73 reject_vars: accept type-inference params;
wenzelm
parents: 24501
diff changeset
   537
9e6d91f8bb73 reject_vars: accept type-inference params;
wenzelm
parents: 24501
diff changeset
   538
end;
9e6d91f8bb73 reject_vars: accept type-inference params;
wenzelm
parents: 24501
diff changeset
   539
6550
68f950b1a664 dummy patterns;
wenzelm
parents: 6528
diff changeset
   540
22763
5c1752279f25 added decode_term (belongs to Syntax module);
wenzelm
parents: 22728
diff changeset
   541
(* decoding raw terms (syntax trees) *)
5c1752279f25 added decode_term (belongs to Syntax module);
wenzelm
parents: 22728
diff changeset
   542
27286
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   543
(* types *)
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   544
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   545
fun get_sort thy def_sort raw_env =
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   546
  let
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   547
    val tsig = Sign.tsig_of thy;
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   548
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   549
    fun eq ((xi, S), (xi', S')) =
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   550
      Term.eq_ix (xi, xi') andalso Type.eq_sort tsig (S, S');
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   551
    val env = distinct eq raw_env;
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   552
    val _ = (case duplicates (eq_fst (op =)) env of [] => ()
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   553
      | dups => error ("Inconsistent sort constraints for type variable(s) "
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   554
          ^ commas_quote (map (Term.string_of_vname' o fst) dups)));
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   555
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   556
    fun get xi =
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   557
      (case (AList.lookup (op =) env xi, def_sort xi) of
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   558
        (NONE, NONE) => Type.defaultS tsig
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   559
      | (NONE, SOME S) => S
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   560
      | (SOME S, NONE) => S
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   561
      | (SOME S, SOME S') =>
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   562
          if Type.eq_sort tsig (S, S') then S'
30815
e96498265a05 tuned error message;
wenzelm
parents: 30763
diff changeset
   563
          else error ("Sort constraint " ^ Syntax.string_of_sort_global thy S ^
e96498265a05 tuned error message;
wenzelm
parents: 30763
diff changeset
   564
            " inconsistent with default " ^ Syntax.string_of_sort_global thy S' ^
e96498265a05 tuned error message;
wenzelm
parents: 30763
diff changeset
   565
            " for type variable " ^ quote (Term.string_of_vname' xi)));
27286
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   566
  in get end;
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   567
25353
17f04d987f37 removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
wenzelm
parents: 25345
diff changeset
   568
local
17f04d987f37 removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
wenzelm
parents: 25345
diff changeset
   569
17f04d987f37 removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
wenzelm
parents: 25345
diff changeset
   570
fun intern_skolem ctxt def_type x =
22763
5c1752279f25 added decode_term (belongs to Syntax module);
wenzelm
parents: 22728
diff changeset
   571
  let
25353
17f04d987f37 removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
wenzelm
parents: 25345
diff changeset
   572
    val _ = no_skolem false x;
22763
5c1752279f25 added decode_term (belongs to Syntax module);
wenzelm
parents: 22728
diff changeset
   573
    val sko = lookup_skolem ctxt x;
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30284
diff changeset
   574
    val is_const = can (read_const_proper ctxt) x orelse Long_Name.is_qualified x;
22763
5c1752279f25 added decode_term (belongs to Syntax module);
wenzelm
parents: 22728
diff changeset
   575
    val is_declared = is_some (def_type (x, ~1));
25319
074d41176558 read_const/legacy_intern_skolem: cover consts within the local scope;
wenzelm
parents: 25168
diff changeset
   576
  in
25353
17f04d987f37 removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
wenzelm
parents: 25345
diff changeset
   577
    if Variable.is_const ctxt x then NONE
17f04d987f37 removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
wenzelm
parents: 25345
diff changeset
   578
    else if is_some sko then sko
17f04d987f37 removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
wenzelm
parents: 25345
diff changeset
   579
    else if not is_const orelse is_declared then SOME x
17f04d987f37 removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
wenzelm
parents: 25345
diff changeset
   580
    else NONE
25319
074d41176558 read_const/legacy_intern_skolem: cover consts within the local scope;
wenzelm
parents: 25168
diff changeset
   581
  end;
22763
5c1752279f25 added decode_term (belongs to Syntax module);
wenzelm
parents: 22728
diff changeset
   582
25353
17f04d987f37 removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
wenzelm
parents: 25345
diff changeset
   583
in
17f04d987f37 removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
wenzelm
parents: 25345
diff changeset
   584
24371
80bd6edc8ba4 inner syntax: added parse_term/prop;
wenzelm
parents: 24363
diff changeset
   585
fun term_context ctxt =
80bd6edc8ba4 inner syntax: added parse_term/prop;
wenzelm
parents: 24363
diff changeset
   586
  let val thy = theory_of ctxt in
27286
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   587
   {get_sort = get_sort thy (Variable.def_sort ctxt),
27195
bbf4cbc69243 map_const: soft version, no failure here;
wenzelm
parents: 27173
diff changeset
   588
    map_const = fn a => ((true, #1 (Term.dest_Const (read_const_proper ctxt a)))
bbf4cbc69243 map_const: soft version, no failure here;
wenzelm
parents: 27173
diff changeset
   589
      handle ERROR _ => (false, Consts.intern (consts_of ctxt) a)),
25353
17f04d987f37 removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
wenzelm
parents: 25345
diff changeset
   590
    map_free = intern_skolem ctxt (Variable.def_type ctxt false),
24371
80bd6edc8ba4 inner syntax: added parse_term/prop;
wenzelm
parents: 24363
diff changeset
   591
    map_type = Sign.intern_tycons thy,
80bd6edc8ba4 inner syntax: added parse_term/prop;
wenzelm
parents: 24363
diff changeset
   592
    map_sort = Sign.intern_sort thy}
80bd6edc8ba4 inner syntax: added parse_term/prop;
wenzelm
parents: 24363
diff changeset
   593
  end;
80bd6edc8ba4 inner syntax: added parse_term/prop;
wenzelm
parents: 24363
diff changeset
   594
22763
5c1752279f25 added decode_term (belongs to Syntax module);
wenzelm
parents: 22728
diff changeset
   595
fun decode_term ctxt =
24371
80bd6edc8ba4 inner syntax: added parse_term/prop;
wenzelm
parents: 24363
diff changeset
   596
  let val {get_sort, map_const, map_free, map_type, map_sort} = term_context ctxt
22763
5c1752279f25 added decode_term (belongs to Syntax module);
wenzelm
parents: 22728
diff changeset
   597
  in Syntax.decode_term get_sort map_const map_free map_type map_sort end;
5c1752279f25 added decode_term (belongs to Syntax module);
wenzelm
parents: 22728
diff changeset
   598
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   599
end;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   600
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   601
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   602
(* certify terms *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   603
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   604
local
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   605
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   606
fun gen_cert prop ctxt t =
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   607
  t
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   608
  |> expand_abbrevs ctxt
24961
5298ee9c3fe5 moved ProofContext.pp to Syntax.pp;
wenzelm
parents: 24949
diff changeset
   609
  |> (fn t' => #1 (Sign.certify' prop (Syntax.pp ctxt) false (consts_of ctxt) (theory_of ctxt) t')
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   610
    handle TYPE (msg, _, _) => error msg
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   611
      | TERM (msg, _) => error msg);
16501
fec0cf020bad thmref: Name vs. NameSelection;
wenzelm
parents: 16458
diff changeset
   612
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   613
in
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   614
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   615
val cert_term = gen_cert false;
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   616
val cert_prop = gen_cert true;
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   617
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   618
end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   619
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   620
24495
eab1b52a47d0 added join_mode;
wenzelm
parents: 24486
diff changeset
   621
(* type checking/inference *)
22701
4346f230283d proper interface infer_types(_pat);
wenzelm
parents: 22678
diff changeset
   622
24495
eab1b52a47d0 added join_mode;
wenzelm
parents: 24486
diff changeset
   623
fun standard_infer_types ctxt ts =
eab1b52a47d0 added join_mode;
wenzelm
parents: 24486
diff changeset
   624
  let val Mode {pattern, ...} = get_mode ctxt in
24961
5298ee9c3fe5 moved ProofContext.pp to Syntax.pp;
wenzelm
parents: 24949
diff changeset
   625
    TypeInfer.infer_types (Syntax.pp ctxt) (tsig_of ctxt) (Syntax.check_typs ctxt)
24495
eab1b52a47d0 added join_mode;
wenzelm
parents: 24486
diff changeset
   626
      (try (Consts.the_constraint (consts_of ctxt))) (Variable.def_type ctxt pattern)
27264
843472ae2116 simplified TypeInfer.infer_types;
wenzelm
parents: 27259
diff changeset
   627
      (Variable.names_of ctxt) (Variable.maxidx_of ctxt) ts
24495
eab1b52a47d0 added join_mode;
wenzelm
parents: 24486
diff changeset
   628
    handle TYPE (msg, _, _) => error msg
eab1b52a47d0 added join_mode;
wenzelm
parents: 24486
diff changeset
   629
  end;
24486
1dbf377c2e9a moved type_mode to type.ML;
wenzelm
parents: 24388
diff changeset
   630
25406
1aa7927a6759 simplified Consts.dest;
wenzelm
parents: 25353
diff changeset
   631
local
1aa7927a6759 simplified Consts.dest;
wenzelm
parents: 25353
diff changeset
   632
24518
4dd086997bab removed unused join_mode;
wenzelm
parents: 24511
diff changeset
   633
fun standard_typ_check ctxt =
4dd086997bab removed unused join_mode;
wenzelm
parents: 24511
diff changeset
   634
  map (cert_typ_mode (Type.get_mode ctxt) ctxt) #>
4dd086997bab removed unused join_mode;
wenzelm
parents: 24511
diff changeset
   635
  map (prepare_patternT ctxt);
4dd086997bab removed unused join_mode;
wenzelm
parents: 24511
diff changeset
   636
24769
1372969969e0 standard_term_check: include expand_abbrevs (back again);
wenzelm
parents: 24767
diff changeset
   637
fun standard_term_check ctxt =
1372969969e0 standard_term_check: include expand_abbrevs (back again);
wenzelm
parents: 24767
diff changeset
   638
  standard_infer_types ctxt #>
1372969969e0 standard_term_check: include expand_abbrevs (back again);
wenzelm
parents: 24767
diff changeset
   639
  map (expand_abbrevs ctxt);
24922
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   640
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   641
fun standard_term_uncheck ctxt =
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   642
  map (contract_abbrevs ctxt);
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   643
26463
9283b4185fdf Context.>> : operate on Context.generic;
wenzelm
parents: 26435
diff changeset
   644
fun add eq what f = Context.>> (what (fn xs => fn ctxt =>
9283b4185fdf Context.>> : operate on Context.generic;
wenzelm
parents: 26435
diff changeset
   645
  let val xs' = f ctxt xs in if eq_list eq (xs, xs') then NONE else SOME (xs', ctxt) end));
24767
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
   646
24518
4dd086997bab removed unused join_mode;
wenzelm
parents: 24511
diff changeset
   647
in
4dd086997bab removed unused join_mode;
wenzelm
parents: 24511
diff changeset
   648
25060
17c313217998 Syntax.(un)check: explicit result option;
wenzelm
parents: 25052
diff changeset
   649
val _ = add (op =) (Syntax.add_typ_check 0 "standard") standard_typ_check;
17c313217998 Syntax.(un)check: explicit result option;
wenzelm
parents: 25052
diff changeset
   650
val _ = add (op aconv) (Syntax.add_term_check 0 "standard") standard_term_check;
17c313217998 Syntax.(un)check: explicit result option;
wenzelm
parents: 25052
diff changeset
   651
val _ = add (op aconv) (Syntax.add_term_check 100 "fixate") prepare_patterns;
24922
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   652
25060
17c313217998 Syntax.(un)check: explicit result option;
wenzelm
parents: 25052
diff changeset
   653
val _ = add (op aconv) (Syntax.add_term_uncheck 0 "standard") standard_term_uncheck;
22701
4346f230283d proper interface infer_types(_pat);
wenzelm
parents: 22678
diff changeset
   654
24518
4dd086997bab removed unused join_mode;
wenzelm
parents: 24511
diff changeset
   655
end;
22701
4346f230283d proper interface infer_types(_pat);
wenzelm
parents: 22678
diff changeset
   656
4346f230283d proper interface infer_types(_pat);
wenzelm
parents: 22678
diff changeset
   657
9553
c2e3773475b6 norm_hhf results;
wenzelm
parents: 9540
diff changeset
   658
24767
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
   659
(** inner syntax operations **)
24371
80bd6edc8ba4 inner syntax: added parse_term/prop;
wenzelm
parents: 24363
diff changeset
   660
80bd6edc8ba4 inner syntax: added parse_term/prop;
wenzelm
parents: 24363
diff changeset
   661
local
80bd6edc8ba4 inner syntax: added parse_term/prop;
wenzelm
parents: 24363
diff changeset
   662
27754
36df922b82d4 parse_sort/typ/term/prop: report markup;
wenzelm
parents: 27738
diff changeset
   663
fun parse_sort ctxt text =
36df922b82d4 parse_sort/typ/term/prop: report markup;
wenzelm
parents: 27738
diff changeset
   664
  let
28411
93ec7fa3b3a0 back to plain Position.report for regular references;
wenzelm
parents: 28407
diff changeset
   665
    val (syms, pos) = Syntax.parse_token Markup.sort text;
27785
3bf65bfda540 parse_token: use Syntax.read_token, pass full position information;
wenzelm
parents: 27754
diff changeset
   666
    val S = Syntax.standard_parse_sort ctxt (syn_of ctxt)
3bf65bfda540 parse_token: use Syntax.read_token, pass full position information;
wenzelm
parents: 27754
diff changeset
   667
        (Sign.intern_sort (theory_of ctxt)) (syms, pos)
27754
36df922b82d4 parse_sort/typ/term/prop: report markup;
wenzelm
parents: 27738
diff changeset
   668
      handle ERROR msg => cat_error msg  ("Failed to parse sort" ^ Position.str_of pos)
36df922b82d4 parse_sort/typ/term/prop: report markup;
wenzelm
parents: 27738
diff changeset
   669
  in S end;
36df922b82d4 parse_sort/typ/term/prop: report markup;
wenzelm
parents: 27738
diff changeset
   670
36df922b82d4 parse_sort/typ/term/prop: report markup;
wenzelm
parents: 27738
diff changeset
   671
fun parse_typ ctxt text =
24371
80bd6edc8ba4 inner syntax: added parse_term/prop;
wenzelm
parents: 24363
diff changeset
   672
  let
80bd6edc8ba4 inner syntax: added parse_term/prop;
wenzelm
parents: 24363
diff changeset
   673
    val thy = ProofContext.theory_of ctxt;
27286
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   674
    val get_sort = get_sort thy (Variable.def_sort ctxt);
27754
36df922b82d4 parse_sort/typ/term/prop: report markup;
wenzelm
parents: 27738
diff changeset
   675
28411
93ec7fa3b3a0 back to plain Position.report for regular references;
wenzelm
parents: 28407
diff changeset
   676
    val (syms, pos) = Syntax.parse_token Markup.typ text;
24371
80bd6edc8ba4 inner syntax: added parse_term/prop;
wenzelm
parents: 24363
diff changeset
   677
    val T = Sign.intern_tycons thy
27785
3bf65bfda540 parse_token: use Syntax.read_token, pass full position information;
wenzelm
parents: 27754
diff changeset
   678
        (Syntax.standard_parse_typ ctxt (syn_of ctxt) get_sort (Sign.intern_sort thy) (syms, pos))
27754
36df922b82d4 parse_sort/typ/term/prop: report markup;
wenzelm
parents: 27738
diff changeset
   679
      handle ERROR msg => cat_error msg  ("Failed to parse type" ^ Position.str_of pos);
36df922b82d4 parse_sort/typ/term/prop: report markup;
wenzelm
parents: 27738
diff changeset
   680
  in T end;
24371
80bd6edc8ba4 inner syntax: added parse_term/prop;
wenzelm
parents: 24363
diff changeset
   681
27754
36df922b82d4 parse_sort/typ/term/prop: report markup;
wenzelm
parents: 27738
diff changeset
   682
fun parse_term T ctxt text =
24371
80bd6edc8ba4 inner syntax: added parse_term/prop;
wenzelm
parents: 24363
diff changeset
   683
  let
80bd6edc8ba4 inner syntax: added parse_term/prop;
wenzelm
parents: 24363
diff changeset
   684
    val thy = theory_of ctxt;
27754
36df922b82d4 parse_sort/typ/term/prop: report markup;
wenzelm
parents: 27738
diff changeset
   685
    val {get_sort, map_const, map_free, map_type, map_sort} = term_context ctxt;
36df922b82d4 parse_sort/typ/term/prop: report markup;
wenzelm
parents: 27738
diff changeset
   686
25168
2650a4a6ad3e parse_term: invoke full Syntax.check_term, not just standard_infer_types;
wenzelm
parents: 25159
diff changeset
   687
    val (T', _) = TypeInfer.paramify_dummies T 0;
27821
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   688
    val (markup, kind) = if T' = propT then (Markup.prop, "proposition") else (Markup.term, "term");
28411
93ec7fa3b3a0 back to plain Position.report for regular references;
wenzelm
parents: 28407
diff changeset
   689
    val (syms, pos) = Syntax.parse_token markup text;
27754
36df922b82d4 parse_sort/typ/term/prop: report markup;
wenzelm
parents: 27738
diff changeset
   690
25476
03da46cfab9e standard_parse_term: check ambiguous results without changing the result yet;
wenzelm
parents: 25461
diff changeset
   691
    fun check t = (Syntax.check_term ctxt (TypeInfer.constrain T' t); NONE)
03da46cfab9e standard_parse_term: check ambiguous results without changing the result yet;
wenzelm
parents: 25461
diff changeset
   692
      handle ERROR msg => SOME msg;
27785
3bf65bfda540 parse_token: use Syntax.read_token, pass full position information;
wenzelm
parents: 27754
diff changeset
   693
    val t = Syntax.standard_parse_term (Syntax.pp ctxt) check get_sort map_const map_free
3bf65bfda540 parse_token: use Syntax.read_token, pass full position information;
wenzelm
parents: 27754
diff changeset
   694
        map_type map_sort ctxt (Sign.is_logtype thy) (syn_of ctxt) T' (syms, pos)
27754
36df922b82d4 parse_sort/typ/term/prop: report markup;
wenzelm
parents: 27738
diff changeset
   695
      handle ERROR msg => cat_error msg  ("Failed to parse " ^ kind ^ Position.str_of pos);
36df922b82d4 parse_sort/typ/term/prop: report markup;
wenzelm
parents: 27738
diff changeset
   696
  in t end;
24371
80bd6edc8ba4 inner syntax: added parse_term/prop;
wenzelm
parents: 24363
diff changeset
   697
24922
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   698
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   699
fun unparse_sort ctxt S =
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   700
  Syntax.standard_unparse_sort ctxt (syn_of ctxt) (Sign.extern_sort (theory_of ctxt) S);
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   701
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   702
fun unparse_typ ctxt T =
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   703
  Syntax.standard_unparse_typ ctxt (syn_of ctxt) (Sign.extern_typ (theory_of ctxt) T);
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   704
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   705
fun unparse_term ctxt t =
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   706
  let
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   707
    val thy = theory_of ctxt;
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   708
    val syntax = syntax_of ctxt;
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   709
    val consts = consts_of ctxt;
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   710
  in
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   711
    t
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   712
    |> Sign.extern_term (Consts.extern_early consts) thy
33387
acea2f336721 modernized structure Local_Syntax;
wenzelm
parents: 33386
diff changeset
   713
    |> Local_Syntax.extern_term syntax
acea2f336721 modernized structure Local_Syntax;
wenzelm
parents: 33386
diff changeset
   714
    |> Syntax.standard_unparse_term (Consts.extern consts) ctxt (Local_Syntax.syn_of syntax)
26960
1aa5cd390dfb unparse_term: check PureThy.old_appl_syntax instead of CPure;
wenzelm
parents: 26939
diff changeset
   715
        (not (PureThy.old_appl_syntax thy))
24922
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   716
  end;
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   717
24371
80bd6edc8ba4 inner syntax: added parse_term/prop;
wenzelm
parents: 24363
diff changeset
   718
in
80bd6edc8ba4 inner syntax: added parse_term/prop;
wenzelm
parents: 24363
diff changeset
   719
24767
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
   720
val _ = Syntax.install_operations
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
   721
  {parse_sort = parse_sort,
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
   722
   parse_typ = parse_typ,
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
   723
   parse_term = parse_term dummyT,
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
   724
   parse_prop = parse_term propT,
24922
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   725
   unparse_sort = unparse_sort,
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   726
   unparse_typ = unparse_typ,
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   727
   unparse_term = unparse_term};
24371
80bd6edc8ba4 inner syntax: added parse_term/prop;
wenzelm
parents: 24363
diff changeset
   728
80bd6edc8ba4 inner syntax: added parse_term/prop;
wenzelm
parents: 24363
diff changeset
   729
end;
80bd6edc8ba4 inner syntax: added parse_term/prop;
wenzelm
parents: 24363
diff changeset
   730
80bd6edc8ba4 inner syntax: added parse_term/prop;
wenzelm
parents: 24363
diff changeset
   731
80bd6edc8ba4 inner syntax: added parse_term/prop;
wenzelm
parents: 24363
diff changeset
   732
21610
52c0d3280798 removed obsolete (export_)standard;
wenzelm
parents: 21600
diff changeset
   733
(** export results **)
21531
43aa65a8a870 added export_(standard_)morphism;
wenzelm
parents: 21443
diff changeset
   734
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   735
fun common_export is_goal inner outer =
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   736
  map (Assumption.export is_goal inner outer) #>
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   737
  Variable.export inner outer;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   738
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   739
val goal_export = common_export true;
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   740
val export = common_export false;
12704
7bffaadc581e export_single;
wenzelm
parents: 12576
diff changeset
   741
21531
43aa65a8a870 added export_(standard_)morphism;
wenzelm
parents: 21443
diff changeset
   742
fun export_morphism inner outer =
43aa65a8a870 added export_(standard_)morphism;
wenzelm
parents: 21443
diff changeset
   743
  Assumption.export_morphism inner outer $>
43aa65a8a870 added export_(standard_)morphism;
wenzelm
parents: 21443
diff changeset
   744
  Variable.export_morphism inner outer;
43aa65a8a870 added export_(standard_)morphism;
wenzelm
parents: 21443
diff changeset
   745
28396
72695dd4395d added norm_export_morphism;
wenzelm
parents: 28212
diff changeset
   746
fun norm_export_morphism inner outer =
72695dd4395d added norm_export_morphism;
wenzelm
parents: 28212
diff changeset
   747
  export_morphism inner outer $>
72695dd4395d added norm_export_morphism;
wenzelm
parents: 28212
diff changeset
   748
  Morphism.thm_morphism Goal.norm_result;
72695dd4395d added norm_export_morphism;
wenzelm
parents: 28212
diff changeset
   749
21531
43aa65a8a870 added export_(standard_)morphism;
wenzelm
parents: 21443
diff changeset
   750
15758
07e382399a96 binds/thms: do not store options, but delete from table;
wenzelm
parents: 15750
diff changeset
   751
30757
2d2076300185 replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents: 30723
diff changeset
   752
(** term bindings **)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   753
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   754
(* simult_matches *)
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   755
19867
474cc9b49239 added declare_typ;
wenzelm
parents: 19847
diff changeset
   756
fun simult_matches ctxt (t, pats) =
474cc9b49239 added declare_typ;
wenzelm
parents: 19847
diff changeset
   757
  (case Seq.pull (Unify.matchers (theory_of ctxt) (map (rpair t) pats)) of
474cc9b49239 added declare_typ;
wenzelm
parents: 19847
diff changeset
   758
    NONE => error "Pattern match failed!"
32032
a6a6e8031c14 tuned/modernized Envir operations;
wenzelm
parents: 32003
diff changeset
   759
  | SOME (env, _) => Vartab.fold (fn (v, (_, t)) => cons (v, t)) (Envir.term_env env) []);
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   760
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   761
30757
2d2076300185 replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents: 30723
diff changeset
   762
(* bind_terms *)
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   763
30757
2d2076300185 replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents: 30723
diff changeset
   764
val bind_terms = fold (fn (xi, t) => fn ctxt =>
24511
69d270cc7e4f removed obsolete read/cert variations (cf. Syntax.read/check);
wenzelm
parents: 24505
diff changeset
   765
  ctxt
30757
2d2076300185 replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents: 30723
diff changeset
   766
  |> Variable.bind_term (xi, Option.map (cert_term (set_mode mode_default ctxt)) t));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   767
30757
2d2076300185 replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents: 30723
diff changeset
   768
2d2076300185 replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents: 30723
diff changeset
   769
(* auto_bind *)
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
   770
20330
wenzelm
parents: 20310
diff changeset
   771
fun drop_schematic (b as (xi, SOME t)) = if Term.exists_subterm is_Var t then (xi, NONE) else b
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   772
  | drop_schematic b = b;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   773
30757
2d2076300185 replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents: 30723
diff changeset
   774
fun auto_bind f ts ctxt = ctxt |> bind_terms (map drop_schematic (f (theory_of ctxt) ts));
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   775
33386
ff29d1549aca modernized structure AutoBind;
wenzelm
parents: 33383
diff changeset
   776
val auto_bind_goal = auto_bind Auto_Bind.goal;
ff29d1549aca modernized structure AutoBind;
wenzelm
parents: 33383
diff changeset
   777
val auto_bind_facts = auto_bind Auto_Bind.facts;
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   778
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   779
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   780
(* match_bind(_i) *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   781
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   782
local
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   783
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   784
fun gen_bind prep_terms gen raw_binds ctxt =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   785
  let
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   786
    fun prep_bind (raw_pats, t) ctxt1 =
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   787
      let
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   788
        val T = Term.fastype_of t;
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   789
        val ctxt2 = Variable.declare_term t ctxt1;
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   790
        val pats = prep_terms (set_mode mode_pattern ctxt2) T raw_pats;
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   791
        val binds = simult_matches ctxt2 (t, pats);
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   792
      in (binds, ctxt2) end;
7670
e302e4269087 added cert_skolem;
wenzelm
parents: 7663
diff changeset
   793
24686
8113d0149304 made smlnj happy;
wenzelm
parents: 24684
diff changeset
   794
    val ts = prep_terms ctxt dummyT (map snd raw_binds);
8113d0149304 made smlnj happy;
wenzelm
parents: 24684
diff changeset
   795
    val (binds, ctxt') = apfst flat (fold_map prep_bind (map fst raw_binds ~~ ts) ctxt);
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   796
    val binds' =
19916
3bbb9cc5d4f1 export: simultaneous facts, refer to Variable.export;
wenzelm
parents: 19897
diff changeset
   797
      if gen then map #1 binds ~~ Variable.exportT_terms ctxt' ctxt (map #2 binds)
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   798
      else binds;
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   799
    val binds'' = map (apsnd SOME) binds';
18310
b00c9120f6bd match_bind(_i): return terms;
wenzelm
parents: 18255
diff changeset
   800
    val ctxt'' =
19897
fe661eb3b0e7 ProofContext: moved variable operations to struct Variable;
wenzelm
parents: 19882
diff changeset
   801
      tap (Variable.warn_extra_tfrees ctxt)
18310
b00c9120f6bd match_bind(_i): return terms;
wenzelm
parents: 18255
diff changeset
   802
       (if gen then
30757
2d2076300185 replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents: 30723
diff changeset
   803
          ctxt (*sic!*) |> fold Variable.declare_term (map #2 binds') |> bind_terms binds''
2d2076300185 replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents: 30723
diff changeset
   804
        else ctxt' |> bind_terms binds'');
18310
b00c9120f6bd match_bind(_i): return terms;
wenzelm
parents: 18255
diff changeset
   805
  in (ts, ctxt'') end;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   806
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   807
in
5935
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   808
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   809
fun read_terms ctxt T =
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   810
  map (Syntax.parse_term ctxt #> TypeInfer.constrain T) #> Syntax.check_terms ctxt;
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   811
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   812
val match_bind = gen_bind read_terms;
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   813
val match_bind_i = gen_bind (fn ctxt => fn _ => map (cert_term ctxt));
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   814
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   815
end;
5935
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   816
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   817
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   818
(* propositions with patterns *)
5935
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   819
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   820
local
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   821
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   822
fun prep_propp mode prep_props (context, args) =
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   823
  let
19585
70a1ce3b23ae removed 'concl is' patterns;
wenzelm
parents: 19543
diff changeset
   824
    fun prep (_, raw_pats) (ctxt, prop :: props) =
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   825
      let val ctxt' = Variable.declare_term prop ctxt
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   826
      in ((prop, prep_props (set_mode mode_pattern ctxt') raw_pats), (ctxt', props)) end;
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   827
17860
b4cf247ea0d2 note_thmss, read/cert_vars etc.: natural argument order;
wenzelm
parents: 17756
diff changeset
   828
    val (propp, (context', _)) = (fold_map o fold_map) prep args
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   829
      (context, prep_props (set_mode mode context) (maps (map fst) args));
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   830
  in (context', propp) end;
5935
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   831
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   832
fun gen_bind_propp mode parse_prop (ctxt, raw_args) =
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   833
  let
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   834
    val (ctxt', args) = prep_propp mode parse_prop (ctxt, raw_args);
19585
70a1ce3b23ae removed 'concl is' patterns;
wenzelm
parents: 19543
diff changeset
   835
    val binds = flat (flat (map (map (simult_matches ctxt')) args));
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   836
    val propss = map (map #1) args;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   837
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   838
    (*generalize result: context evaluated now, binds added later*)
19916
3bbb9cc5d4f1 export: simultaneous facts, refer to Variable.export;
wenzelm
parents: 19897
diff changeset
   839
    val gen = Variable.exportT_terms ctxt' ctxt;
30757
2d2076300185 replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents: 30723
diff changeset
   840
    fun gen_binds c = c |> bind_terms (map #1 binds ~~ map SOME (gen (map #2 binds)));
2d2076300185 replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents: 30723
diff changeset
   841
  in (ctxt' |> bind_terms (map (apsnd SOME) binds), (propss, gen_binds)) end;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   842
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   843
in
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   844
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   845
val read_propp           = prep_propp mode_default Syntax.read_props;
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   846
val cert_propp           = prep_propp mode_default (map o cert_prop);
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   847
val read_propp_schematic = prep_propp mode_schematic Syntax.read_props;
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   848
val cert_propp_schematic = prep_propp mode_schematic (map o cert_prop);
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   849
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   850
val bind_propp             = gen_bind_propp mode_default Syntax.read_props;
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   851
val bind_propp_i           = gen_bind_propp mode_default (map o cert_prop);
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   852
val bind_propp_schematic   = gen_bind_propp mode_schematic Syntax.read_props;
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   853
val bind_propp_schematic_i = gen_bind_propp mode_schematic (map o cert_prop);
6789
0e5a965de17a auto_bind_goal, auto_bind_facts;
wenzelm
parents: 6762
diff changeset
   854
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   855
end;
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   856
6789
0e5a965de17a auto_bind_goal, auto_bind_facts;
wenzelm
parents: 6762
diff changeset
   857
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   858
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   859
(** theorems **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   860
18042
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   861
(* fact_tac *)
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   862
27867
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   863
fun comp_incr_tac [] _ = no_tac
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   864
  | comp_incr_tac (th :: ths) i =
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   865
      (fn st => Goal.compose_hhf_tac (Drule.incr_indexes st th) i st) APPEND comp_incr_tac ths i;
18042
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   866
21687
f689f729afab reorganized structure Goal vs. Tactic;
wenzelm
parents: 21681
diff changeset
   867
fun fact_tac facts = Goal.norm_hhf_tac THEN' comp_incr_tac facts;
18122
d5a876195499 removed export_plain;
wenzelm
parents: 18043
diff changeset
   868
27867
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   869
fun potential_facts ctxt prop =
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   870
  Facts.could_unify (facts_of ctxt) (Term.strip_all_body prop);
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   871
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   872
fun some_fact_tac ctxt = SUBGOAL (fn (goal, i) => fact_tac (potential_facts ctxt goal) i);
18042
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   873
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   874
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
   875
(* get_thm(s) *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   876
26361
7946f459c6c8 Facts.Named: include position;
wenzelm
parents: 26346
diff changeset
   877
local
7946f459c6c8 Facts.Named: include position;
wenzelm
parents: 26346
diff changeset
   878
26687
fda7b0aff798 removed obsolete valid_thms;
wenzelm
parents: 26673
diff changeset
   879
fun retrieve_thms pick ctxt (Facts.Fact s) =
16501
fec0cf020bad thmref: Name vs. NameSelection;
wenzelm
parents: 16458
diff changeset
   880
      let
27867
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   881
        val (_, pos) = Syntax.read_token s;
24511
69d270cc7e4f removed obsolete read/cert variations (cf. Syntax.read/check);
wenzelm
parents: 24505
diff changeset
   882
        val prop = Syntax.read_prop (set_mode mode_default ctxt) s
69d270cc7e4f removed obsolete read/cert variations (cf. Syntax.read/check);
wenzelm
parents: 24505
diff changeset
   883
          |> singleton (Variable.polymorphic ctxt);
27867
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   884
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   885
        fun prove_fact th =
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   886
          Goal.prove ctxt [] [] prop (K (ALLGOALS (fact_tac [th])))
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   887
          |> Thm.default_position_of th;
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   888
        val res =
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   889
          (case get_first (try prove_fact) (potential_facts ctxt prop) of
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   890
            SOME res => res
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   891
          | NONE => error ("Failed to retrieve literal fact" ^ Position.str_of pos ^ ":\n" ^
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   892
              Syntax.string_of_term ctxt prop))
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   893
      in pick "" [res] end
26687
fda7b0aff798 removed obsolete valid_thms;
wenzelm
parents: 26673
diff changeset
   894
  | retrieve_thms pick ctxt xthmref =
18042
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   895
      let
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   896
        val thy = theory_of ctxt;
26284
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   897
        val local_facts = facts_of ctxt;
26673
cda3df424bad Facts.intern, Facts.extern_table;
wenzelm
parents: 26463
diff changeset
   898
        val thmref = Facts.map_name_of_ref (Facts.intern local_facts) xthmref;
26336
a0e2b706ce73 renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents: 26321
diff changeset
   899
        val name = Facts.name_of_ref thmref;
27821
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   900
        val pos = Facts.pos_of_ref xthmref;
24012
e48e1b4557c8 get_thm etc.: map empty name to dummy_thm;
wenzelm
parents: 23922
diff changeset
   901
        val thms =
e48e1b4557c8 get_thm etc.: map empty name to dummy_thm;
wenzelm
parents: 23922
diff changeset
   902
          if name = "" then [Thm.transfer thy Drule.dummy_thm]
e48e1b4557c8 get_thm etc.: map empty name to dummy_thm;
wenzelm
parents: 23922
diff changeset
   903
          else
26393
42febbed5460 support dynamic facts;
wenzelm
parents: 26361
diff changeset
   904
            (case Facts.lookup (Context.Proof ctxt) local_facts name of
28411
93ec7fa3b3a0 back to plain Position.report for regular references;
wenzelm
parents: 28407
diff changeset
   905
              SOME (_, ths) => (Position.report (Markup.local_fact name) pos;
27821
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   906
                map (Thm.transfer thy) (Facts.select thmref ths))
26687
fda7b0aff798 removed obsolete valid_thms;
wenzelm
parents: 26673
diff changeset
   907
            | NONE => PureThy.get_fact (Context.Proof ctxt) thy xthmref);
24012
e48e1b4557c8 get_thm etc.: map empty name to dummy_thm;
wenzelm
parents: 23922
diff changeset
   908
      in pick name thms end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   909
26361
7946f459c6c8 Facts.Named: include position;
wenzelm
parents: 26346
diff changeset
   910
in
26346
17debd2fff8e simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26336
diff changeset
   911
26687
fda7b0aff798 removed obsolete valid_thms;
wenzelm
parents: 26673
diff changeset
   912
val get_fact = retrieve_thms (K I);
fda7b0aff798 removed obsolete valid_thms;
wenzelm
parents: 26673
diff changeset
   913
val get_fact_single = retrieve_thms Facts.the_single;
26346
17debd2fff8e simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26336
diff changeset
   914
26361
7946f459c6c8 Facts.Named: include position;
wenzelm
parents: 26346
diff changeset
   915
fun get_thms ctxt = get_fact ctxt o Facts.named;
7946f459c6c8 Facts.Named: include position;
wenzelm
parents: 26346
diff changeset
   916
fun get_thm ctxt = get_fact_single ctxt o Facts.named;
7946f459c6c8 Facts.Named: include position;
wenzelm
parents: 26346
diff changeset
   917
7946f459c6c8 Facts.Named: include position;
wenzelm
parents: 26346
diff changeset
   918
end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   919
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   920
26284
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   921
(* facts *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   922
28082
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
   923
local
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
   924
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28941
diff changeset
   925
fun update_thms _ (b, NONE) ctxt = ctxt |> map_facts (Facts.del (full_name ctxt b))
28861
f53abb0733ee using name bindings
haftmann
parents: 28856
diff changeset
   926
  | update_thms do_props (b, SOME ths) ctxt = ctxt |> map_facts
28864
d6fe93e3dcb9 fact table now using name bindings
haftmann
parents: 28861
diff changeset
   927
      (Facts.add_local do_props (naming_of ctxt) (b, ths) #> snd);
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   928
30761
ac7570d80c3d renamed ProofContext.note_thmss_i to ProofContext.note_thmss, eliminated obsolete external version;
wenzelm
parents: 30758
diff changeset
   929
in
ac7570d80c3d renamed ProofContext.note_thmss_i to ProofContext.note_thmss, eliminated obsolete external version;
wenzelm
parents: 30758
diff changeset
   930
ac7570d80c3d renamed ProofContext.note_thmss_i to ProofContext.note_thmss, eliminated obsolete external version;
wenzelm
parents: 30758
diff changeset
   931
fun note_thmss kind = fold_map (fn ((b, more_attrs), raw_facts) => fn ctxt =>
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   932
  let
28941
128459bd72d2 new Binding module
haftmann
parents: 28864
diff changeset
   933
    val pos = Binding.pos_of b;
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28941
diff changeset
   934
    val name = full_name ctxt b;
33383
12d79ece3f7e modernized structure Context_Position;
wenzelm
parents: 33368
diff changeset
   935
    val _ = Context_Position.report_visible ctxt (Markup.local_fact_decl name) pos;
28082
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
   936
30761
ac7570d80c3d renamed ProofContext.note_thmss_i to ProofContext.note_thmss, eliminated obsolete external version;
wenzelm
parents: 30758
diff changeset
   937
    val facts = PureThy.name_thmss false pos name raw_facts;
21443
cc5095d57da4 added stmt mode, which affects naming/indexing of local facts;
wenzelm
parents: 21370
diff changeset
   938
    fun app (th, attrs) x =
30761
ac7570d80c3d renamed ProofContext.note_thmss_i to ProofContext.note_thmss, eliminated obsolete external version;
wenzelm
parents: 30758
diff changeset
   939
      swap (Library.foldl_map
ac7570d80c3d renamed ProofContext.note_thmss_i to ProofContext.note_thmss, eliminated obsolete external version;
wenzelm
parents: 30758
diff changeset
   940
        (Thm.proof_attributes (surround (Thm.kind kind) (attrs @ more_attrs))) (x, th));
21443
cc5095d57da4 added stmt mode, which affects naming/indexing of local facts;
wenzelm
parents: 21370
diff changeset
   941
    val (res, ctxt') = fold_map app facts ctxt;
28082
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
   942
    val thms = PureThy.name_thms false false pos name (flat res);
24388
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   943
    val Mode {stmt, ...} = get_mode ctxt;
28861
f53abb0733ee using name bindings
haftmann
parents: 28856
diff changeset
   944
  in ((name, thms), ctxt' |> update_thms stmt (b, SOME thms)) end);
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12704
diff changeset
   945
28417
74e580c6f2b5 put_thms: ContextPosition.set_visible false;
wenzelm
parents: 28411
diff changeset
   946
fun put_thms do_props thms ctxt = ctxt
74e580c6f2b5 put_thms: ContextPosition.set_visible false;
wenzelm
parents: 28411
diff changeset
   947
  |> map_naming (K local_naming)
33383
12d79ece3f7e modernized structure Context_Position;
wenzelm
parents: 33368
diff changeset
   948
  |> Context_Position.set_visible false
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28941
diff changeset
   949
  |> update_thms do_props (apfst Binding.name thms)
33383
12d79ece3f7e modernized structure Context_Position;
wenzelm
parents: 33368
diff changeset
   950
  |> Context_Position.restore_visible ctxt
28417
74e580c6f2b5 put_thms: ContextPosition.set_visible false;
wenzelm
parents: 28411
diff changeset
   951
  |> restore_naming ctxt;
28082
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
   952
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12704
diff changeset
   953
end;
9196
1f6f66fe777a facts: handle multiple lists of arguments;
wenzelm
parents: 9133
diff changeset
   954
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   955
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   956
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   957
(** parameters **)
17360
fa1f262dbc4e added add_view, export_view (supercedes adhoc view arguments);
wenzelm
parents: 17221
diff changeset
   958
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   959
(* variables *)
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   960
19897
fe661eb3b0e7 ProofContext: moved variable operations to struct Variable;
wenzelm
parents: 19882
diff changeset
   961
fun declare_var (x, opt_T, mx) ctxt =
22701
4346f230283d proper interface infer_types(_pat);
wenzelm
parents: 22678
diff changeset
   962
  let val T = (case opt_T of SOME T => T | NONE => Syntax.mixfixT mx)
20163
08f2833ca433 Sign.infer_types: Name.context;
wenzelm
parents: 20101
diff changeset
   963
  in ((x, T, mx), ctxt |> Variable.declare_constraints (Free (x, T))) end;
19897
fe661eb3b0e7 ProofContext: moved variable operations to struct Variable;
wenzelm
parents: 19882
diff changeset
   964
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   965
local
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   966
25353
17f04d987f37 removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
wenzelm
parents: 25345
diff changeset
   967
fun prep_vars prep_typ internal =
28861
f53abb0733ee using name bindings
haftmann
parents: 28856
diff changeset
   968
  fold_map (fn (raw_b, raw_T, raw_mx) => fn ctxt =>
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   969
    let
30585
6b2ba4666336 use Name.of_binding for basic logical entities without name space (fixes, case names etc.);
wenzelm
parents: 30573
diff changeset
   970
      val raw_x = Name.of_binding raw_b;
19371
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
   971
      val (x, mx) = Syntax.const_mixfix raw_x raw_mx;
25353
17f04d987f37 removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
wenzelm
parents: 25345
diff changeset
   972
      val _ = Syntax.is_identifier (no_skolem internal x) orelse
17f04d987f37 removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
wenzelm
parents: 25345
diff changeset
   973
        error ("Illegal variable name: " ^ quote x);
12504
5b46173df7ad export used_types;
wenzelm
parents: 12414
diff changeset
   974
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   975
      fun cond_tvars T =
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   976
        if internal then T
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
   977
        else Type.no_tvars T handle TYPE (msg, _, _) => error msg;
24277
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   978
      val opt_T = Option.map (cond_tvars o cert_typ ctxt o prep_typ ctxt) raw_T;
30223
24d975352879 renamed Binding.name_pos to Binding.make, renamed Binding.base_name to Binding.name_of, renamed Binding.map_base to Binding.map_name, added mandatory flag to Binding.qualify;
wenzelm
parents: 30218
diff changeset
   979
      val var = (Binding.map_name (K x) raw_b, opt_T, mx);
28082
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
   980
    in (var, ctxt |> declare_var (x, opt_T, mx) |> #2) end);
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   981
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   982
in
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   983
25353
17f04d987f37 removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
wenzelm
parents: 25345
diff changeset
   984
val read_vars = prep_vars Syntax.parse_typ false;
17f04d987f37 removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
wenzelm
parents: 25345
diff changeset
   985
val cert_vars = prep_vars (K I) true;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   986
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   987
end;
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   988
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   989
19681
871167b2c70e added CONST syntax;
wenzelm
parents: 19673
diff changeset
   990
(* authentic constants *)
19663
459848022d6e export consts_of;
wenzelm
parents: 19585
diff changeset
   991
25159
1822da5446bc added XCONST syntax (keeps original spelling of const);
wenzelm
parents: 25133
diff changeset
   992
local
1822da5446bc added XCONST syntax (keeps original spelling of const);
wenzelm
parents: 25133
diff changeset
   993
1822da5446bc added XCONST syntax (keeps original spelling of const);
wenzelm
parents: 25133
diff changeset
   994
fun const_ast_tr intern ctxt [Syntax.Variable c] =
19681
871167b2c70e added CONST syntax;
wenzelm
parents: 19673
diff changeset
   995
      let
25345
dd5b851f8ef0 renamed ProofContext.read_const' to ProofContext.read_const_proper;
wenzelm
parents: 25332
diff changeset
   996
        val Const (c', _) = read_const_proper ctxt c;
25159
1822da5446bc added XCONST syntax (keeps original spelling of const);
wenzelm
parents: 25133
diff changeset
   997
        val d = if intern then const_syntax_name ctxt c' else c;
1822da5446bc added XCONST syntax (keeps original spelling of const);
wenzelm
parents: 25133
diff changeset
   998
      in Syntax.Constant d end
1822da5446bc added XCONST syntax (keeps original spelling of const);
wenzelm
parents: 25133
diff changeset
   999
  | const_ast_tr _ _ asts = raise Syntax.AST ("const_ast_tr", asts);
1822da5446bc added XCONST syntax (keeps original spelling of const);
wenzelm
parents: 25133
diff changeset
  1000
1822da5446bc added XCONST syntax (keeps original spelling of const);
wenzelm
parents: 25133
diff changeset
  1001
in
19681
871167b2c70e added CONST syntax;
wenzelm
parents: 19673
diff changeset
  1002
26463
9283b4185fdf Context.>> : operate on Context.generic;
wenzelm
parents: 26435
diff changeset
  1003
val _ = Context.>> (Context.map_theory
19681
871167b2c70e added CONST syntax;
wenzelm
parents: 19673
diff changeset
  1004
 (Sign.add_syntax
28856
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28792
diff changeset
  1005
   [("_context_const", "id => logic", Delimfix "CONST _"),
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28792
diff changeset
  1006
    ("_context_const", "id => aprop", Delimfix "CONST _"),
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28792
diff changeset
  1007
    ("_context_const", "longid => logic", Delimfix "CONST _"),
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28792
diff changeset
  1008
    ("_context_const", "longid => aprop", Delimfix "CONST _"),
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28792
diff changeset
  1009
    ("_context_xconst", "id => logic", Delimfix "XCONST _"),
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28792
diff changeset
  1010
    ("_context_xconst", "id => aprop", Delimfix "XCONST _"),
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28792
diff changeset
  1011
    ("_context_xconst", "longid => logic", Delimfix "XCONST _"),
5e009a80fe6d Pure syntax: more coherent treatment of aprop, permanent TERM and &&&;
wenzelm
parents: 28792
diff changeset
  1012
    ("_context_xconst", "longid => aprop", Delimfix "XCONST _")] #>
25159
1822da5446bc added XCONST syntax (keeps original spelling of const);
wenzelm
parents: 25133
diff changeset
  1013
  Sign.add_advanced_trfuns
26463
9283b4185fdf Context.>> : operate on Context.generic;
wenzelm
parents: 26435
diff changeset
  1014
    ([("_context_const", const_ast_tr true), ("_context_xconst", const_ast_tr false)], [], [], [])));
25159
1822da5446bc added XCONST syntax (keeps original spelling of const);
wenzelm
parents: 25133
diff changeset
  1015
1822da5446bc added XCONST syntax (keeps original spelling of const);
wenzelm
parents: 25133
diff changeset
  1016
end;
19681
871167b2c70e added CONST syntax;
wenzelm
parents: 19673
diff changeset
  1017
19663
459848022d6e export consts_of;
wenzelm
parents: 19585
diff changeset
  1018
21744
b790ce4c21c2 added target_notation/abbrev;
wenzelm
parents: 21728
diff changeset
  1019
(* notation *)
b790ce4c21c2 added target_notation/abbrev;
wenzelm
parents: 21728
diff changeset
  1020
24949
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24922
diff changeset
  1021
local
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24922
diff changeset
  1022
32784
1a5dde5079ac eliminated redundant bindings;
wenzelm
parents: 32738
diff changeset
  1023
fun const_syntax _ (Free (x, T), mx) = SOME (true, (x, T, mx))
24949
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24922
diff changeset
  1024
  | const_syntax ctxt (Const (c, _), mx) =
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24922
diff changeset
  1025
      Option.map (pair false) (try (Consts.syntax (consts_of ctxt)) (c, mx))
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24922
diff changeset
  1026
  | const_syntax _ _ = NONE;
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24922
diff changeset
  1027
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24922
diff changeset
  1028
in
21744
b790ce4c21c2 added target_notation/abbrev;
wenzelm
parents: 21728
diff changeset
  1029
24949
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24922
diff changeset
  1030
fun notation add mode args ctxt =
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24922
diff changeset
  1031
  ctxt |> map_syntax
33387
acea2f336721 modernized structure Local_Syntax;
wenzelm
parents: 33386
diff changeset
  1032
    (Local_Syntax.update_modesyntax (theory_of ctxt) add mode (map_filter (const_syntax ctxt) args));
24949
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24922
diff changeset
  1033
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24922
diff changeset
  1034
fun target_notation add mode args phi =
24982
f2f0722675b1 replaced Term.equiv_types by Type.similar_types;
wenzelm
parents: 24961
diff changeset
  1035
  let val args' = filter (fn (t, _) => Type.similar_types (t, Morphism.term phi t)) args;
24949
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24922
diff changeset
  1036
  in Context.mapping (Sign.notation add mode args') (notation add mode args') end;
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24922
diff changeset
  1037
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24922
diff changeset
  1038
end;
21744
b790ce4c21c2 added target_notation/abbrev;
wenzelm
parents: 21728
diff changeset
  1039
b790ce4c21c2 added target_notation/abbrev;
wenzelm
parents: 21728
diff changeset
  1040
24767
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
  1041
(* local constants *)
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
  1042
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
  1043
fun add_const_constraint (c, opt_T) ctxt =
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
  1044
  let
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
  1045
    fun prepT raw_T =
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
  1046
      let val T = cert_typ ctxt raw_T
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
  1047
      in cert_term ctxt (Const (c, T)); T end;
25039
06ed511837d5 swapped constant components
haftmann
parents: 24982
diff changeset
  1048
  in ctxt |> (map_consts o apfst) (Consts.constrain (c, Option.map prepT opt_T)) end;
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1049
33173
b8ca12f6681a eliminated obsolete tags for types/consts -- now handled via name space, in strongly typed fashion;
wenzelm
parents: 33165
diff changeset
  1050
fun add_abbrev mode (b, raw_t) ctxt =
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1051
  let
24675
2be1253a20d3 removed obsolete set_expand_abbrevs (superceded by mode_abbrev);
wenzelm
parents: 24612
diff changeset
  1052
    val t0 = cert_term (ctxt |> set_mode mode_abbrev) raw_t
30218
cdd82ba2b4fd Binding.str_of;
wenzelm
parents: 30211
diff changeset
  1053
      handle ERROR msg => cat_error msg ("in constant abbreviation " ^ quote (Binding.str_of b));
20008
8d9d770e1f06 add_abbrevs/polymorphic: Variable.exportT_terms avoids over-generalization;
wenzelm
parents: 19916
diff changeset
  1054
    val [t] = Variable.exportT_terms (Variable.declare_term t0 ctxt) ctxt [t0];
21807
a59f083632a7 add_abbrev: removed Assumption.add_assms (danger of inconsistent naming);
wenzelm
parents: 21803
diff changeset
  1055
    val ((lhs, rhs), consts') = consts_of ctxt
33173
b8ca12f6681a eliminated obsolete tags for types/consts -- now handled via name space, in strongly typed fashion;
wenzelm
parents: 33165
diff changeset
  1056
      |> Consts.abbreviate (Syntax.pp ctxt) (tsig_of ctxt) (naming_of ctxt) mode (b, t);
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1057
  in
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1058
    ctxt
25039
06ed511837d5 swapped constant components
haftmann
parents: 24982
diff changeset
  1059
    |> (map_consts o apfst) (K consts')
21803
bcef7eb50551 notation: Term.equiv_types;
wenzelm
parents: 21772
diff changeset
  1060
    |> Variable.declare_term rhs
bcef7eb50551 notation: Term.equiv_types;
wenzelm
parents: 21772
diff changeset
  1061
    |> pair (lhs, rhs)
21704
f4fe6e5a3ee6 simplified add_abbrev -- single argument;
wenzelm
parents: 21696
diff changeset
  1062
  end;
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1063
25052
a014d544f54d added revert_abbrev;
wenzelm
parents: 25039
diff changeset
  1064
fun revert_abbrev mode c = (map_consts o apfst) (Consts.revert_abbrev mode c);
a014d544f54d added revert_abbrev;
wenzelm
parents: 25039
diff changeset
  1065
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1066
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1067
(* fixes *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1068
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1069
local
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1070
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1071
fun prep_mixfix (x, T, mx) =
19019
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
  1072
  if mx <> NoSyn andalso mx <> Structure andalso
20086
94ca946fb689 adapted to more efficient Name/Variable implementation;
wenzelm
parents: 20049
diff changeset
  1073
      (can Name.dest_internal x orelse can Name.dest_skolem x) then
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1074
    error ("Illegal mixfix syntax for internal/skolem constant " ^ quote x)
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1075
  else (true, (x, T, mx));
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1076
30763
6976521b4263 renamed ProofContext.add_fixes_i to ProofContext.add_fixes, eliminated obsolete external version;
wenzelm
parents: 30761
diff changeset
  1077
in
6976521b4263 renamed ProofContext.add_fixes_i to ProofContext.add_fixes, eliminated obsolete external version;
wenzelm
parents: 30761
diff changeset
  1078
6976521b4263 renamed ProofContext.add_fixes_i to ProofContext.add_fixes, eliminated obsolete external version;
wenzelm
parents: 30761
diff changeset
  1079
fun add_fixes raw_vars ctxt =
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1080
  let
30763
6976521b4263 renamed ProofContext.add_fixes_i to ProofContext.add_fixes, eliminated obsolete external version;
wenzelm
parents: 30761
diff changeset
  1081
    val (vars, _) = cert_vars raw_vars ctxt;
30585
6b2ba4666336 use Name.of_binding for basic logical entities without name space (fixes, case names etc.);
wenzelm
parents: 30573
diff changeset
  1082
    val (xs', ctxt') = Variable.add_fixes (map (Name.of_binding o #1) vars) ctxt;
28082
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
  1083
    val ctxt'' =
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
  1084
      ctxt'
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
  1085
      |> fold_map declare_var (map2 (fn x' => fn (_, T, mx) => (x', T, mx)) xs' vars)
33387
acea2f336721 modernized structure Local_Syntax;
wenzelm
parents: 33386
diff changeset
  1086
      |-> (map_syntax o Local_Syntax.add_syntax (theory_of ctxt) o map prep_mixfix);
28861
f53abb0733ee using name bindings
haftmann
parents: 28856
diff changeset
  1087
    val _ = (vars ~~ xs') |> List.app (fn ((b, _, _), x') =>
33383
12d79ece3f7e modernized structure Context_Position;
wenzelm
parents: 33368
diff changeset
  1088
      Context_Position.report_visible ctxt (Markup.fixed_decl x') (Binding.pos_of b));
28082
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
  1089
  in (xs', ctxt'') end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1090
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1091
end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1092
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1093
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1094
(* fixes vs. frees *)
12016
425289df84d3 fix_frees;
wenzelm
parents: 12008
diff changeset
  1095
32784
1a5dde5079ac eliminated redundant bindings;
wenzelm
parents: 32738
diff changeset
  1096
fun auto_fixes (ctxt, (propss, x)) =
21370
d9dd7b4e5e69 replaced Variable.fix_frees by Variable.auto_fixes (depends on body mode);
wenzelm
parents: 21269
diff changeset
  1097
  ((fold o fold) Variable.auto_fixes propss ctxt, (propss, x));
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1098
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1099
fun bind_fixes xs ctxt =
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1100
  let
30763
6976521b4263 renamed ProofContext.add_fixes_i to ProofContext.add_fixes, eliminated obsolete external version;
wenzelm
parents: 30761
diff changeset
  1101
    val (_, ctxt') = ctxt |> add_fixes (map (fn x => (Binding.name x, NONE, NoSyn)) xs);
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1102
    fun bind (t as Free (x, T)) =
18340
3fdff270aa04 removed fixed_tr: now handled in syntax module;
wenzelm
parents: 18310
diff changeset
  1103
          if member (op =) xs x then
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
  1104
            (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
  1105
          else t
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1106
      | bind (t $ u) = bind t $ bind u
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1107
      | 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
  1108
      | bind a = a;
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1109
  in (bind, ctxt') end;
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1110
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1111
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1112
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1113
(** assumptions **)
18187
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
  1114
20209
974d98969ba6 moved pprint functions to Isar/proof_display.ML;
wenzelm
parents: 20163
diff changeset
  1115
local
974d98969ba6 moved pprint functions to Isar/proof_display.ML;
wenzelm
parents: 20163
diff changeset
  1116
974d98969ba6 moved pprint functions to Isar/proof_display.ML;
wenzelm
parents: 20163
diff changeset
  1117
fun gen_assms prepp exp args ctxt =
974d98969ba6 moved pprint functions to Isar/proof_display.ML;
wenzelm
parents: 20163
diff changeset
  1118
  let
20234
7e0693474bcd added legacy_pretty_thm (with fall-back on ProtoPure.thy);
wenzelm
parents: 20209
diff changeset
  1119
    val cert = Thm.cterm_of (theory_of ctxt);
20209
974d98969ba6 moved pprint functions to Isar/proof_display.ML;
wenzelm
parents: 20163
diff changeset
  1120
    val (propss, ctxt1) = swap (prepp (ctxt, map snd args));
20234
7e0693474bcd added legacy_pretty_thm (with fall-back on ProtoPure.thy);
wenzelm
parents: 20209
diff changeset
  1121
    val _ = Variable.warn_extra_tfrees ctxt ctxt1;
7e0693474bcd added legacy_pretty_thm (with fall-back on ProtoPure.thy);
wenzelm
parents: 20209
diff changeset
  1122
    val (premss, ctxt2) = fold_burrow (Assumption.add_assms exp o map cert) propss ctxt1;
7e0693474bcd added legacy_pretty_thm (with fall-back on ProtoPure.thy);
wenzelm
parents: 20209
diff changeset
  1123
  in
7e0693474bcd added legacy_pretty_thm (with fall-back on ProtoPure.thy);
wenzelm
parents: 20209
diff changeset
  1124
    ctxt2
7e0693474bcd added legacy_pretty_thm (with fall-back on ProtoPure.thy);
wenzelm
parents: 20209
diff changeset
  1125
    |> auto_bind_facts (flat propss)
30761
ac7570d80c3d renamed ProofContext.note_thmss_i to ProofContext.note_thmss, eliminated obsolete external version;
wenzelm
parents: 30758
diff changeset
  1126
    |> note_thmss Thm.assumptionK (map fst args ~~ map (map (fn th => ([th], []))) premss)
20234
7e0693474bcd added legacy_pretty_thm (with fall-back on ProtoPure.thy);
wenzelm
parents: 20209
diff changeset
  1127
  end;
20209
974d98969ba6 moved pprint functions to Isar/proof_display.ML;
wenzelm
parents: 20163
diff changeset
  1128
974d98969ba6 moved pprint functions to Isar/proof_display.ML;
wenzelm
parents: 20163
diff changeset
  1129
in
974d98969ba6 moved pprint functions to Isar/proof_display.ML;
wenzelm
parents: 20163
diff changeset
  1130
974d98969ba6 moved pprint functions to Isar/proof_display.ML;
wenzelm
parents: 20163
diff changeset
  1131
val add_assms = gen_assms (apsnd #1 o bind_propp);
974d98969ba6 moved pprint functions to Isar/proof_display.ML;
wenzelm
parents: 20163
diff changeset
  1132
val add_assms_i = gen_assms (apsnd #1 o bind_propp_i);
974d98969ba6 moved pprint functions to Isar/proof_display.ML;
wenzelm
parents: 20163
diff changeset
  1133
974d98969ba6 moved pprint functions to Isar/proof_display.ML;
wenzelm
parents: 20163
diff changeset
  1134
end;
974d98969ba6 moved pprint functions to Isar/proof_display.ML;
wenzelm
parents: 20163
diff changeset
  1135
974d98969ba6 moved pprint functions to Isar/proof_display.ML;
wenzelm
parents: 20163
diff changeset
  1136
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1137
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1138
(** cases **)
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1139
16147
59177d5bcb6f renamed cond_extern to extern;
wenzelm
parents: 16031
diff changeset
  1140
local
59177d5bcb6f renamed cond_extern to extern;
wenzelm
parents: 16031
diff changeset
  1141
16668
fdb4992cf1d2 avoid polyeq;
wenzelm
parents: 16540
diff changeset
  1142
fun rem_case name = remove (fn (x: string, (y, _)) => x = y) name;
16147
59177d5bcb6f renamed cond_extern to extern;
wenzelm
parents: 16031
diff changeset
  1143
18476
49dde7b7b14a cases: main is_proper flag;
wenzelm
parents: 18428
diff changeset
  1144
fun add_case _ ("", _) cases = cases
49dde7b7b14a cases: main is_proper flag;
wenzelm
parents: 18428
diff changeset
  1145
  | add_case _ (name, NONE) cases = rem_case name cases
49dde7b7b14a cases: main is_proper flag;
wenzelm
parents: 18428
diff changeset
  1146
  | add_case is_proper (name, SOME c) cases = (name, (c, is_proper)) :: rem_case name cases;
16147
59177d5bcb6f renamed cond_extern to extern;
wenzelm
parents: 16031
diff changeset
  1147
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
  1148
fun prep_case name fxs c =
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1149
  let
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1150
    fun replace (opt_x :: xs) ((y, T) :: ys) = (the_default y opt_x, T) :: replace xs ys
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1151
      | replace [] ys = ys
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
  1152
      | replace (_ :: _) [] = error ("Too many parameters for case " ^ quote name);
33368
b1cf34f1855c modernized structure Rule_Cases;
wenzelm
parents: 33224
diff changeset
  1153
    val Rule_Cases.Case {fixes, assumes, binds, cases} = c;
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1154
    val fixes' = replace fxs fixes;
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1155
    val binds' = map drop_schematic binds;
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1156
  in
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1157
    if null (fold (Term.add_tvarsT o snd) fixes []) andalso
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1158
      null (fold (fold Term.add_vars o snd) assumes []) then
33368
b1cf34f1855c modernized structure Rule_Cases;
wenzelm
parents: 33224
diff changeset
  1159
        Rule_Cases.Case {fixes = fixes', assumes = assumes, binds = binds', cases = cases}
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
  1160
    else error ("Illegal schematic variable(s) in case " ^ quote name)
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1161
  end;
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1162
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1163
fun fix (x, T) ctxt =
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1164
  let
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1165
    val (bind, ctxt') = bind_fixes [x] ctxt;
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1166
    val t = bind (Free (x, T));
20163
08f2833ca433 Sign.infer_types: Name.context;
wenzelm
parents: 20101
diff changeset
  1167
  in (t, ctxt' |> Variable.declare_constraints t) end;
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1168
16147
59177d5bcb6f renamed cond_extern to extern;
wenzelm
parents: 16031
diff changeset
  1169
in
59177d5bcb6f renamed cond_extern to extern;
wenzelm
parents: 16031
diff changeset
  1170
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1171
fun add_cases is_proper = map_cases o fold (add_case is_proper);
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1172
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1173
fun case_result c ctxt =
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1174
  let
33368
b1cf34f1855c modernized structure Rule_Cases;
wenzelm
parents: 33224
diff changeset
  1175
    val Rule_Cases.Case {fixes, ...} = c;
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1176
    val (ts, ctxt') = ctxt |> fold_map fix fixes;
33368
b1cf34f1855c modernized structure Rule_Cases;
wenzelm
parents: 33224
diff changeset
  1177
    val Rule_Cases.Case {assumes, binds, cases, ...} = Rule_Cases.apply ts c;
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1178
  in
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1179
    ctxt'
30757
2d2076300185 replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents: 30723
diff changeset
  1180
    |> bind_terms (map drop_schematic binds)
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1181
    |> add_cases true (map (apsnd SOME) cases)
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1182
    |> pair (assumes, (binds, cases))
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1183
  end;
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1184
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1185
val apply_case = apfst fst oo case_result;
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1186
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
  1187
fun get_case ctxt name xs =
17184
3d80209e9a53 use AList operations;
wenzelm
parents: 17072
diff changeset
  1188
  (case AList.lookup (op =) (cases_of ctxt) name of
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
  1189
    NONE => error ("Unknown case: " ^ quote name)
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
  1190
  | SOME (c, _) => prep_case name xs c);
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1191
16147
59177d5bcb6f renamed cond_extern to extern;
wenzelm
parents: 16031
diff changeset
  1192
end;
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1193
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1194
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1195
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1196
(** print context information **)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1197
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32090
diff changeset
  1198
val debug = Unsynchronized.ref false;
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1199
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32090
diff changeset
  1200
val verbose = Unsynchronized.ref false;
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1201
fun verb f x = if ! verbose then f (x ()) else [];
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1202
33224
e15ce5aeb6d5 ProofContext.setmp_verbose_CRITICAL;
wenzelm
parents: 33173
diff changeset
  1203
fun setmp_verbose_CRITICAL f x = setmp_CRITICAL verbose true f x;
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1204
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1205
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1206
(* local syntax *)
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1207
12093
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1208
val print_syntax = Syntax.print_syntax o syn_of;
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1209
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1210
21728
906649272ba0 added read/pretty_term_abbrev, print_abbrevs;
wenzelm
parents: 21704
diff changeset
  1211
(* abbreviations *)
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1212
21728
906649272ba0 added read/pretty_term_abbrev, print_abbrevs;
wenzelm
parents: 21704
diff changeset
  1213
fun pretty_abbrevs show_globals ctxt =
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1214
  let
25052
a014d544f54d added revert_abbrev;
wenzelm
parents: 25039
diff changeset
  1215
    val ((space, consts), (_, globals)) =
19033
24e251657e56 consts: maintain thy version for efficient transfer;
wenzelm
parents: 19019
diff changeset
  1216
      pairself (#constants o Consts.dest) (#consts (rep_context ctxt));
21803
bcef7eb50551 notation: Term.equiv_types;
wenzelm
parents: 21772
diff changeset
  1217
    fun add_abbr (_, (_, NONE)) = I
25406
1aa7927a6759 simplified Consts.dest;
wenzelm
parents: 25353
diff changeset
  1218
      | add_abbr (c, (T, SOME t)) =
21728
906649272ba0 added read/pretty_term_abbrev, print_abbrevs;
wenzelm
parents: 21704
diff changeset
  1219
          if not show_globals andalso Symtab.defined globals c then I
906649272ba0 added read/pretty_term_abbrev, print_abbrevs;
wenzelm
parents: 21704
diff changeset
  1220
          else cons (c, Logic.mk_equals (Const (c, T), t));
33095
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 33031
diff changeset
  1221
    val abbrevs = Name_Space.extern_table (space, Symtab.make (Symtab.fold add_abbr consts []));
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1222
  in
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1223
    if null abbrevs andalso not (! verbose) then []
21728
906649272ba0 added read/pretty_term_abbrev, print_abbrevs;
wenzelm
parents: 21704
diff changeset
  1224
    else [Pretty.big_list "abbreviations:" (map (pretty_term_abbrev ctxt o #2) abbrevs)]
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1225
  end;
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1226
21728
906649272ba0 added read/pretty_term_abbrev, print_abbrevs;
wenzelm
parents: 21704
diff changeset
  1227
val print_abbrevs = Pretty.writeln o Pretty.chunks o pretty_abbrevs true;
906649272ba0 added read/pretty_term_abbrev, print_abbrevs;
wenzelm
parents: 21704
diff changeset
  1228
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1229
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1230
(* term bindings *)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1231
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
  1232
fun pretty_binds ctxt =
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1233
  let
19897
fe661eb3b0e7 ProofContext: moved variable operations to struct Variable;
wenzelm
parents: 19882
diff changeset
  1234
    val binds = Variable.binds_of ctxt;
21728
906649272ba0 added read/pretty_term_abbrev, print_abbrevs;
wenzelm
parents: 21704
diff changeset
  1235
    fun prt_bind (xi, (T, t)) = pretty_term_abbrev ctxt (Logic.mk_equals (Var (xi, T), t));
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1236
  in
15758
07e382399a96 binds/thms: do not store options, but delete from table;
wenzelm
parents: 15750
diff changeset
  1237
    if Vartab.is_empty binds andalso not (! verbose) then []
07e382399a96 binds/thms: do not store options, but delete from table;
wenzelm
parents: 15750
diff changeset
  1238
    else [Pretty.big_list "term bindings:" (map prt_bind (Vartab.dest binds))]
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1239
  end;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1240
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1241
val print_binds = Pretty.writeln o Pretty.chunks o pretty_binds;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1242
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1243
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1244
(* local theorems *)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1245
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
  1246
fun pretty_lthms ctxt =
20012
b62836400a33 print_lthms: include unnamed facts from index;
wenzelm
parents: 20008
diff changeset
  1247
  let
26284
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
  1248
    val local_facts = facts_of ctxt;
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
  1249
    val props = Facts.props local_facts;
26673
cda3df424bad Facts.intern, Facts.extern_table;
wenzelm
parents: 26463
diff changeset
  1250
    val facts =
27173
9ae98c3cd3d6 Facts.dest/export_static: content difference;
wenzelm
parents: 26960
diff changeset
  1251
      (if null props then [] else [("unnamed", props)]) @
28212
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
  1252
      Facts.dest_static [] local_facts;
20012
b62836400a33 print_lthms: include unnamed facts from index;
wenzelm
parents: 20008
diff changeset
  1253
  in
b62836400a33 print_lthms: include unnamed facts from index;
wenzelm
parents: 20008
diff changeset
  1254
    if null facts andalso not (! verbose) then []
28212
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
  1255
    else [Pretty.big_list "facts:" (map #1 (sort_wrt (#1 o #2) (map (`(pretty_fact ctxt)) facts)))]
20012
b62836400a33 print_lthms: include unnamed facts from index;
wenzelm
parents: 20008
diff changeset
  1256
  end;
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1257
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1258
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
  1259
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1260
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1261
(* local contexts *)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1262
26722
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1263
local
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1264
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1265
fun pretty_case (name, (fixes, ((asms, (lets, cs)), ctxt))) =
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1266
  let
24922
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
  1267
    val prt_term = Syntax.pretty_term ctxt;
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1268
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1269
    fun prt_let (xi, t) = Pretty.block
10818
37fa05a12459 tuned output;
wenzelm
parents: 10810
diff changeset
  1270
      [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
  1271
        Pretty.quote (prt_term t)];
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1272
13425
119ae829ad9b support for split assumptions in cases (hyps vs. prems);
wenzelm
parents: 13415
diff changeset
  1273
    fun prt_asm (a, ts) = Pretty.block (Pretty.breaks
119ae829ad9b support for split assumptions in cases (hyps vs. prems);
wenzelm
parents: 13415
diff changeset
  1274
      ((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
  1275
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1276
    fun prt_sect _ _ _ [] = []
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1277
      | prt_sect s sep prt xs = [Pretty.block (Pretty.breaks (Pretty.str s ::
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19422
diff changeset
  1278
            flat (Library.separate sep (map (Library.single o prt) xs))))];
26722
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1279
  in
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1280
    Pretty.block (Pretty.fbreaks
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1281
      (Pretty.str (name ^ ":") ::
11915
df030220a2a8 print fixed names as plain strings;
wenzelm
parents: 11816
diff changeset
  1282
        prt_sect "fix" [] (Pretty.str o fst) fixes @
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1283
        prt_sect "let" [Pretty.str "and"] prt_let
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19422
diff changeset
  1284
          (map_filter (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
  1285
        (if forall (null o #2) asms then []
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1286
          else prt_sect "assume" [Pretty.str "and"] prt_asm asms) @
26722
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1287
        prt_sect "subcases:" [] (Pretty.str o fst) cs))
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1288
  end;
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
  1289
26722
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1290
in
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1291
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1292
fun pretty_cases ctxt =
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1293
  let
18476
49dde7b7b14a cases: main is_proper flag;
wenzelm
parents: 18428
diff changeset
  1294
    fun add_case (_, (_, false)) = I
33368
b1cf34f1855c modernized structure Rule_Cases;
wenzelm
parents: 33224
diff changeset
  1295
      | add_case (name, (c as Rule_Cases.Case {fixes, ...}, true)) =
26722
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1296
          cons (name, (fixes, case_result c ctxt));
18476
49dde7b7b14a cases: main is_proper flag;
wenzelm
parents: 18428
diff changeset
  1297
    val cases = fold add_case (cases_of ctxt) [];
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1298
  in
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1299
    if null cases andalso not (! verbose) then []
26722
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1300
    else [Pretty.big_list "cases:" (map pretty_case cases)]
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1301
  end;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1302
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1303
val print_cases = Pretty.writeln o Pretty.chunks o pretty_cases;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1304
26722
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1305
end;
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1306
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1307
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1308
(* core context *)
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1309
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32090
diff changeset
  1310
val prems_limit = Unsynchronized.ref ~1;
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1311
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1312
fun pretty_ctxt ctxt =
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1313
  if ! prems_limit < 0 andalso not (! debug) then []
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1314
  else
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1315
    let
24922
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
  1316
      val prt_term = Syntax.pretty_term ctxt;
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1317
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1318
      (*structures*)
33387
acea2f336721 modernized structure Local_Syntax;
wenzelm
parents: 33386
diff changeset
  1319
      val structs = Local_Syntax.structs_of (syntax_of ctxt);
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1320
      val prt_structs = if null structs then []
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1321
        else [Pretty.block (Pretty.str "structures:" :: Pretty.brk 1 ::
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1322
          Pretty.commas (map Pretty.str structs))];
12093
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1323
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1324
      (*fixes*)
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1325
      fun prt_fix (x, x') =
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1326
        if x = x' then Pretty.str x
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1327
        else Pretty.block [Pretty.str x, Pretty.str " =", Pretty.brk 1, prt_term (Syntax.free x')];
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1328
      val fixes =
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1329
        rev (filter_out ((can Name.dest_internal orf member (op =) structs) o #1)
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1330
          (Variable.fixes_of ctxt));
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1331
      val prt_fixes = if null fixes then []
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1332
        else [Pretty.block (Pretty.str "fixed variables:" :: Pretty.brk 1 ::
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1333
          Pretty.commas (map prt_fix fixes))];
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1334
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1335
      (*prems*)
30473
e0b66c11e7e4 Assumption.all_prems_of, Assumption.all_assms_of;
wenzelm
parents: 30469
diff changeset
  1336
      val prems = Assumption.all_prems_of ctxt;
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1337
      val len = length prems;
20367
ba1c262c7625 renamed map_theory to theory;
wenzelm
parents: 20330
diff changeset
  1338
      val suppressed = len - ! prems_limit;
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1339
      val prt_prems = if null prems then []
20367
ba1c262c7625 renamed map_theory to theory;
wenzelm
parents: 20330
diff changeset
  1340
        else [Pretty.big_list "prems:" ((if suppressed <= 0 then [] else [Pretty.str "..."]) @
32090
39acf19e9f3a moved ProofContext.pretty_thm to Display.pretty_thm etc.;
wenzelm
parents: 32032
diff changeset
  1341
          map (Display.pretty_thm ctxt) (Library.drop (suppressed, prems)))];
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1342
    in prt_structs @ prt_fixes @ prt_prems end;
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1343
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1344
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1345
(* main context *)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1346
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
  1347
fun pretty_context ctxt =
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1348
  let
24922
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
  1349
    val prt_term = Syntax.pretty_term ctxt;
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
  1350
    val prt_typ = Syntax.pretty_typ ctxt;
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
  1351
    val prt_sort = Syntax.pretty_sort ctxt;
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1352
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1353
    (*theory*)
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1354
    val pretty_thy = Pretty.block
17384
wenzelm
parents: 17360
diff changeset
  1355
      [Pretty.str "theory:", Pretty.brk 1, Context.pretty_thy (theory_of ctxt)];
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1356
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1357
    (*defaults*)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1358
    fun prt_atom prt prtT (x, X) = Pretty.block
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1359
      [prt x, Pretty.str " ::", Pretty.brk 1, prtT X];
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1360
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1361
    fun prt_var (x, ~1) = prt_term (Syntax.free x)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1362
      | prt_var xi = prt_term (Syntax.var xi);
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1363
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1364
    fun prt_varT (x, ~1) = prt_typ (TFree (x, []))
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1365
      | prt_varT xi = prt_typ (TVar (xi, []));
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1366
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1367
    val prt_defT = prt_atom prt_var prt_typ;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1368
    val prt_defS = prt_atom prt_varT prt_sort;
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
  1369
20163
08f2833ca433 Sign.infer_types: Name.context;
wenzelm
parents: 20101
diff changeset
  1370
    val (types, sorts) = Variable.constraints_of ctxt;
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1371
  in
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1372
    verb single (K pretty_thy) @
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1373
    pretty_ctxt ctxt @
21728
906649272ba0 added read/pretty_term_abbrev, print_abbrevs;
wenzelm
parents: 21704
diff changeset
  1374
    verb (pretty_abbrevs false) (K ctxt) @
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1375
    verb pretty_binds (K ctxt) @
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1376
    verb pretty_lthms (K ctxt) @
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1377
    verb pretty_cases (K ctxt) @
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1378
    verb single (fn () => Pretty.big_list "type constraints:" (map prt_defT (Vartab.dest types))) @
20163
08f2833ca433 Sign.infer_types: Name.context;
wenzelm
parents: 20101
diff changeset
  1379
    verb single (fn () => Pretty.big_list "default sorts:" (map prt_defS (Vartab.dest sorts)))
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1380
  end;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1381
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1382
end;