src/Pure/Isar/proof_context.ML
author wenzelm
Sun, 17 Apr 2011 21:04:22 +0200
changeset 42379 26f64dddf2c6
parent 42378 d9fe47d21b41
child 42381 309ec68442c6
permissions -rw-r--r--
tuned signature;
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
36610
bafd82950e24 renamed ProofContext.init to ProofContext.init_global to emphasize that this is not the real thing;
wenzelm
parents: 36542
diff changeset
    12
  val init_global: 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
42241
dd8029f71e1c separate module for standard implementation of inner syntax operations;
wenzelm
parents: 42224
diff changeset
    29
  val syntax_of: Proof.context -> Local_Syntax.T
35111
18cd034922ba added ML antiquotation @{syntax_const};
wenzelm
parents: 34982
diff changeset
    30
  val syn_of: Proof.context -> Syntax.syntax
35669
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
    31
  val tsig_of: Proof.context -> Type.tsig
36451
ddc965e172c4 localized default sort;
wenzelm
parents: 36450
diff changeset
    32
  val set_defsort: sort -> Proof.context -> Proof.context
35680
897740382442 aliases for class/type/const;
wenzelm
parents: 35669
diff changeset
    33
  val default_sort: Proof.context -> indexname -> sort
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    34
  val consts_of: Proof.context -> Consts.T
24752
8aec6154bb17 exported constraint interfaces
haftmann
parents: 24693
diff changeset
    35
  val the_const_constraint: Proof.context -> string -> typ
20784
eece9aaaf352 Syntax.mode;
wenzelm
parents: 20631
diff changeset
    36
  val set_syntax_mode: Syntax.mode -> Proof.context -> Proof.context
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    37
  val restore_syntax_mode: Proof.context -> Proof.context -> Proof.context
26284
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
    38
  val facts_of: Proof.context -> Facts.T
34982
7b8c366e34a2 added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
blanchet
parents: 33957
diff changeset
    39
  val cases_of: Proof.context -> (string * (Rule_Cases.T * bool)) list
42359
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
    40
  val class_space: Proof.context -> Name_Space.T
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
    41
  val type_space: Proof.context -> Name_Space.T
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
    42
  val const_space: Proof.context -> Name_Space.T
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
    43
  val intern_class: Proof.context -> xstring -> string
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
    44
  val intern_type: Proof.context -> xstring -> string
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
    45
  val intern_const: Proof.context -> xstring -> string
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
    46
  val extern_class: Proof.context -> string -> xstring
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
    47
  val extern_type: Proof.context -> string -> xstring
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
    48
  val extern_const: Proof.context -> string -> xstring
27259
6e71abb8c994 export transfer_syntax;
wenzelm
parents: 27195
diff changeset
    49
  val transfer_syntax: theory -> Proof.context -> Proof.context
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    50
  val transfer: theory -> Proof.context -> Proof.context
38756
d07959fabde6 renamed ProofContext.theory(_result) to ProofContext.background_theory(_result) to emphasize that this belongs to the infrastructure and is rarely appropriate in user-space tools;
wenzelm
parents: 38328
diff changeset
    51
  val background_theory: (theory -> theory) -> Proof.context -> Proof.context
d07959fabde6 renamed ProofContext.theory(_result) to ProofContext.background_theory(_result) to emphasize that this belongs to the infrastructure and is rarely appropriate in user-space tools;
wenzelm
parents: 38328
diff changeset
    52
  val background_theory_result: (theory -> 'a * theory) -> Proof.context -> 'a * Proof.context
28212
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
    53
  val extern_fact: Proof.context -> string -> xstring
21728
906649272ba0 added read/pretty_term_abbrev, print_abbrevs;
wenzelm
parents: 21704
diff changeset
    54
  val pretty_term_abbrev: Proof.context -> term -> Pretty.T
30723
a3adc9a96a16 pretty_thm_aux etc.: explicit show_status flag;
wenzelm
parents: 30628
diff changeset
    55
  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
    56
  val pretty_fact: Proof.context -> string * thm list -> Pretty.T
35669
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
    57
  val read_class: Proof.context -> xstring -> class
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
    58
  val read_arity: Proof.context -> xstring * string list * string -> arity
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
    59
  val cert_arity: Proof.context -> arity -> arity
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    60
  val read_typ: Proof.context -> string -> typ
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    61
  val read_typ_syntax: Proof.context -> string -> typ
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    62
  val read_typ_abbrev: Proof.context -> string -> typ
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    63
  val cert_typ: Proof.context -> typ -> typ
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    64
  val cert_typ_syntax: Proof.context -> typ -> typ
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    65
  val cert_typ_abbrev: Proof.context -> typ -> typ
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    66
  val get_skolem: Proof.context -> string -> string
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    67
  val revert_skolem: Proof.context -> string -> string
36505
79c1d2bbe5a9 ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents: 36503
diff changeset
    68
  val infer_type: Proof.context -> string * typ -> typ
28082
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
    69
  val inferred_param: string -> Proof.context -> typ * Proof.context
25328
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
    70
  val inferred_fixes: Proof.context -> (string * typ) list * Proof.context
35360
df2b2168e43a clarified ProofContext.read_type_name/Args.type_name wrt strict logical constructors;
wenzelm
parents: 35262
diff changeset
    71
  val read_type_name: Proof.context -> bool -> string -> typ
35669
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
    72
  val read_type_name_proper: Proof.context -> bool -> string -> typ
35399
3881972fcfca clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents: 35360
diff changeset
    73
  val read_const_proper: Proof.context -> bool -> string -> term
36505
79c1d2bbe5a9 ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents: 36503
diff changeset
    74
  val read_const: Proof.context -> bool -> typ -> string -> term
27259
6e71abb8c994 export transfer_syntax;
wenzelm
parents: 27195
diff changeset
    75
  val allow_dummies: Proof.context -> Proof.context
42250
cc5ac538f991 eliminated odd object-oriented type_context/term_context;
wenzelm
parents: 42242
diff changeset
    76
  val get_sort: Proof.context -> (indexname * sort) list -> indexname -> sort
36152
34d1ce2d746d get_sort: suppress dummyS from input;
wenzelm
parents: 35680
diff changeset
    77
  val check_tvar: Proof.context -> indexname * sort -> indexname * sort
34d1ce2d746d get_sort: suppress dummyS from input;
wenzelm
parents: 35680
diff changeset
    78
  val check_tfree: Proof.context -> string * sort -> string * sort
25406
1aa7927a6759 simplified Consts.dest;
wenzelm
parents: 25353
diff changeset
    79
  val standard_infer_types: Proof.context -> term list -> term list
42250
cc5ac538f991 eliminated odd object-oriented type_context/term_context;
wenzelm
parents: 42242
diff changeset
    80
  val intern_skolem: Proof.context -> string -> string option
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
    81
  val read_term_pattern: Proof.context -> string -> term
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
    82
  val read_term_schematic: Proof.context -> string -> term
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
    83
  val read_term_abbrev: Proof.context -> string -> term
40879
ca132ef44944 configuration option "show_abbrevs" supersedes print mode "no_abbrevs", with inverted meaning;
wenzelm
parents: 39557
diff changeset
    84
  val show_abbrevs_raw: Config.raw
ca132ef44944 configuration option "show_abbrevs" supersedes print mode "no_abbrevs", with inverted meaning;
wenzelm
parents: 39557
diff changeset
    85
  val show_abbrevs: bool Config.T
25345
dd5b851f8ef0 renamed ProofContext.read_const' to ProofContext.read_const_proper;
wenzelm
parents: 25332
diff changeset
    86
  val expand_abbrevs: Proof.context -> term -> term
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    87
  val cert_term: Proof.context -> term -> term
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    88
  val cert_prop: Proof.context -> term -> term
35616
b342390d296f provide ProofContext.def_type depending on "pattern" mode;
wenzelm
parents: 35429
diff changeset
    89
  val def_type: Proof.context -> indexname -> typ option
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    90
  val goal_export: Proof.context -> Proof.context -> thm list -> thm list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    91
  val export: Proof.context -> Proof.context -> thm list -> thm list
21531
43aa65a8a870 added export_(standard_)morphism;
wenzelm
parents: 21443
diff changeset
    92
  val export_morphism: Proof.context -> Proof.context -> morphism
28396
72695dd4395d added norm_export_morphism;
wenzelm
parents: 28212
diff changeset
    93
  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
    94
  val bind_terms: (indexname * term option) list -> Proof.context -> Proof.context
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    95
  val auto_bind_goal: term list -> Proof.context -> Proof.context
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    96
  val auto_bind_facts: term list -> Proof.context -> Proof.context
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
    97
  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
    98
  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
    99
  val read_propp: Proof.context * (string * string list) list list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   100
    -> Proof.context * (term * term list) list list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   101
  val cert_propp: Proof.context * (term * term list) list list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   102
    -> Proof.context * (term * term list) list list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   103
  val read_propp_schematic: Proof.context * (string * string list) list list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   104
    -> Proof.context * (term * term list) list list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   105
  val cert_propp_schematic: Proof.context * (term * term list) list list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   106
    -> Proof.context * (term * term list) list list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   107
  val bind_propp: Proof.context * (string * string list) list list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   108
    -> Proof.context * (term list list * (Proof.context -> Proof.context))
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   109
  val bind_propp_i: Proof.context * (term * term list) list list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   110
    -> Proof.context * (term list list * (Proof.context -> Proof.context))
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   111
  val bind_propp_schematic: Proof.context * (string * string list) list list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   112
    -> Proof.context * (term list list * (Proof.context -> Proof.context))
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   113
  val bind_propp_schematic_i: Proof.context * (term * term list) list list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   114
    -> Proof.context * (term list list * (Proof.context -> Proof.context))
18042
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   115
  val fact_tac: thm list -> int -> tactic
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   116
  val some_fact_tac: Proof.context -> int -> tactic
26346
17debd2fff8e simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26336
diff changeset
   117
  val get_fact: Proof.context -> Facts.ref -> thm list
17debd2fff8e simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26336
diff changeset
   118
  val get_fact_single: Proof.context -> Facts.ref -> thm
17debd2fff8e simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26336
diff changeset
   119
  val get_thms: Proof.context -> xstring -> thm list
17debd2fff8e simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26336
diff changeset
   120
  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
   121
  val note_thmss: string -> (Thm.binding * (thm list * attribute list) list) list ->
30211
556d1810cdad Thm.binding;
wenzelm
parents: 30190
diff changeset
   122
    Proof.context -> (string * thm list) list * Proof.context
28082
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
   123
  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
   124
  val read_vars: (binding * string option * mixfix) list -> Proof.context ->
b3b33e0298eb binding is alias for Binding.T
haftmann
parents: 29318
diff changeset
   125
    (binding * typ option * mixfix) list * Proof.context
b3b33e0298eb binding is alias for Binding.T
haftmann
parents: 29318
diff changeset
   126
  val cert_vars: (binding * typ option * mixfix) list -> Proof.context ->
b3b33e0298eb binding is alias for Binding.T
haftmann
parents: 29318
diff changeset
   127
    (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
   128
  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
   129
    string list * Proof.context
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   130
  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
   131
  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
   132
  val add_assms: Assumption.export ->
30211
556d1810cdad Thm.binding;
wenzelm
parents: 30190
diff changeset
   133
    (Thm.binding * (string * string list) list) list ->
28082
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
   134
    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
   135
  val add_assms_i: Assumption.export ->
30211
556d1810cdad Thm.binding;
wenzelm
parents: 30190
diff changeset
   136
    (Thm.binding * (term * term list) list) list ->
28082
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
   137
    Proof.context -> (string * thm list) list * Proof.context
33368
b1cf34f1855c modernized structure Rule_Cases;
wenzelm
parents: 33224
diff changeset
   138
  val add_cases: bool -> (string * Rule_Cases.T option) list -> Proof.context -> Proof.context
b1cf34f1855c modernized structure Rule_Cases;
wenzelm
parents: 33224
diff changeset
   139
  val apply_case: Rule_Cases.T -> Proof.context -> (string * term list) list * Proof.context
b1cf34f1855c modernized structure Rule_Cases;
wenzelm
parents: 33224
diff changeset
   140
  val get_case: Proof.context -> string -> string option list -> Rule_Cases.T
35412
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 35399
diff changeset
   141
  val type_notation: bool -> Syntax.mode -> (typ * mixfix) list -> Proof.context -> Proof.context
24949
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24922
diff changeset
   142
  val notation: bool -> Syntax.mode -> (term * mixfix) list -> Proof.context -> Proof.context
35412
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 35399
diff changeset
   143
  val target_type_notation: bool -> Syntax.mode -> (typ * mixfix) list -> morphism ->
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 35399
diff changeset
   144
    Context.generic -> Context.generic
24949
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24922
diff changeset
   145
  val target_notation: bool -> Syntax.mode -> (term * mixfix) list -> morphism ->
21744
b790ce4c21c2 added target_notation/abbrev;
wenzelm
parents: 21728
diff changeset
   146
    Context.generic -> Context.generic
35680
897740382442 aliases for class/type/const;
wenzelm
parents: 35669
diff changeset
   147
  val class_alias: binding -> class -> Proof.context -> Proof.context
897740382442 aliases for class/type/const;
wenzelm
parents: 35669
diff changeset
   148
  val type_alias: binding -> string -> Proof.context -> Proof.context
897740382442 aliases for class/type/const;
wenzelm
parents: 35669
diff changeset
   149
  val const_alias: binding -> string -> Proof.context -> Proof.context
24767
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
   150
  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
   151
  val add_abbrev: string -> binding * term -> Proof.context -> (term * term) * Proof.context
25052
a014d544f54d added revert_abbrev;
wenzelm
parents: 25039
diff changeset
   152
  val revert_abbrev: string -> string -> Proof.context -> Proof.context
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   153
  val print_syntax: Proof.context -> unit
21728
906649272ba0 added read/pretty_term_abbrev, print_abbrevs;
wenzelm
parents: 21704
diff changeset
   154
  val print_abbrevs: Proof.context -> unit
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   155
  val print_binds: Proof.context -> unit
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   156
  val print_lthms: Proof.context -> unit
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   157
  val print_cases: Proof.context -> unit
32738
15bb09ca0378 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32090
diff changeset
   158
  val debug: bool Unsynchronized.ref
35141
182f27a8716c simplified meaning of ProofContext.verbose;
wenzelm
parents: 35139
diff changeset
   159
  val verbose: bool Unsynchronized.ref
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   160
  val pretty_ctxt: Proof.context -> Pretty.T list
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   161
  val pretty_context: Proof.context -> Pretty.T list
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   162
end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   163
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   164
structure Proof_Context: PROOF_CONTEXT =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   165
struct
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   166
42363
e52e3f697510 do not open ML structures;
wenzelm
parents: 42360
diff changeset
   167
val theory_of = Proof_Context.theory_of;
e52e3f697510 do not open ML structures;
wenzelm
parents: 42360
diff changeset
   168
val init_global = Proof_Context.init_global;
e52e3f697510 do not open ML structures;
wenzelm
parents: 42360
diff changeset
   169
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   170
7270
2b64729d9acb warn_vars;
wenzelm
parents: 7200
diff changeset
   171
24388
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   172
(** inner syntax mode **)
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   173
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   174
datatype mode =
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   175
  Mode of
24486
1dbf377c2e9a moved type_mode to type.ML;
wenzelm
parents: 24388
diff changeset
   176
   {stmt: bool,                (*inner statement mode*)
24388
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   177
    pattern: bool,             (*pattern binding schematic variables*)
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   178
    schematic: bool,           (*term referencing loose schematic variables*)
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   179
    abbrev: bool};             (*abbrev mode -- no normalization*)
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   180
24486
1dbf377c2e9a moved type_mode to type.ML;
wenzelm
parents: 24388
diff changeset
   181
fun make_mode (stmt, pattern, schematic, abbrev) =
1dbf377c2e9a moved type_mode to type.ML;
wenzelm
parents: 24388
diff changeset
   182
  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
   183
24486
1dbf377c2e9a moved type_mode to type.ML;
wenzelm
parents: 24388
diff changeset
   184
val mode_default   = make_mode (false, false, false, false);
1dbf377c2e9a moved type_mode to type.ML;
wenzelm
parents: 24388
diff changeset
   185
val mode_stmt      = make_mode (true, false, false, false);
1dbf377c2e9a moved type_mode to type.ML;
wenzelm
parents: 24388
diff changeset
   186
val mode_pattern   = make_mode (false, true, false, false);
1dbf377c2e9a moved type_mode to type.ML;
wenzelm
parents: 24388
diff changeset
   187
val mode_schematic = make_mode (false, false, true, false);
1dbf377c2e9a moved type_mode to type.ML;
wenzelm
parents: 24388
diff changeset
   188
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
   189
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   190
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   191
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   192
(** Isar proof context information **)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   193
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   194
datatype ctxt =
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   195
  Ctxt of
36451
ddc965e172c4 localized default sort;
wenzelm
parents: 36450
diff changeset
   196
   {mode: mode,                  (*inner syntax mode*)
ddc965e172c4 localized default sort;
wenzelm
parents: 36450
diff changeset
   197
    naming: Name_Space.naming,   (*local naming conventions*)
ddc965e172c4 localized default sort;
wenzelm
parents: 36450
diff changeset
   198
    syntax: Local_Syntax.T,      (*local syntax*)
ddc965e172c4 localized default sort;
wenzelm
parents: 36450
diff changeset
   199
    tsig: Type.tsig * Type.tsig, (*local/global type signature -- local name space / defsort only*)
ddc965e172c4 localized default sort;
wenzelm
parents: 36450
diff changeset
   200
    consts: Consts.T * Consts.T, (*local/global consts -- local name space / abbrevs only*)
ddc965e172c4 localized default sort;
wenzelm
parents: 36450
diff changeset
   201
    facts: Facts.T,              (*local facts*)
33368
b1cf34f1855c modernized structure Rule_Cases;
wenzelm
parents: 33224
diff changeset
   202
    cases: (string * (Rule_Cases.T * bool)) list};    (*named case contexts*)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   203
36450
62eaaffe6e47 more systematic naming of tsig operations;
wenzelm
parents: 36448
diff changeset
   204
fun make_ctxt (mode, naming, syntax, tsig, consts, facts, cases) =
26240
cc630a75b62a dropped local tsigs
haftmann
parents: 26200
diff changeset
   205
  Ctxt {mode = mode, naming = naming, syntax = syntax,
36450
62eaaffe6e47 more systematic naming of tsig operations;
wenzelm
parents: 36448
diff changeset
   206
    tsig = tsig, consts = consts, facts = facts, cases = cases};
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   207
33095
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 33031
diff changeset
   208
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
   209
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37145
diff changeset
   210
structure Data = Proof_Data
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   211
(
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   212
  type T = ctxt;
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   213
  fun init thy =
33387
acea2f336721 modernized structure Local_Syntax;
wenzelm
parents: 33386
diff changeset
   214
    make_ctxt (mode_default, local_naming, Local_Syntax.init thy,
35669
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   215
      (Sign.tsig_of thy, Sign.tsig_of thy),
26284
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   216
      (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
   217
);
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   218
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37145
diff changeset
   219
fun rep_context ctxt = Data.get ctxt |> (fn Ctxt args => args);
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   220
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   221
fun map_context f =
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37145
diff changeset
   222
  Data.map (fn Ctxt {mode, naming, syntax, tsig, consts, facts, cases} =>
36450
62eaaffe6e47 more systematic naming of tsig operations;
wenzelm
parents: 36448
diff changeset
   223
    make_ctxt (f (mode, naming, syntax, tsig, consts, facts, cases)));
24388
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   224
36450
62eaaffe6e47 more systematic naming of tsig operations;
wenzelm
parents: 36448
diff changeset
   225
fun set_mode mode = map_context (fn (_, naming, syntax, tsig, consts, facts, cases) =>
62eaaffe6e47 more systematic naming of tsig operations;
wenzelm
parents: 36448
diff changeset
   226
  (mode, naming, syntax, tsig, consts, facts, cases));
21443
cc5095d57da4 added stmt mode, which affects naming/indexing of local facts;
wenzelm
parents: 21370
diff changeset
   227
24388
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   228
fun map_mode f =
36450
62eaaffe6e47 more systematic naming of tsig operations;
wenzelm
parents: 36448
diff changeset
   229
  map_context (fn (Mode {stmt, pattern, schematic, abbrev}, naming, syntax, tsig, consts, facts, cases) =>
62eaaffe6e47 more systematic naming of tsig operations;
wenzelm
parents: 36448
diff changeset
   230
    (make_mode (f (stmt, pattern, schematic, abbrev)), naming, syntax, tsig, consts, facts, cases));
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   231
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   232
fun map_naming f =
36450
62eaaffe6e47 more systematic naming of tsig operations;
wenzelm
parents: 36448
diff changeset
   233
  map_context (fn (mode, naming, syntax, tsig, consts, facts, cases) =>
62eaaffe6e47 more systematic naming of tsig operations;
wenzelm
parents: 36448
diff changeset
   234
    (mode, f naming, syntax, tsig, consts, facts, cases));
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   235
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   236
fun map_syntax f =
36450
62eaaffe6e47 more systematic naming of tsig operations;
wenzelm
parents: 36448
diff changeset
   237
  map_context (fn (mode, naming, syntax, tsig, consts, facts, cases) =>
62eaaffe6e47 more systematic naming of tsig operations;
wenzelm
parents: 36448
diff changeset
   238
    (mode, naming, f syntax, tsig, consts, facts, cases));
35669
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   239
36450
62eaaffe6e47 more systematic naming of tsig operations;
wenzelm
parents: 36448
diff changeset
   240
fun map_tsig f =
62eaaffe6e47 more systematic naming of tsig operations;
wenzelm
parents: 36448
diff changeset
   241
  map_context (fn (mode, naming, syntax, tsig, consts, facts, cases) =>
62eaaffe6e47 more systematic naming of tsig operations;
wenzelm
parents: 36448
diff changeset
   242
    (mode, naming, syntax, f tsig, consts, facts, cases));
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   243
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   244
fun map_consts f =
36450
62eaaffe6e47 more systematic naming of tsig operations;
wenzelm
parents: 36448
diff changeset
   245
  map_context (fn (mode, naming, syntax, tsig, consts, facts, cases) =>
62eaaffe6e47 more systematic naming of tsig operations;
wenzelm
parents: 36448
diff changeset
   246
    (mode, naming, syntax, tsig, f consts, facts, cases));
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   247
26284
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   248
fun map_facts f =
36450
62eaaffe6e47 more systematic naming of tsig operations;
wenzelm
parents: 36448
diff changeset
   249
  map_context (fn (mode, naming, syntax, tsig, consts, facts, cases) =>
62eaaffe6e47 more systematic naming of tsig operations;
wenzelm
parents: 36448
diff changeset
   250
    (mode, naming, syntax, tsig, consts, f facts, cases));
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   251
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   252
fun map_cases f =
36450
62eaaffe6e47 more systematic naming of tsig operations;
wenzelm
parents: 36448
diff changeset
   253
  map_context (fn (mode, naming, syntax, tsig, consts, facts, cases) =>
62eaaffe6e47 more systematic naming of tsig operations;
wenzelm
parents: 36448
diff changeset
   254
    (mode, naming, syntax, tsig, consts, facts, f cases));
24388
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   255
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   256
val get_mode = #mode o rep_context;
28407
f9db1da584ac ContextPosition.report;
wenzelm
parents: 28396
diff changeset
   257
val restore_mode = set_mode o get_mode;
27286
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   258
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
   259
24486
1dbf377c2e9a moved type_mode to type.ML;
wenzelm
parents: 24388
diff changeset
   260
fun set_stmt stmt =
1dbf377c2e9a moved type_mode to type.ML;
wenzelm
parents: 24388
diff changeset
   261
  map_mode (fn (_, pattern, schematic, abbrev) => (stmt, pattern, schematic, abbrev));
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   262
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   263
val naming_of = #naming o rep_context;
33165
50c4debfd5ae more direct access to naming;
wenzelm
parents: 33157
diff changeset
   264
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
   265
val full_name = Name_Space.full_name o naming_of;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   266
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   267
val syntax_of = #syntax o rep_context;
33387
acea2f336721 modernized structure Local_Syntax;
wenzelm
parents: 33386
diff changeset
   268
val syn_of = Local_Syntax.syn_of o syntax_of;
acea2f336721 modernized structure Local_Syntax;
wenzelm
parents: 33386
diff changeset
   269
val set_syntax_mode = map_syntax o Local_Syntax.set_mode;
acea2f336721 modernized structure Local_Syntax;
wenzelm
parents: 33386
diff changeset
   270
val restore_syntax_mode = map_syntax o Local_Syntax.restore_mode o syntax_of;
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   271
36450
62eaaffe6e47 more systematic naming of tsig operations;
wenzelm
parents: 36448
diff changeset
   272
val tsig_of = #1 o #tsig o rep_context;
36451
ddc965e172c4 localized default sort;
wenzelm
parents: 36450
diff changeset
   273
val set_defsort = map_tsig o apfst o Type.set_defsort;
35680
897740382442 aliases for class/type/const;
wenzelm
parents: 35669
diff changeset
   274
fun default_sort ctxt = the_default (Type.defaultS (tsig_of ctxt)) o Variable.def_sort ctxt;
35669
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   275
25052
a014d544f54d added revert_abbrev;
wenzelm
parents: 25039
diff changeset
   276
val consts_of = #1 o #consts o rep_context;
24752
8aec6154bb17 exported constraint interfaces
haftmann
parents: 24693
diff changeset
   277
val the_const_constraint = Consts.the_constraint o consts_of;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   278
26284
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   279
val facts_of = #facts o rep_context;
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   280
val cases_of = #cases o rep_context;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   281
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   282
42359
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
   283
(* name spaces *)
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
   284
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
   285
val class_space = Type.class_space o tsig_of;
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
   286
val type_space = Type.type_space o tsig_of;
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
   287
val const_space = Consts.space_of o consts_of;
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
   288
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
   289
val intern_class = Name_Space.intern o class_space;
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
   290
val intern_type = Name_Space.intern o type_space;
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
   291
val intern_const = Name_Space.intern o const_space;
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
   292
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
   293
fun extern_class ctxt = Name_Space.extern ctxt (class_space ctxt);
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
   294
fun extern_type ctxt = Name_Space.extern ctxt (type_space ctxt);
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
   295
fun extern_const ctxt = Name_Space.extern ctxt (const_space ctxt);
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
   296
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
   297
20367
ba1c262c7625 renamed map_theory to theory;
wenzelm
parents: 20330
diff changeset
   298
(* theory transfer *)
12093
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   299
35669
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   300
fun transfer_syntax thy ctxt = ctxt |>
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   301
  map_syntax (Local_Syntax.rebuild thy) |>
36450
62eaaffe6e47 more systematic naming of tsig operations;
wenzelm
parents: 36448
diff changeset
   302
  map_tsig (fn tsig as (local_tsig, global_tsig) =>
35669
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   303
    let val thy_tsig = Sign.tsig_of thy in
36450
62eaaffe6e47 more systematic naming of tsig operations;
wenzelm
parents: 36448
diff changeset
   304
      if Type.eq_tsig (thy_tsig, global_tsig) then tsig
62eaaffe6e47 more systematic naming of tsig operations;
wenzelm
parents: 36448
diff changeset
   305
      else (Type.merge_tsig (Syntax.pp ctxt) (local_tsig, thy_tsig), thy_tsig)
35669
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   306
    end) |>
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
   307
  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
   308
    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
   309
      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
   310
      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
   311
    end);
17072
501c28052aea added transfer;
wenzelm
parents: 16992
diff changeset
   312
33031
b75c35574e04 backpatching of structure Proof and ProofContext -- avoid odd aliases;
wenzelm
parents: 32966
diff changeset
   313
fun transfer thy = Context.raw_transfer thy #> transfer_syntax thy;
17072
501c28052aea added transfer;
wenzelm
parents: 16992
diff changeset
   314
38756
d07959fabde6 renamed ProofContext.theory(_result) to ProofContext.background_theory(_result) to emphasize that this belongs to the infrastructure and is rarely appropriate in user-space tools;
wenzelm
parents: 38328
diff changeset
   315
fun background_theory f ctxt = transfer (f (theory_of ctxt)) ctxt;
20367
ba1c262c7625 renamed map_theory to theory;
wenzelm
parents: 20330
diff changeset
   316
38756
d07959fabde6 renamed ProofContext.theory(_result) to ProofContext.background_theory(_result) to emphasize that this belongs to the infrastructure and is rarely appropriate in user-space tools;
wenzelm
parents: 38328
diff changeset
   317
fun background_theory_result f ctxt =
20367
ba1c262c7625 renamed map_theory to theory;
wenzelm
parents: 20330
diff changeset
   318
  let val (res, thy') = f (theory_of ctxt)
ba1c262c7625 renamed map_theory to theory;
wenzelm
parents: 20330
diff changeset
   319
  in (res, ctxt |> transfer thy') end;
19019
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
   320
12093
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   321
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   322
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   323
(** pretty printing **)
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   324
28212
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   325
(* extern *)
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   326
42378
d9fe47d21b41 markup facts via name space;
wenzelm
parents: 42376
diff changeset
   327
fun which_facts ctxt name =
28212
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   328
  let
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   329
    val local_facts = facts_of ctxt;
39557
fe5722fce758 renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents: 39508
diff changeset
   330
    val global_facts = Global_Theory.facts_of (theory_of ctxt);
28212
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   331
  in
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   332
    if is_some (Facts.lookup (Context.Proof ctxt) local_facts name)
42378
d9fe47d21b41 markup facts via name space;
wenzelm
parents: 42376
diff changeset
   333
    then local_facts else global_facts
28212
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   334
  end;
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   335
42379
26f64dddf2c6 tuned signature;
wenzelm
parents: 42378
diff changeset
   336
fun markup_fact ctxt name = Name_Space.markup (Facts.space_of (which_facts ctxt name)) name;
42378
d9fe47d21b41 markup facts via name space;
wenzelm
parents: 42376
diff changeset
   337
d9fe47d21b41 markup facts via name space;
wenzelm
parents: 42376
diff changeset
   338
fun extern_fact ctxt name = Facts.extern ctxt (which_facts ctxt name) name;
d9fe47d21b41 markup facts via name space;
wenzelm
parents: 42376
diff changeset
   339
28212
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   340
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   341
(* pretty *)
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
   342
24922
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   343
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
   344
42378
d9fe47d21b41 markup facts via name space;
wenzelm
parents: 42376
diff changeset
   345
fun pretty_fact_name ctxt a =
d9fe47d21b41 markup facts via name space;
wenzelm
parents: 42376
diff changeset
   346
  Pretty.block [Pretty.mark_str (markup_fact ctxt a, 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
   347
32090
39acf19e9f3a moved ProofContext.pretty_thm to Display.pretty_thm etc.;
wenzelm
parents: 32032
diff changeset
   348
fun pretty_fact_aux ctxt flag ("", ths) =
39acf19e9f3a moved ProofContext.pretty_thm to Display.pretty_thm etc.;
wenzelm
parents: 32032
diff changeset
   349
      Display.pretty_thms_aux ctxt flag ths
30723
a3adc9a96a16 pretty_thm_aux etc.: explicit show_status flag;
wenzelm
parents: 30628
diff changeset
   350
  | 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
   351
      [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
   352
  | 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
   353
      (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
   354
a3adc9a96a16 pretty_thm_aux etc.: explicit show_status flag;
wenzelm
parents: 30628
diff changeset
   355
fun pretty_fact ctxt = pretty_fact_aux ctxt true;
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   356
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   357
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   358
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   359
(** prepare types **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   360
35669
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   361
(* classes *)
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   362
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   363
fun read_class ctxt text =
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   364
  let
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   365
    val tsig = tsig_of ctxt;
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   366
    val (syms, pos) = Syntax.read_token text;
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   367
    val c = Type.cert_class tsig (Type.intern_class tsig (Symbol_Pos.content syms))
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   368
      handle TYPE (msg, _, _) => error (msg ^ Position.str_of pos);
39507
839873937ddd tuned signature of (Context_)Position.report variants;
wenzelm
parents: 39441
diff changeset
   369
    val _ = Context_Position.report ctxt pos (Markup.tclass c);
35669
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   370
  in c end;
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   371
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   372
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   373
(* type arities *)
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   374
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   375
local
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   376
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   377
fun prep_arity prep_tycon prep_sort ctxt (t, Ss, S) =
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   378
  let val arity = (prep_tycon ctxt t, map (prep_sort ctxt) Ss, prep_sort ctxt S)
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   379
  in Type.add_arity (Syntax.pp ctxt) arity (tsig_of ctxt); arity end;
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   380
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   381
in
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   382
42359
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
   383
val read_arity = prep_arity intern_type Syntax.read_sort;
35669
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   384
val cert_arity = prep_arity (K I) (Type.cert_sort o tsig_of);
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   385
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   386
end;
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   387
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   388
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   389
(* types *)
24277
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   390
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   391
fun read_typ_mode mode ctxt s =
24486
1dbf377c2e9a moved type_mode to type.ML;
wenzelm
parents: 24388
diff changeset
   392
  Syntax.read_typ (Type.set_mode mode ctxt) s;
24277
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   393
35669
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   394
val read_typ = read_typ_mode Type.mode_default;
24277
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   395
val read_typ_syntax = read_typ_mode Type.mode_syntax;
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   396
val read_typ_abbrev = read_typ_mode Type.mode_abbrev;
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   397
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   398
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   399
fun cert_typ_mode mode ctxt T =
35669
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   400
  Type.cert_typ_mode mode (tsig_of ctxt) T
24277
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   401
    handle TYPE (msg, _, _) => error msg;
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   402
35669
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   403
val cert_typ = cert_typ_mode Type.mode_default;
24277
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   404
val cert_typ_syntax = cert_typ_mode Type.mode_syntax;
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   405
val cert_typ_abbrev = cert_typ_mode Type.mode_abbrev;
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   406
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   407
24388
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   408
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   409
(** prepare variables **)
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   410
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   411
(* internalize Skolem constants *)
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   412
19897
fe661eb3b0e7 ProofContext: moved variable operations to struct Variable;
wenzelm
parents: 19882
diff changeset
   413
val lookup_skolem = AList.lookup (op =) o Variable.fixes_of;
18187
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
   414
fun get_skolem ctxt x = the_default x (lookup_skolem ctxt x);
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   415
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
   416
fun no_skolem internal x =
20086
94ca946fb689 adapted to more efficient Name/Variable implementation;
wenzelm
parents: 20049
diff changeset
   417
  if can Name.dest_skolem x then
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
   418
    error ("Illegal reference to internal Skolem constant: " ^ quote x)
20086
94ca946fb689 adapted to more efficient Name/Variable implementation;
wenzelm
parents: 20049
diff changeset
   419
  else if not internal andalso can Name.dest_internal x then
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
   420
    error ("Illegal reference to internal variable: " ^ quote x)
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   421
  else x;
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   422
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   423
26717
2e1c3a0e7308 revert_skolem: do not change non-reversible names;
wenzelm
parents: 26705
diff changeset
   424
(* revert Skolem constants -- if possible *)
18255
5ef79b75a002 revert_skolem: fall back on Syntax.deskolem;
wenzelm
parents: 18211
diff changeset
   425
26717
2e1c3a0e7308 revert_skolem: do not change non-reversible names;
wenzelm
parents: 26705
diff changeset
   426
fun revert_skolem ctxt x =
2e1c3a0e7308 revert_skolem: do not change non-reversible names;
wenzelm
parents: 26705
diff changeset
   427
  (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
   428
    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
   429
  | NONE => x);
9133
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   430
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   431
18187
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
   432
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   433
(** prepare terms and propositions **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   434
25328
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   435
(* inferred types of parameters *)
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   436
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   437
fun infer_type ctxt x =
36505
79c1d2bbe5a9 ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents: 36503
diff changeset
   438
  Term.fastype_of (singleton (Syntax.check_terms (set_mode mode_schematic ctxt)) (Free x));
25328
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   439
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   440
fun inferred_param x ctxt =
36505
79c1d2bbe5a9 ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents: 36503
diff changeset
   441
  let val T = infer_type ctxt (x, dummyT)
28082
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
   442
  in (T, ctxt |> Variable.declare_term (Free (x, T))) end;
25328
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   443
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   444
fun inferred_fixes ctxt =
28082
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
   445
  let
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
   446
    val xs = rev (map #2 (Variable.fixes_of ctxt));
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
   447
    val (Ts, ctxt') = fold_map inferred_param xs ctxt;
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
   448
  in (xs ~~ Ts, ctxt') 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
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   451
(* type and constant names *)
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   452
27821
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   453
local
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   454
30573
49899f26fbd1 de-camelized Symbol_Pos;
wenzelm
parents: 30566
diff changeset
   455
val token_content = Syntax.read_token #>> Symbol_Pos.content;
27821
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   456
35399
3881972fcfca clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents: 35360
diff changeset
   457
fun prep_const_proper ctxt strict (c, pos) =
3881972fcfca clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents: 35360
diff changeset
   458
  let
3881972fcfca clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents: 35360
diff changeset
   459
    fun err msg = error (msg ^ Position.str_of pos);
3881972fcfca clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents: 35360
diff changeset
   460
    val consts = consts_of ctxt;
3881972fcfca clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents: 35360
diff changeset
   461
    val t as Const (d, _) =
3881972fcfca clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents: 35360
diff changeset
   462
      (case Variable.lookup_const ctxt c of
3881972fcfca clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents: 35360
diff changeset
   463
        SOME d =>
3881972fcfca clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents: 35360
diff changeset
   464
          Const (d, Consts.type_scheme (consts_of ctxt) d handle TYPE (msg, _, _) => err msg)
3881972fcfca clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents: 35360
diff changeset
   465
      | NONE => Consts.read_const consts c);
3881972fcfca clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents: 35360
diff changeset
   466
    val _ =
3881972fcfca clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents: 35360
diff changeset
   467
      if strict then ignore (Consts.the_type consts d) handle TYPE (msg, _, _) => err msg
3881972fcfca clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents: 35360
diff changeset
   468
      else ();
39507
839873937ddd tuned signature of (Context_)Position.report variants;
wenzelm
parents: 39441
diff changeset
   469
    val _ = Context_Position.report ctxt pos (Markup.const d);
35399
3881972fcfca clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents: 35360
diff changeset
   470
  in t end;
27821
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   471
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   472
in
25328
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   473
35399
3881972fcfca clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents: 35360
diff changeset
   474
fun read_type_name ctxt strict text =
27821
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   475
  let
35669
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   476
    val tsig = tsig_of ctxt;
35399
3881972fcfca clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents: 35360
diff changeset
   477
    val (c, pos) = token_content text;
27821
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   478
  in
42290
b1f544c84040 discontinued special treatment of structure Lexicon;
wenzelm
parents: 42287
diff changeset
   479
    if Lexicon.is_tid c then
39507
839873937ddd tuned signature of (Context_)Position.report variants;
wenzelm
parents: 39441
diff changeset
   480
     (Context_Position.report ctxt pos Markup.tfree;
35680
897740382442 aliases for class/type/const;
wenzelm
parents: 35669
diff changeset
   481
      TFree (c, default_sort ctxt (c, ~1)))
27821
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   482
    else
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   483
      let
42359
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
   484
        val d = intern_type ctxt c;
35669
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   485
        val decl = Type.the_decl tsig d;
39507
839873937ddd tuned signature of (Context_)Position.report variants;
wenzelm
parents: 39441
diff changeset
   486
        val _ = Context_Position.report ctxt pos (Markup.tycon d);
35360
df2b2168e43a clarified ProofContext.read_type_name/Args.type_name wrt strict logical constructors;
wenzelm
parents: 35262
diff changeset
   487
        fun err () = error ("Bad type name: " ^ quote d);
df2b2168e43a clarified ProofContext.read_type_name/Args.type_name wrt strict logical constructors;
wenzelm
parents: 35262
diff changeset
   488
        val args =
df2b2168e43a clarified ProofContext.read_type_name/Args.type_name wrt strict logical constructors;
wenzelm
parents: 35262
diff changeset
   489
          (case decl of
df2b2168e43a clarified ProofContext.read_type_name/Args.type_name wrt strict logical constructors;
wenzelm
parents: 35262
diff changeset
   490
            Type.LogicalType n => n
df2b2168e43a clarified ProofContext.read_type_name/Args.type_name wrt strict logical constructors;
wenzelm
parents: 35262
diff changeset
   491
          | Type.Abbreviation (vs, _, _) => if strict then err () else length vs
df2b2168e43a clarified ProofContext.read_type_name/Args.type_name wrt strict logical constructors;
wenzelm
parents: 35262
diff changeset
   492
          | Type.Nonterminal => if strict then err () else 0);
df2b2168e43a clarified ProofContext.read_type_name/Args.type_name wrt strict logical constructors;
wenzelm
parents: 35262
diff changeset
   493
      in Type (d, replicate args dummyT) end
27821
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   494
  end;
25328
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   495
35669
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   496
fun read_type_name_proper ctxt strict text =
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   497
  (case read_type_name ctxt strict text of
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   498
    T as Type _ => T
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   499
  | T => error ("Not a type constructor: " ^ Syntax.string_of_typ ctxt T));
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   500
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   501
35399
3881972fcfca clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents: 35360
diff changeset
   502
fun read_const_proper ctxt strict = prep_const_proper ctxt strict o token_content;
27821
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   503
36505
79c1d2bbe5a9 ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents: 36503
diff changeset
   504
fun read_const ctxt strict ty text =
36542
7cb6b40d19b2 read_const: disallow internal names as usual in visible Isar text;
wenzelm
parents: 36505
diff changeset
   505
  let
7cb6b40d19b2 read_const: disallow internal names as usual in visible Isar text;
wenzelm
parents: 36505
diff changeset
   506
    val (c, pos) = token_content text;
7cb6b40d19b2 read_const: disallow internal names as usual in visible Isar text;
wenzelm
parents: 36505
diff changeset
   507
    val _ = no_skolem false c;
7cb6b40d19b2 read_const: disallow internal names as usual in visible Isar text;
wenzelm
parents: 36505
diff changeset
   508
  in
27821
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   509
    (case (lookup_skolem ctxt c, Variable.is_const ctxt c) of
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   510
      (SOME x, false) =>
39507
839873937ddd tuned signature of (Context_)Position.report variants;
wenzelm
parents: 39441
diff changeset
   511
        (Context_Position.report ctxt pos
839873937ddd tuned signature of (Context_)Position.report variants;
wenzelm
parents: 39441
diff changeset
   512
            (Markup.name x (if can Name.dest_skolem x then Markup.skolem else Markup.free));
36505
79c1d2bbe5a9 ProofContext.read_const: allow for type constraint (for fixed variable);
wenzelm
parents: 36503
diff changeset
   513
          Free (x, infer_type ctxt (x, ty)))
35399
3881972fcfca clarified ProofContext.read_const(_proper)/Args.const(_proper) wrt. strict logical consts;
wenzelm
parents: 35360
diff changeset
   514
    | _ => prep_const_proper ctxt strict (c, pos))
27821
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   515
  end;
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   516
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   517
end;
25328
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   518
f71105742e2c discontinued ProofContext.read_prop_legacy;
wenzelm
parents: 25319
diff changeset
   519
42250
cc5ac538f991 eliminated odd object-oriented type_context/term_context;
wenzelm
parents: 42242
diff changeset
   520
(* skolem variables *)
cc5ac538f991 eliminated odd object-oriented type_context/term_context;
wenzelm
parents: 42242
diff changeset
   521
cc5ac538f991 eliminated odd object-oriented type_context/term_context;
wenzelm
parents: 42242
diff changeset
   522
fun intern_skolem ctxt x =
cc5ac538f991 eliminated odd object-oriented type_context/term_context;
wenzelm
parents: 42242
diff changeset
   523
  let
cc5ac538f991 eliminated odd object-oriented type_context/term_context;
wenzelm
parents: 42242
diff changeset
   524
    val _ = no_skolem false x;
cc5ac538f991 eliminated odd object-oriented type_context/term_context;
wenzelm
parents: 42242
diff changeset
   525
    val sko = lookup_skolem ctxt x;
cc5ac538f991 eliminated odd object-oriented type_context/term_context;
wenzelm
parents: 42242
diff changeset
   526
    val is_const = can (read_const_proper ctxt false) x orelse Long_Name.is_qualified x;
cc5ac538f991 eliminated odd object-oriented type_context/term_context;
wenzelm
parents: 42242
diff changeset
   527
    val is_declared = is_some (Variable.def_type ctxt false (x, ~1));
cc5ac538f991 eliminated odd object-oriented type_context/term_context;
wenzelm
parents: 42242
diff changeset
   528
  in
cc5ac538f991 eliminated odd object-oriented type_context/term_context;
wenzelm
parents: 42242
diff changeset
   529
    if Variable.is_const ctxt x then NONE
cc5ac538f991 eliminated odd object-oriented type_context/term_context;
wenzelm
parents: 42242
diff changeset
   530
    else if is_some sko then sko
cc5ac538f991 eliminated odd object-oriented type_context/term_context;
wenzelm
parents: 42242
diff changeset
   531
    else if not is_const orelse is_declared then SOME x
cc5ac538f991 eliminated odd object-oriented type_context/term_context;
wenzelm
parents: 42242
diff changeset
   532
    else NONE
cc5ac538f991 eliminated odd object-oriented type_context/term_context;
wenzelm
parents: 42242
diff changeset
   533
  end;
cc5ac538f991 eliminated odd object-oriented type_context/term_context;
wenzelm
parents: 42242
diff changeset
   534
cc5ac538f991 eliminated odd object-oriented type_context/term_context;
wenzelm
parents: 42242
diff changeset
   535
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   536
(* read_term *)
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   537
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   538
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
   539
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   540
val read_term_pattern   = read_term_mode mode_pattern;
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   541
val read_term_schematic = read_term_mode mode_schematic;
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   542
val read_term_abbrev    = read_term_mode mode_abbrev;
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   543
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   544
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   545
(* local abbreviations *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   546
24501
7a2b20145888 export various inner syntax modes;
wenzelm
parents: 24495
diff changeset
   547
local
7a2b20145888 export various inner syntax modes;
wenzelm
parents: 24495
diff changeset
   548
26731
48df747c8543 exported is_abbrev mode discriminator
haftmann
parents: 26722
diff changeset
   549
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
   550
  (not (abbrev_mode ctxt)) (consts_of ctxt);
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   551
38979
60dbf0b3f6c7 prefer regular print functions over slightly low-level Term.string_of_vname;
wenzelm
parents: 38756
diff changeset
   552
fun expand_binds ctxt =
60dbf0b3f6c7 prefer regular print functions over slightly low-level Term.string_of_vname;
wenzelm
parents: 38756
diff changeset
   553
  let
60dbf0b3f6c7 prefer regular print functions over slightly low-level Term.string_of_vname;
wenzelm
parents: 38756
diff changeset
   554
    val Mode {pattern, schematic, ...} = get_mode ctxt;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   555
38979
60dbf0b3f6c7 prefer regular print functions over slightly low-level Term.string_of_vname;
wenzelm
parents: 38756
diff changeset
   556
    fun reject_schematic (t as Var _) =
60dbf0b3f6c7 prefer regular print functions over slightly low-level Term.string_of_vname;
wenzelm
parents: 38756
diff changeset
   557
          error ("Unbound schematic variable: " ^ Syntax.string_of_term ctxt t)
60dbf0b3f6c7 prefer regular print functions over slightly low-level Term.string_of_vname;
wenzelm
parents: 38756
diff changeset
   558
      | reject_schematic (Abs (_, _, t)) = reject_schematic t
60dbf0b3f6c7 prefer regular print functions over slightly low-level Term.string_of_vname;
wenzelm
parents: 38756
diff changeset
   559
      | reject_schematic (t $ u) = (reject_schematic t; reject_schematic u)
60dbf0b3f6c7 prefer regular print functions over slightly low-level Term.string_of_vname;
wenzelm
parents: 38756
diff changeset
   560
      | reject_schematic _ = ();
60dbf0b3f6c7 prefer regular print functions over slightly low-level Term.string_of_vname;
wenzelm
parents: 38756
diff changeset
   561
  in
24495
eab1b52a47d0 added join_mode;
wenzelm
parents: 24486
diff changeset
   562
    if pattern then I
eab1b52a47d0 added join_mode;
wenzelm
parents: 24486
diff changeset
   563
    else Variable.expand_binds ctxt #> (if schematic then I else tap reject_schematic)
eab1b52a47d0 added join_mode;
wenzelm
parents: 24486
diff changeset
   564
  end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   565
24501
7a2b20145888 export various inner syntax modes;
wenzelm
parents: 24495
diff changeset
   566
in
7a2b20145888 export various inner syntax modes;
wenzelm
parents: 24495
diff changeset
   567
7a2b20145888 export various inner syntax modes;
wenzelm
parents: 24495
diff changeset
   568
fun expand_abbrevs ctxt = certify_consts ctxt #> expand_binds ctxt;
7a2b20145888 export various inner syntax modes;
wenzelm
parents: 24495
diff changeset
   569
7a2b20145888 export various inner syntax modes;
wenzelm
parents: 24495
diff changeset
   570
end;
7a2b20145888 export various inner syntax modes;
wenzelm
parents: 24495
diff changeset
   571
40879
ca132ef44944 configuration option "show_abbrevs" supersedes print mode "no_abbrevs", with inverted meaning;
wenzelm
parents: 39557
diff changeset
   572
val show_abbrevs_raw = Config.declare "show_abbrevs" (fn _ => Config.Bool true);
ca132ef44944 configuration option "show_abbrevs" supersedes print mode "no_abbrevs", with inverted meaning;
wenzelm
parents: 39557
diff changeset
   573
val show_abbrevs = Config.bool show_abbrevs_raw;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   574
24922
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   575
fun contract_abbrevs ctxt t =
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   576
  let
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   577
    val thy = theory_of ctxt;
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   578
    val consts = consts_of ctxt;
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   579
    val Mode {abbrev, ...} = get_mode ctxt;
30566
9643f54c4184 reverted abbreviations: improved performance via Item_Net.T;
wenzelm
parents: 30473
diff changeset
   580
    val retrieve = Consts.retrieve_abbrevs consts (print_mode_value () @ [""]);
9643f54c4184 reverted abbreviations: improved performance via Item_Net.T;
wenzelm
parents: 30473
diff changeset
   581
    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
   582
  in
40879
ca132ef44944 configuration option "show_abbrevs" supersedes print mode "no_abbrevs", with inverted meaning;
wenzelm
parents: 39557
diff changeset
   583
    if abbrev orelse not (Config.get ctxt show_abbrevs) orelse not (can Term.type_of t) then t
35211
5d2fe4e09354 Use top-down rewriting to contract abbreviations.
berghofe
parents: 35141
diff changeset
   584
    else Pattern.rewrite_term_top thy [] [match_abbrev] t
24922
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   585
  end;
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   586
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   587
24518
4dd086997bab removed unused join_mode;
wenzelm
parents: 24511
diff changeset
   588
(* patterns *)
4dd086997bab removed unused join_mode;
wenzelm
parents: 24511
diff changeset
   589
32003
befec6450fd6 tuned prepare_patternT: Term.exists_subtype;
wenzelm
parents: 30815
diff changeset
   590
fun prepare_patternT ctxt T =
befec6450fd6 tuned prepare_patternT: Term.exists_subtype;
wenzelm
parents: 30815
diff changeset
   591
  let
befec6450fd6 tuned prepare_patternT: Term.exists_subtype;
wenzelm
parents: 30815
diff changeset
   592
    val Mode {pattern, schematic, ...} = get_mode ctxt;
befec6450fd6 tuned prepare_patternT: Term.exists_subtype;
wenzelm
parents: 30815
diff changeset
   593
    val _ =
befec6450fd6 tuned prepare_patternT: Term.exists_subtype;
wenzelm
parents: 30815
diff changeset
   594
      pattern orelse schematic orelse
befec6450fd6 tuned prepare_patternT: Term.exists_subtype;
wenzelm
parents: 30815
diff changeset
   595
        T |> Term.exists_subtype
38979
60dbf0b3f6c7 prefer regular print functions over slightly low-level Term.string_of_vname;
wenzelm
parents: 38756
diff changeset
   596
          (fn T as TVar (xi, _) =>
37145
01aa36932739 renamed structure TypeInfer to Type_Infer, keeping the old name as legacy alias for some time;
wenzelm
parents: 36610
diff changeset
   597
            not (Type_Infer.is_param xi) andalso
38979
60dbf0b3f6c7 prefer regular print functions over slightly low-level Term.string_of_vname;
wenzelm
parents: 38756
diff changeset
   598
              error ("Illegal schematic type variable: " ^ Syntax.string_of_typ ctxt T)
32003
befec6450fd6 tuned prepare_patternT: Term.exists_subtype;
wenzelm
parents: 30815
diff changeset
   599
          | _ => false)
befec6450fd6 tuned prepare_patternT: Term.exists_subtype;
wenzelm
parents: 30815
diff changeset
   600
  in T end;
24518
4dd086997bab removed unused join_mode;
wenzelm
parents: 24511
diff changeset
   601
22712
8f2ba236918b replaced read_term_legacy by read_prop_legacy;
wenzelm
parents: 22701
diff changeset
   602
24505
9e6d91f8bb73 reject_vars: accept type-inference params;
wenzelm
parents: 24501
diff changeset
   603
local
6550
68f950b1a664 dummy patterns;
wenzelm
parents: 6528
diff changeset
   604
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
   605
val dummies = Config.bool (Config.declare "Proof_Context.dummies" (K (Config.Bool false)));
27259
6e71abb8c994 export transfer_syntax;
wenzelm
parents: 27195
diff changeset
   606
6e71abb8c994 export transfer_syntax;
wenzelm
parents: 27195
diff changeset
   607
fun check_dummies ctxt t =
39508
dfacdb01e1ec simplified some internal flags using Config.T instead of full-blown Proof_Data;
wenzelm
parents: 39507
diff changeset
   608
  if Config.get ctxt dummies then t
27259
6e71abb8c994 export transfer_syntax;
wenzelm
parents: 27195
diff changeset
   609
  else Term.no_dummy_patterns t handle TERM _ => error "Illegal dummy pattern(s) in term";
6e71abb8c994 export transfer_syntax;
wenzelm
parents: 27195
diff changeset
   610
24767
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
   611
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
   612
27259
6e71abb8c994 export transfer_syntax;
wenzelm
parents: 27195
diff changeset
   613
in
6550
68f950b1a664 dummy patterns;
wenzelm
parents: 6528
diff changeset
   614
39508
dfacdb01e1ec simplified some internal flags using Config.T instead of full-blown Proof_Data;
wenzelm
parents: 39507
diff changeset
   615
val allow_dummies = Config.put dummies true;
24505
9e6d91f8bb73 reject_vars: accept type-inference params;
wenzelm
parents: 24501
diff changeset
   616
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   617
fun prepare_patterns ctxt =
24518
4dd086997bab removed unused join_mode;
wenzelm
parents: 24511
diff changeset
   618
  let val Mode {pattern, ...} = get_mode ctxt in
39296
e275d581a218 tuned signature;
wenzelm
parents: 39295
diff changeset
   619
    Type_Infer.fixate ctxt #>
24767
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
   620
    pattern ? Variable.polymorphic ctxt #>
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   621
    (map o Term.map_types) (prepare_patternT ctxt) #>
27259
6e71abb8c994 export transfer_syntax;
wenzelm
parents: 27195
diff changeset
   622
    (if pattern then prepare_dummies else map (check_dummies ctxt))
24505
9e6d91f8bb73 reject_vars: accept type-inference params;
wenzelm
parents: 24501
diff changeset
   623
  end;
9e6d91f8bb73 reject_vars: accept type-inference params;
wenzelm
parents: 24501
diff changeset
   624
9e6d91f8bb73 reject_vars: accept type-inference params;
wenzelm
parents: 24501
diff changeset
   625
end;
9e6d91f8bb73 reject_vars: accept type-inference params;
wenzelm
parents: 24501
diff changeset
   626
6550
68f950b1a664 dummy patterns;
wenzelm
parents: 6528
diff changeset
   627
42250
cc5ac538f991 eliminated odd object-oriented type_context/term_context;
wenzelm
parents: 42242
diff changeset
   628
(* sort constraints *)
27286
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   629
36448
edb757388592 get_sort: minimize sorts given in the text, while keeping those from the context unchanged (the latter are preferred);
wenzelm
parents: 36429
diff changeset
   630
fun get_sort ctxt raw_text =
27286
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   631
  let
35669
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   632
    val tsig = tsig_of ctxt;
27286
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   633
36448
edb757388592 get_sort: minimize sorts given in the text, while keeping those from the context unchanged (the latter are preferred);
wenzelm
parents: 36429
diff changeset
   634
    val text = distinct (op =) (map (apsnd (Type.minimize_sort tsig)) raw_text);
36152
34d1ce2d746d get_sort: suppress dummyS from input;
wenzelm
parents: 35680
diff changeset
   635
    val _ =
36448
edb757388592 get_sort: minimize sorts given in the text, while keeping those from the context unchanged (the latter are preferred);
wenzelm
parents: 36429
diff changeset
   636
      (case duplicates (eq_fst (op =)) text of
36152
34d1ce2d746d get_sort: suppress dummyS from input;
wenzelm
parents: 35680
diff changeset
   637
        [] => ()
27286
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   638
      | dups => error ("Inconsistent sort constraints for type variable(s) "
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   639
          ^ commas_quote (map (Term.string_of_vname' o fst) dups)));
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   640
36152
34d1ce2d746d get_sort: suppress dummyS from input;
wenzelm
parents: 35680
diff changeset
   641
    fun lookup xi =
36448
edb757388592 get_sort: minimize sorts given in the text, while keeping those from the context unchanged (the latter are preferred);
wenzelm
parents: 36429
diff changeset
   642
      (case AList.lookup (op =) text xi of
36152
34d1ce2d746d get_sort: suppress dummyS from input;
wenzelm
parents: 35680
diff changeset
   643
        NONE => NONE
34d1ce2d746d get_sort: suppress dummyS from input;
wenzelm
parents: 35680
diff changeset
   644
      | SOME S => if S = dummyS then NONE else SOME S);
34d1ce2d746d get_sort: suppress dummyS from input;
wenzelm
parents: 35680
diff changeset
   645
27286
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   646
    fun get xi =
36152
34d1ce2d746d get_sort: suppress dummyS from input;
wenzelm
parents: 35680
diff changeset
   647
      (case (lookup xi, Variable.def_sort ctxt xi) of
27286
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   648
        (NONE, NONE) => Type.defaultS tsig
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   649
      | (NONE, SOME S) => S
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   650
      | (SOME S, NONE) => S
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   651
      | (SOME S, SOME S') =>
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   652
          if Type.eq_sort tsig (S, S') then S'
35669
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   653
          else error ("Sort constraint " ^ Syntax.string_of_sort ctxt S ^
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35616
diff changeset
   654
            " inconsistent with default " ^ Syntax.string_of_sort ctxt S' ^
30815
e96498265a05 tuned error message;
wenzelm
parents: 30763
diff changeset
   655
            " for type variable " ^ quote (Term.string_of_vname' xi)));
36448
edb757388592 get_sort: minimize sorts given in the text, while keeping those from the context unchanged (the latter are preferred);
wenzelm
parents: 36429
diff changeset
   656
  in get end;
27286
2ea20e5fdf16 renamed is_abbrev_mode to abbrev_mode;
wenzelm
parents: 27264
diff changeset
   657
36152
34d1ce2d746d get_sort: suppress dummyS from input;
wenzelm
parents: 35680
diff changeset
   658
fun check_tvar ctxt (xi, S) = (xi, get_sort ctxt [(xi, S)] xi);
34d1ce2d746d get_sort: suppress dummyS from input;
wenzelm
parents: 35680
diff changeset
   659
fun check_tfree ctxt (x, S) = apfst fst (check_tvar ctxt ((x, ~1), S));
34d1ce2d746d get_sort: suppress dummyS from input;
wenzelm
parents: 35680
diff changeset
   660
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   661
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   662
(* certify terms *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   663
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   664
local
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   665
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   666
fun gen_cert prop ctxt t =
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   667
  t
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   668
  |> expand_abbrevs ctxt
24961
5298ee9c3fe5 moved ProofContext.pp to Syntax.pp;
wenzelm
parents: 24949
diff changeset
   669
  |> (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
   670
    handle TYPE (msg, _, _) => error msg
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   671
      | TERM (msg, _) => error msg);
16501
fec0cf020bad thmref: Name vs. NameSelection;
wenzelm
parents: 16458
diff changeset
   672
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   673
in
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   674
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   675
val cert_term = gen_cert false;
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   676
val cert_prop = gen_cert true;
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   677
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   678
end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   679
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   680
24495
eab1b52a47d0 added join_mode;
wenzelm
parents: 24486
diff changeset
   681
(* type checking/inference *)
22701
4346f230283d proper interface infer_types(_pat);
wenzelm
parents: 22678
diff changeset
   682
35616
b342390d296f provide ProofContext.def_type depending on "pattern" mode;
wenzelm
parents: 35429
diff changeset
   683
fun def_type ctxt =
b342390d296f provide ProofContext.def_type depending on "pattern" mode;
wenzelm
parents: 35429
diff changeset
   684
  let val Mode {pattern, ...} = get_mode ctxt
b342390d296f provide ProofContext.def_type depending on "pattern" mode;
wenzelm
parents: 35429
diff changeset
   685
  in Variable.def_type ctxt pattern end;
b342390d296f provide ProofContext.def_type depending on "pattern" mode;
wenzelm
parents: 35429
diff changeset
   686
39291
4b632bb847a8 Type_Infer.infer_types: plain error instead of kernel exception TYPE;
wenzelm
parents: 39290
diff changeset
   687
fun standard_infer_types ctxt =
4b632bb847a8 Type_Infer.infer_types: plain error instead of kernel exception TYPE;
wenzelm
parents: 39290
diff changeset
   688
  Type_Infer.infer_types ctxt (try (Consts.the_constraint (consts_of ctxt))) (def_type ctxt);
24486
1dbf377c2e9a moved type_mode to type.ML;
wenzelm
parents: 24388
diff changeset
   689
25406
1aa7927a6759 simplified Consts.dest;
wenzelm
parents: 25353
diff changeset
   690
local
1aa7927a6759 simplified Consts.dest;
wenzelm
parents: 25353
diff changeset
   691
24518
4dd086997bab removed unused join_mode;
wenzelm
parents: 24511
diff changeset
   692
fun standard_typ_check ctxt =
4dd086997bab removed unused join_mode;
wenzelm
parents: 24511
diff changeset
   693
  map (cert_typ_mode (Type.get_mode ctxt) ctxt) #>
4dd086997bab removed unused join_mode;
wenzelm
parents: 24511
diff changeset
   694
  map (prepare_patternT ctxt);
4dd086997bab removed unused join_mode;
wenzelm
parents: 24511
diff changeset
   695
24769
1372969969e0 standard_term_check: include expand_abbrevs (back again);
wenzelm
parents: 24767
diff changeset
   696
fun standard_term_check ctxt =
1372969969e0 standard_term_check: include expand_abbrevs (back again);
wenzelm
parents: 24767
diff changeset
   697
  standard_infer_types ctxt #>
1372969969e0 standard_term_check: include expand_abbrevs (back again);
wenzelm
parents: 24767
diff changeset
   698
  map (expand_abbrevs ctxt);
24922
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   699
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   700
fun standard_term_uncheck ctxt =
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   701
  map (contract_abbrevs ctxt);
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
   702
26463
9283b4185fdf Context.>> : operate on Context.generic;
wenzelm
parents: 26435
diff changeset
   703
fun add eq what f = Context.>> (what (fn xs => fn ctxt =>
9283b4185fdf Context.>> : operate on Context.generic;
wenzelm
parents: 26435
diff changeset
   704
  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
   705
24518
4dd086997bab removed unused join_mode;
wenzelm
parents: 24511
diff changeset
   706
in
4dd086997bab removed unused join_mode;
wenzelm
parents: 24511
diff changeset
   707
25060
17c313217998 Syntax.(un)check: explicit result option;
wenzelm
parents: 25052
diff changeset
   708
val _ = add (op =) (Syntax.add_typ_check 0 "standard") standard_typ_check;
17c313217998 Syntax.(un)check: explicit result option;
wenzelm
parents: 25052
diff changeset
   709
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
   710
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
   711
25060
17c313217998 Syntax.(un)check: explicit result option;
wenzelm
parents: 25052
diff changeset
   712
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
   713
24518
4dd086997bab removed unused join_mode;
wenzelm
parents: 24511
diff changeset
   714
end;
22701
4346f230283d proper interface infer_types(_pat);
wenzelm
parents: 22678
diff changeset
   715
4346f230283d proper interface infer_types(_pat);
wenzelm
parents: 22678
diff changeset
   716
9553
c2e3773475b6 norm_hhf results;
wenzelm
parents: 9540
diff changeset
   717
21610
52c0d3280798 removed obsolete (export_)standard;
wenzelm
parents: 21600
diff changeset
   718
(** export results **)
21531
43aa65a8a870 added export_(standard_)morphism;
wenzelm
parents: 21443
diff changeset
   719
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   720
fun common_export is_goal inner outer =
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   721
  map (Assumption.export is_goal inner outer) #>
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   722
  Variable.export inner outer;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   723
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   724
val goal_export = common_export true;
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
   725
val export = common_export false;
12704
7bffaadc581e export_single;
wenzelm
parents: 12576
diff changeset
   726
21531
43aa65a8a870 added export_(standard_)morphism;
wenzelm
parents: 21443
diff changeset
   727
fun export_morphism inner outer =
43aa65a8a870 added export_(standard_)morphism;
wenzelm
parents: 21443
diff changeset
   728
  Assumption.export_morphism inner outer $>
43aa65a8a870 added export_(standard_)morphism;
wenzelm
parents: 21443
diff changeset
   729
  Variable.export_morphism inner outer;
43aa65a8a870 added export_(standard_)morphism;
wenzelm
parents: 21443
diff changeset
   730
28396
72695dd4395d added norm_export_morphism;
wenzelm
parents: 28212
diff changeset
   731
fun norm_export_morphism inner outer =
72695dd4395d added norm_export_morphism;
wenzelm
parents: 28212
diff changeset
   732
  export_morphism inner outer $>
72695dd4395d added norm_export_morphism;
wenzelm
parents: 28212
diff changeset
   733
  Morphism.thm_morphism Goal.norm_result;
72695dd4395d added norm_export_morphism;
wenzelm
parents: 28212
diff changeset
   734
21531
43aa65a8a870 added export_(standard_)morphism;
wenzelm
parents: 21443
diff changeset
   735
15758
07e382399a96 binds/thms: do not store options, but delete from table;
wenzelm
parents: 15750
diff changeset
   736
30757
2d2076300185 replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents: 30723
diff changeset
   737
(** term bindings **)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   738
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   739
(* simult_matches *)
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   740
19867
474cc9b49239 added declare_typ;
wenzelm
parents: 19847
diff changeset
   741
fun simult_matches ctxt (t, pats) =
474cc9b49239 added declare_typ;
wenzelm
parents: 19847
diff changeset
   742
  (case Seq.pull (Unify.matchers (theory_of ctxt) (map (rpair t) pats)) of
474cc9b49239 added declare_typ;
wenzelm
parents: 19847
diff changeset
   743
    NONE => error "Pattern match failed!"
32032
a6a6e8031c14 tuned/modernized Envir operations;
wenzelm
parents: 32003
diff changeset
   744
  | SOME (env, _) => Vartab.fold (fn (v, (_, t)) => cons (v, t)) (Envir.term_env env) []);
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   745
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   746
30757
2d2076300185 replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents: 30723
diff changeset
   747
(* bind_terms *)
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   748
30757
2d2076300185 replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents: 30723
diff changeset
   749
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
   750
  ctxt
30757
2d2076300185 replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents: 30723
diff changeset
   751
  |> Variable.bind_term (xi, Option.map (cert_term (set_mode mode_default ctxt)) t));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   752
30757
2d2076300185 replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents: 30723
diff changeset
   753
2d2076300185 replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents: 30723
diff changeset
   754
(* auto_bind *)
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
   755
20330
wenzelm
parents: 20310
diff changeset
   756
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
   757
  | drop_schematic b = b;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   758
30757
2d2076300185 replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents: 30723
diff changeset
   759
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
   760
33386
ff29d1549aca modernized structure AutoBind;
wenzelm
parents: 33383
diff changeset
   761
val auto_bind_goal = auto_bind Auto_Bind.goal;
ff29d1549aca modernized structure AutoBind;
wenzelm
parents: 33383
diff changeset
   762
val auto_bind_facts = auto_bind Auto_Bind.facts;
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   763
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   764
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   765
(* match_bind(_i) *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   766
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   767
local
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   768
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   769
fun gen_bind prep_terms gen raw_binds ctxt =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   770
  let
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   771
    fun prep_bind (raw_pats, t) ctxt1 =
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   772
      let
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   773
        val T = Term.fastype_of t;
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   774
        val ctxt2 = Variable.declare_term t ctxt1;
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   775
        val pats = prep_terms (set_mode mode_pattern ctxt2) T raw_pats;
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   776
        val binds = simult_matches ctxt2 (t, pats);
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   777
      in (binds, ctxt2) end;
7670
e302e4269087 added cert_skolem;
wenzelm
parents: 7663
diff changeset
   778
24686
8113d0149304 made smlnj happy;
wenzelm
parents: 24684
diff changeset
   779
    val ts = prep_terms ctxt dummyT (map snd raw_binds);
8113d0149304 made smlnj happy;
wenzelm
parents: 24684
diff changeset
   780
    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
   781
    val binds' =
19916
3bbb9cc5d4f1 export: simultaneous facts, refer to Variable.export;
wenzelm
parents: 19897
diff changeset
   782
      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
   783
      else binds;
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   784
    val binds'' = map (apsnd SOME) binds';
18310
b00c9120f6bd match_bind(_i): return terms;
wenzelm
parents: 18255
diff changeset
   785
    val ctxt'' =
19897
fe661eb3b0e7 ProofContext: moved variable operations to struct Variable;
wenzelm
parents: 19882
diff changeset
   786
      tap (Variable.warn_extra_tfrees ctxt)
18310
b00c9120f6bd match_bind(_i): return terms;
wenzelm
parents: 18255
diff changeset
   787
       (if gen then
30757
2d2076300185 replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents: 30723
diff changeset
   788
          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
   789
        else ctxt' |> bind_terms binds'');
18310
b00c9120f6bd match_bind(_i): return terms;
wenzelm
parents: 18255
diff changeset
   790
  in (ts, ctxt'') end;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   791
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   792
in
5935
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   793
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   794
fun read_terms ctxt T =
39288
f1ae2493d93f eliminated aliases of Type.constraint;
wenzelm
parents: 39171
diff changeset
   795
  map (Syntax.parse_term ctxt #> Type.constraint T) #> Syntax.check_terms ctxt;
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   796
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   797
val match_bind = gen_bind read_terms;
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   798
val match_bind_i = gen_bind (fn ctxt => fn _ => map (cert_term ctxt));
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   799
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   800
end;
5935
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   801
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   802
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   803
(* propositions with patterns *)
5935
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   804
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   805
local
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   806
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   807
fun prep_propp mode prep_props (context, args) =
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   808
  let
19585
70a1ce3b23ae removed 'concl is' patterns;
wenzelm
parents: 19543
diff changeset
   809
    fun prep (_, raw_pats) (ctxt, prop :: props) =
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   810
      let val ctxt' = Variable.declare_term prop ctxt
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   811
      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
   812
17860
b4cf247ea0d2 note_thmss, read/cert_vars etc.: natural argument order;
wenzelm
parents: 17756
diff changeset
   813
    val (propp, (context', _)) = (fold_map o fold_map) prep args
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   814
      (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
   815
  in (context', propp) end;
5935
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   816
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   817
fun gen_bind_propp mode parse_prop (ctxt, raw_args) =
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   818
  let
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   819
    val (ctxt', args) = prep_propp mode parse_prop (ctxt, raw_args);
19585
70a1ce3b23ae removed 'concl is' patterns;
wenzelm
parents: 19543
diff changeset
   820
    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
   821
    val propss = map (map #1) args;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   822
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   823
    (*generalize result: context evaluated now, binds added later*)
19916
3bbb9cc5d4f1 export: simultaneous facts, refer to Variable.export;
wenzelm
parents: 19897
diff changeset
   824
    val gen = Variable.exportT_terms ctxt' ctxt;
30757
2d2076300185 replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents: 30723
diff changeset
   825
    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
   826
  in (ctxt' |> bind_terms (map (apsnd SOME) binds), (propss, gen_binds)) end;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   827
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   828
in
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   829
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   830
val read_propp           = prep_propp mode_default Syntax.read_props;
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   831
val cert_propp           = prep_propp mode_default (map o cert_prop);
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   832
val read_propp_schematic = prep_propp mode_schematic Syntax.read_props;
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   833
val cert_propp_schematic = prep_propp mode_schematic (map o cert_prop);
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   834
24684
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   835
val bind_propp             = gen_bind_propp mode_default Syntax.read_props;
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   836
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
   837
val bind_propp_schematic   = gen_bind_propp mode_schematic Syntax.read_props;
80da599dea37 added read_term_pattern/schematic/abbrev;
wenzelm
parents: 24675
diff changeset
   838
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
   839
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   840
end;
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   841
6789
0e5a965de17a auto_bind_goal, auto_bind_facts;
wenzelm
parents: 6762
diff changeset
   842
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   843
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   844
(** theorems **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   845
18042
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   846
(* fact_tac *)
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   847
27867
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   848
fun comp_incr_tac [] _ = no_tac
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   849
  | comp_incr_tac (th :: ths) i =
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   850
      (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
   851
21687
f689f729afab reorganized structure Goal vs. Tactic;
wenzelm
parents: 21681
diff changeset
   852
fun fact_tac facts = Goal.norm_hhf_tac THEN' comp_incr_tac facts;
18122
d5a876195499 removed export_plain;
wenzelm
parents: 18043
diff changeset
   853
27867
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   854
fun potential_facts ctxt prop =
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   855
  Facts.could_unify (facts_of ctxt) (Term.strip_all_body prop);
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   856
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   857
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
   858
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   859
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
   860
(* get_thm(s) *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   861
26361
7946f459c6c8 Facts.Named: include position;
wenzelm
parents: 26346
diff changeset
   862
local
7946f459c6c8 Facts.Named: include position;
wenzelm
parents: 26346
diff changeset
   863
26687
fda7b0aff798 removed obsolete valid_thms;
wenzelm
parents: 26673
diff changeset
   864
fun retrieve_thms pick ctxt (Facts.Fact s) =
16501
fec0cf020bad thmref: Name vs. NameSelection;
wenzelm
parents: 16458
diff changeset
   865
      let
27867
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   866
        val (_, pos) = Syntax.read_token s;
24511
69d270cc7e4f removed obsolete read/cert variations (cf. Syntax.read/check);
wenzelm
parents: 24505
diff changeset
   867
        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
   868
          |> singleton (Variable.polymorphic ctxt);
27867
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   869
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   870
        fun prove_fact th =
33700
768d14a67256 eliminated obsolete thm position tags;
wenzelm
parents: 33644
diff changeset
   871
          Goal.prove ctxt [] [] prop (K (ALLGOALS (fact_tac [th])));
27867
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   872
        val res =
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   873
          (case get_first (try prove_fact) (potential_facts ctxt prop) of
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   874
            SOME res => res
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   875
          | 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
   876
              Syntax.string_of_term ctxt prop))
6e6a159671d4 retrieve_thms: transfer fact position to result;
wenzelm
parents: 27828
diff changeset
   877
      in pick "" [res] end
26687
fda7b0aff798 removed obsolete valid_thms;
wenzelm
parents: 26673
diff changeset
   878
  | retrieve_thms pick ctxt xthmref =
18042
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   879
      let
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   880
        val thy = theory_of ctxt;
26284
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   881
        val local_facts = facts_of ctxt;
26673
cda3df424bad Facts.intern, Facts.extern_table;
wenzelm
parents: 26463
diff changeset
   882
        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
   883
        val name = Facts.name_of_ref thmref;
27821
0ead8c2428f9 read_tyname/const/const_proper: report position;
wenzelm
parents: 27785
diff changeset
   884
        val pos = Facts.pos_of_ref xthmref;
24012
e48e1b4557c8 get_thm etc.: map empty name to dummy_thm;
wenzelm
parents: 23922
diff changeset
   885
        val thms =
e48e1b4557c8 get_thm etc.: map empty name to dummy_thm;
wenzelm
parents: 23922
diff changeset
   886
          if name = "" then [Thm.transfer thy Drule.dummy_thm]
e48e1b4557c8 get_thm etc.: map empty name to dummy_thm;
wenzelm
parents: 23922
diff changeset
   887
          else
26393
42febbed5460 support dynamic facts;
wenzelm
parents: 26361
diff changeset
   888
            (case Facts.lookup (Context.Proof ctxt) local_facts name of
39507
839873937ddd tuned signature of (Context_)Position.report variants;
wenzelm
parents: 39441
diff changeset
   889
              SOME (_, ths) =>
42378
d9fe47d21b41 markup facts via name space;
wenzelm
parents: 42376
diff changeset
   890
                (Context_Position.report ctxt pos
42379
26f64dddf2c6 tuned signature;
wenzelm
parents: 42378
diff changeset
   891
                  (Name_Space.markup (Facts.space_of local_facts) name);
42378
d9fe47d21b41 markup facts via name space;
wenzelm
parents: 42376
diff changeset
   892
                 map (Thm.transfer thy) (Facts.select thmref ths))
39557
fe5722fce758 renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents: 39508
diff changeset
   893
            | NONE => Global_Theory.get_fact (Context.Proof ctxt) thy xthmref);
24012
e48e1b4557c8 get_thm etc.: map empty name to dummy_thm;
wenzelm
parents: 23922
diff changeset
   894
      in pick name thms end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   895
26361
7946f459c6c8 Facts.Named: include position;
wenzelm
parents: 26346
diff changeset
   896
in
26346
17debd2fff8e simplified get_thm(s): back to plain name argument;
wenzelm
parents: 26336
diff changeset
   897
26687
fda7b0aff798 removed obsolete valid_thms;
wenzelm
parents: 26673
diff changeset
   898
val get_fact = retrieve_thms (K I);
fda7b0aff798 removed obsolete valid_thms;
wenzelm
parents: 26673
diff changeset
   899
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
   900
26361
7946f459c6c8 Facts.Named: include position;
wenzelm
parents: 26346
diff changeset
   901
fun get_thms ctxt = get_fact ctxt o Facts.named;
7946f459c6c8 Facts.Named: include position;
wenzelm
parents: 26346
diff changeset
   902
fun get_thm ctxt = get_fact_single ctxt o Facts.named;
7946f459c6c8 Facts.Named: include position;
wenzelm
parents: 26346
diff changeset
   903
7946f459c6c8 Facts.Named: include position;
wenzelm
parents: 26346
diff changeset
   904
end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   905
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   906
26284
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
   907
(* facts *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   908
28082
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
   909
local
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
   910
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28941
diff changeset
   911
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
   912
  | update_thms do_props (b, SOME ths) ctxt = ctxt |> map_facts
42375
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42363
diff changeset
   913
      (Facts.add_local ctxt do_props (naming_of ctxt) (b, ths) #> snd);
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   914
30761
ac7570d80c3d renamed ProofContext.note_thmss_i to ProofContext.note_thmss, eliminated obsolete external version;
wenzelm
parents: 30758
diff changeset
   915
in
ac7570d80c3d renamed ProofContext.note_thmss_i to ProofContext.note_thmss, eliminated obsolete external version;
wenzelm
parents: 30758
diff changeset
   916
ac7570d80c3d renamed ProofContext.note_thmss_i to ProofContext.note_thmss, eliminated obsolete external version;
wenzelm
parents: 30758
diff changeset
   917
fun note_thmss kind = fold_map (fn ((b, more_attrs), raw_facts) => fn ctxt =>
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   918
  let
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28941
diff changeset
   919
    val name = full_name ctxt b;
39557
fe5722fce758 renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents: 39508
diff changeset
   920
    val facts = Global_Theory.name_thmss false name raw_facts;
21443
cc5095d57da4 added stmt mode, which affects naming/indexing of local facts;
wenzelm
parents: 21370
diff changeset
   921
    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
   922
      swap (Library.foldl_map
ac7570d80c3d renamed ProofContext.note_thmss_i to ProofContext.note_thmss, eliminated obsolete external version;
wenzelm
parents: 30758
diff changeset
   923
        (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
   924
    val (res, ctxt') = fold_map app facts ctxt;
39557
fe5722fce758 renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents: 39508
diff changeset
   925
    val thms = Global_Theory.name_thms false false name (flat res);
24388
cf24894b81ff added inner syntax mode, includes former type_mode and is_stmt;
wenzelm
parents: 24371
diff changeset
   926
    val Mode {stmt, ...} = get_mode ctxt;
28861
f53abb0733ee using name bindings
haftmann
parents: 28856
diff changeset
   927
  in ((name, thms), ctxt' |> update_thms stmt (b, SOME thms)) end);
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12704
diff changeset
   928
28417
74e580c6f2b5 put_thms: ContextPosition.set_visible false;
wenzelm
parents: 28411
diff changeset
   929
fun put_thms do_props thms ctxt = ctxt
74e580c6f2b5 put_thms: ContextPosition.set_visible false;
wenzelm
parents: 28411
diff changeset
   930
  |> map_naming (K local_naming)
33383
12d79ece3f7e modernized structure Context_Position;
wenzelm
parents: 33368
diff changeset
   931
  |> Context_Position.set_visible false
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28941
diff changeset
   932
  |> update_thms do_props (apfst Binding.name thms)
33383
12d79ece3f7e modernized structure Context_Position;
wenzelm
parents: 33368
diff changeset
   933
  |> Context_Position.restore_visible ctxt
28417
74e580c6f2b5 put_thms: ContextPosition.set_visible false;
wenzelm
parents: 28411
diff changeset
   934
  |> restore_naming ctxt;
28082
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
   935
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12704
diff changeset
   936
end;
9196
1f6f66fe777a facts: handle multiple lists of arguments;
wenzelm
parents: 9133
diff changeset
   937
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   938
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   939
35680
897740382442 aliases for class/type/const;
wenzelm
parents: 35669
diff changeset
   940
(** basic logical entities **)
17360
fa1f262dbc4e added add_view, export_view (supercedes adhoc view arguments);
wenzelm
parents: 17221
diff changeset
   941
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   942
(* variables *)
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   943
19897
fe661eb3b0e7 ProofContext: moved variable operations to struct Variable;
wenzelm
parents: 19882
diff changeset
   944
fun declare_var (x, opt_T, mx) ctxt =
42287
d98eb048a2e4 discontinued special treatment of structure Mixfix;
wenzelm
parents: 42267
diff changeset
   945
  let val T = (case opt_T of SOME T => T | NONE => Mixfix.mixfixT mx)
20163
08f2833ca433 Sign.infer_types: Name.context;
wenzelm
parents: 20101
diff changeset
   946
  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
   947
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   948
local
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   949
25353
17f04d987f37 removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
wenzelm
parents: 25345
diff changeset
   950
fun prep_vars prep_typ internal =
35129
ed24ba6f69aa discontinued unnamed infix syntax;
wenzelm
parents: 35111
diff changeset
   951
  fold_map (fn (b, raw_T, mx) => fn ctxt =>
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   952
    let
42357
3305f573294e tuned signature, disentangled dependencies;
wenzelm
parents: 42295
diff changeset
   953
      val x = Variable.name b;
42290
b1f544c84040 discontinued special treatment of structure Lexicon;
wenzelm
parents: 42287
diff changeset
   954
      val _ = Lexicon.is_identifier (no_skolem internal x) orelse
35129
ed24ba6f69aa discontinued unnamed infix syntax;
wenzelm
parents: 35111
diff changeset
   955
        error ("Illegal variable name: " ^ quote (Binding.str_of b));
12504
5b46173df7ad export used_types;
wenzelm
parents: 12414
diff changeset
   956
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   957
      fun cond_tvars T =
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   958
        if internal then T
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
   959
        else Type.no_tvars T handle TYPE (msg, _, _) => error msg;
24277
6442fde2daaa added implicit type mode (cf. Type.mode);
wenzelm
parents: 24012
diff changeset
   960
      val opt_T = Option.map (cond_tvars o cert_typ ctxt o prep_typ ctxt) raw_T;
35129
ed24ba6f69aa discontinued unnamed infix syntax;
wenzelm
parents: 35111
diff changeset
   961
      val (_, ctxt') = ctxt |> declare_var (x, opt_T, mx);
ed24ba6f69aa discontinued unnamed infix syntax;
wenzelm
parents: 35111
diff changeset
   962
    in ((b, opt_T, mx), ctxt') end);
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   963
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   964
in
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   965
25353
17f04d987f37 removed unused read_termTs_schematic, read/cert_vars_legacy, add_fixes_legacy;
wenzelm
parents: 25345
diff changeset
   966
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
   967
val cert_vars = prep_vars (K I) true;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   968
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   969
end;
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   970
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   971
21744
b790ce4c21c2 added target_notation/abbrev;
wenzelm
parents: 21728
diff changeset
   972
(* notation *)
b790ce4c21c2 added target_notation/abbrev;
wenzelm
parents: 21728
diff changeset
   973
24949
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24922
diff changeset
   974
local
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24922
diff changeset
   975
35429
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35412
diff changeset
   976
fun type_syntax (Type (c, args), mx) =
42290
b1f544c84040 discontinued special treatment of structure Lexicon;
wenzelm
parents: 42287
diff changeset
   977
      SOME (Local_Syntax.Type, (Lexicon.mark_type c, Mixfix.make_type (length args), mx))
35412
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 35399
diff changeset
   978
  | type_syntax _ = NONE;
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 35399
diff changeset
   979
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 35399
diff changeset
   980
fun const_syntax _ (Free (x, T), mx) = SOME (Local_Syntax.Fixed, (x, T, mx))
24949
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24922
diff changeset
   981
  | const_syntax ctxt (Const (c, _), mx) =
35255
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35211
diff changeset
   982
      (case try (Consts.type_scheme (consts_of ctxt)) c of
42290
b1f544c84040 discontinued special treatment of structure Lexicon;
wenzelm
parents: 42287
diff changeset
   983
        SOME T => SOME (Local_Syntax.Const, (Lexicon.mark_const c, T, mx))
35255
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35211
diff changeset
   984
      | NONE => NONE)
24949
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24922
diff changeset
   985
  | const_syntax _ _ = NONE;
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24922
diff changeset
   986
35412
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 35399
diff changeset
   987
fun gen_notation syntax add mode args ctxt =
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 35399
diff changeset
   988
  ctxt |> map_syntax
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 35399
diff changeset
   989
    (Local_Syntax.update_modesyntax (theory_of ctxt) add mode (map_filter (syntax ctxt) args));
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 35399
diff changeset
   990
24949
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24922
diff changeset
   991
in
21744
b790ce4c21c2 added target_notation/abbrev;
wenzelm
parents: 21728
diff changeset
   992
35412
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 35399
diff changeset
   993
val type_notation = gen_notation (K type_syntax);
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 35399
diff changeset
   994
val notation = gen_notation const_syntax;
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 35399
diff changeset
   995
38328
36afb56ec49e tuned whitespace;
wenzelm
parents: 38238
diff changeset
   996
fun target_type_notation add mode args phi =
35412
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 35399
diff changeset
   997
  let
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 35399
diff changeset
   998
    val args' = args |> map_filter (fn (T, mx) =>
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 35399
diff changeset
   999
      let
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 35399
diff changeset
  1000
        val T' = Morphism.typ phi T;
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 35399
diff changeset
  1001
        val similar = (case (T, T') of (Type (c, _), Type (c', _)) => c = c' | _ => false);
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 35399
diff changeset
  1002
      in if similar then SOME (T', mx) else NONE end);
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 35399
diff changeset
  1003
  in Context.mapping (Sign.type_notation add mode args') (type_notation add mode args') end;
24949
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24922
diff changeset
  1004
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24922
diff changeset
  1005
fun target_notation add mode args phi =
33537
06c87d2c5b5a locale_const/target_notation: uniform use of Term.aconv_untyped;
wenzelm
parents: 33519
diff changeset
  1006
  let
06c87d2c5b5a locale_const/target_notation: uniform use of Term.aconv_untyped;
wenzelm
parents: 33519
diff changeset
  1007
    val args' = args |> map_filter (fn (t, mx) =>
06c87d2c5b5a locale_const/target_notation: uniform use of Term.aconv_untyped;
wenzelm
parents: 33519
diff changeset
  1008
      let val t' = Morphism.term phi t
06c87d2c5b5a locale_const/target_notation: uniform use of Term.aconv_untyped;
wenzelm
parents: 33519
diff changeset
  1009
      in if Term.aconv_untyped (t, t') then SOME (t', mx) else NONE end);
24949
5f00e3532418 generalized notation interface (add or del);
wenzelm
parents: 24922
diff changeset
  1010
  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
  1011
35680
897740382442 aliases for class/type/const;
wenzelm
parents: 35669
diff changeset
  1012
end;
35412
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 35399
diff changeset
  1013
35680
897740382442 aliases for class/type/const;
wenzelm
parents: 35669
diff changeset
  1014
897740382442 aliases for class/type/const;
wenzelm
parents: 35669
diff changeset
  1015
(* aliases *)
897740382442 aliases for class/type/const;
wenzelm
parents: 35669
diff changeset
  1016
36450
62eaaffe6e47 more systematic naming of tsig operations;
wenzelm
parents: 36448
diff changeset
  1017
fun class_alias b c ctxt = (map_tsig o apfst) (Type.class_alias (naming_of ctxt) b c) ctxt;
62eaaffe6e47 more systematic naming of tsig operations;
wenzelm
parents: 36448
diff changeset
  1018
fun type_alias b c ctxt = (map_tsig o apfst) (Type.type_alias (naming_of ctxt) b c) ctxt;
35680
897740382442 aliases for class/type/const;
wenzelm
parents: 35669
diff changeset
  1019
fun const_alias b c ctxt = (map_consts o apfst) (Consts.alias (naming_of ctxt) b c) ctxt;
21744
b790ce4c21c2 added target_notation/abbrev;
wenzelm
parents: 21728
diff changeset
  1020
b790ce4c21c2 added target_notation/abbrev;
wenzelm
parents: 21728
diff changeset
  1021
24767
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
  1022
(* local constants *)
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
  1023
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
  1024
fun add_const_constraint (c, opt_T) ctxt =
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
  1025
  let
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
  1026
    fun prepT raw_T =
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
  1027
      let val T = cert_typ ctxt raw_T
b8fb261ce6df removed redundant const_constraint;
wenzelm
parents: 24752
diff changeset
  1028
      in cert_term ctxt (Const (c, T)); T end;
25039
06ed511837d5 swapped constant components
haftmann
parents: 24982
diff changeset
  1029
  in ctxt |> (map_consts o apfst) (Consts.constrain (c, Option.map prepT opt_T)) end;
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1030
33173
b8ca12f6681a eliminated obsolete tags for types/consts -- now handled via name space, in strongly typed fashion;
wenzelm
parents: 33165
diff changeset
  1031
fun add_abbrev mode (b, raw_t) ctxt =
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1032
  let
24675
2be1253a20d3 removed obsolete set_expand_abbrevs (superceded by mode_abbrev);
wenzelm
parents: 24612
diff changeset
  1033
    val t0 = cert_term (ctxt |> set_mode mode_abbrev) raw_t
30218
cdd82ba2b4fd Binding.str_of;
wenzelm
parents: 30211
diff changeset
  1034
      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
  1035
    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
  1036
    val ((lhs, rhs), consts') = consts_of ctxt
42375
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42363
diff changeset
  1037
      |> Consts.abbreviate ctxt (tsig_of ctxt) (naming_of ctxt) mode (b, t);
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1038
  in
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1039
    ctxt
25039
06ed511837d5 swapped constant components
haftmann
parents: 24982
diff changeset
  1040
    |> (map_consts o apfst) (K consts')
21803
bcef7eb50551 notation: Term.equiv_types;
wenzelm
parents: 21772
diff changeset
  1041
    |> Variable.declare_term rhs
bcef7eb50551 notation: Term.equiv_types;
wenzelm
parents: 21772
diff changeset
  1042
    |> pair (lhs, rhs)
21704
f4fe6e5a3ee6 simplified add_abbrev -- single argument;
wenzelm
parents: 21696
diff changeset
  1043
  end;
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1044
25052
a014d544f54d added revert_abbrev;
wenzelm
parents: 25039
diff changeset
  1045
fun revert_abbrev mode c = (map_consts o apfst) (Consts.revert_abbrev mode c);
a014d544f54d added revert_abbrev;
wenzelm
parents: 25039
diff changeset
  1046
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1047
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1048
(* fixes *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1049
30763
6976521b4263 renamed ProofContext.add_fixes_i to ProofContext.add_fixes, eliminated obsolete external version;
wenzelm
parents: 30761
diff changeset
  1050
fun add_fixes raw_vars ctxt =
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1051
  let
30763
6976521b4263 renamed ProofContext.add_fixes_i to ProofContext.add_fixes, eliminated obsolete external version;
wenzelm
parents: 30761
diff changeset
  1052
    val (vars, _) = cert_vars raw_vars ctxt;
42357
3305f573294e tuned signature, disentangled dependencies;
wenzelm
parents: 42295
diff changeset
  1053
    val (xs', ctxt') = Variable.add_fixes (map (Variable.name o #1) vars) ctxt;
28082
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
  1054
    val ctxt'' =
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
  1055
      ctxt'
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
  1056
      |> fold_map declare_var (map2 (fn x' => fn (_, T, mx) => (x', T, mx)) xs' vars)
36503
bd4e2821482a allow mixfix syntax for fixes within a proof body -- should now work thanks to fully authentic syntax;
wenzelm
parents: 36451
diff changeset
  1057
      |-> (map_syntax o Local_Syntax.add_syntax (theory_of ctxt) o map (pair Local_Syntax.Fixed));
28861
f53abb0733ee using name bindings
haftmann
parents: 28856
diff changeset
  1058
    val _ = (vars ~~ xs') |> List.app (fn ((b, _, _), x') =>
39507
839873937ddd tuned signature of (Context_)Position.report variants;
wenzelm
parents: 39441
diff changeset
  1059
      Context_Position.report ctxt (Binding.pos_of b) (Markup.fixed_decl x'));
28082
37350f301128 explicit type Name.binding for higher-specification elements;
wenzelm
parents: 28017
diff changeset
  1060
  in (xs', ctxt'') end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1061
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1062
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1063
(* fixes vs. frees *)
12016
425289df84d3 fix_frees;
wenzelm
parents: 12008
diff changeset
  1064
32784
1a5dde5079ac eliminated redundant bindings;
wenzelm
parents: 32738
diff changeset
  1065
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
  1066
  ((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
  1067
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1068
fun bind_fixes xs ctxt =
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1069
  let
30763
6976521b4263 renamed ProofContext.add_fixes_i to ProofContext.add_fixes, eliminated obsolete external version;
wenzelm
parents: 30761
diff changeset
  1070
    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
  1071
    fun bind (t as Free (x, T)) =
18340
3fdff270aa04 removed fixed_tr: now handled in syntax module;
wenzelm
parents: 18310
diff changeset
  1072
          if member (op =) xs x then
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
  1073
            (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
  1074
          else t
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1075
      | bind (t $ u) = bind t $ bind u
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1076
      | 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
  1077
      | bind a = a;
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1078
  in (bind, ctxt') end;
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1079
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1080
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1081
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1082
(** assumptions **)
18187
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
  1083
20209
974d98969ba6 moved pprint functions to Isar/proof_display.ML;
wenzelm
parents: 20163
diff changeset
  1084
local
974d98969ba6 moved pprint functions to Isar/proof_display.ML;
wenzelm
parents: 20163
diff changeset
  1085
974d98969ba6 moved pprint functions to Isar/proof_display.ML;
wenzelm
parents: 20163
diff changeset
  1086
fun gen_assms prepp exp args ctxt =
974d98969ba6 moved pprint functions to Isar/proof_display.ML;
wenzelm
parents: 20163
diff changeset
  1087
  let
20234
7e0693474bcd added legacy_pretty_thm (with fall-back on ProtoPure.thy);
wenzelm
parents: 20209
diff changeset
  1088
    val cert = Thm.cterm_of (theory_of ctxt);
20209
974d98969ba6 moved pprint functions to Isar/proof_display.ML;
wenzelm
parents: 20163
diff changeset
  1089
    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
  1090
    val _ = Variable.warn_extra_tfrees ctxt ctxt1;
7e0693474bcd added legacy_pretty_thm (with fall-back on ProtoPure.thy);
wenzelm
parents: 20209
diff changeset
  1091
    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
  1092
  in
7e0693474bcd added legacy_pretty_thm (with fall-back on ProtoPure.thy);
wenzelm
parents: 20209
diff changeset
  1093
    ctxt2
7e0693474bcd added legacy_pretty_thm (with fall-back on ProtoPure.thy);
wenzelm
parents: 20209
diff changeset
  1094
    |> auto_bind_facts (flat propss)
33644
5266a72e0889 eliminated slightly odd (unused) "axiom" and "assumption" -- collapsed to unspecific "";
wenzelm
parents: 33537
diff changeset
  1095
    |> note_thmss "" (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
  1096
  end;
20209
974d98969ba6 moved pprint functions to Isar/proof_display.ML;
wenzelm
parents: 20163
diff changeset
  1097
974d98969ba6 moved pprint functions to Isar/proof_display.ML;
wenzelm
parents: 20163
diff changeset
  1098
in
974d98969ba6 moved pprint functions to Isar/proof_display.ML;
wenzelm
parents: 20163
diff changeset
  1099
974d98969ba6 moved pprint functions to Isar/proof_display.ML;
wenzelm
parents: 20163
diff changeset
  1100
val add_assms = gen_assms (apsnd #1 o bind_propp);
974d98969ba6 moved pprint functions to Isar/proof_display.ML;
wenzelm
parents: 20163
diff changeset
  1101
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
  1102
974d98969ba6 moved pprint functions to Isar/proof_display.ML;
wenzelm
parents: 20163
diff changeset
  1103
end;
974d98969ba6 moved pprint functions to Isar/proof_display.ML;
wenzelm
parents: 20163
diff changeset
  1104
974d98969ba6 moved pprint functions to Isar/proof_display.ML;
wenzelm
parents: 20163
diff changeset
  1105
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1106
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1107
(** cases **)
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1108
16147
59177d5bcb6f renamed cond_extern to extern;
wenzelm
parents: 16031
diff changeset
  1109
local
59177d5bcb6f renamed cond_extern to extern;
wenzelm
parents: 16031
diff changeset
  1110
16668
fdb4992cf1d2 avoid polyeq;
wenzelm
parents: 16540
diff changeset
  1111
fun rem_case name = remove (fn (x: string, (y, _)) => x = y) name;
16147
59177d5bcb6f renamed cond_extern to extern;
wenzelm
parents: 16031
diff changeset
  1112
18476
49dde7b7b14a cases: main is_proper flag;
wenzelm
parents: 18428
diff changeset
  1113
fun add_case _ ("", _) cases = cases
49dde7b7b14a cases: main is_proper flag;
wenzelm
parents: 18428
diff changeset
  1114
  | add_case _ (name, NONE) cases = rem_case name cases
49dde7b7b14a cases: main is_proper flag;
wenzelm
parents: 18428
diff changeset
  1115
  | 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
  1116
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
  1117
fun prep_case name fxs c =
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1118
  let
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1119
    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
  1120
      | replace [] ys = ys
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
  1121
      | replace (_ :: _) [] = error ("Too many parameters for case " ^ quote name);
33368
b1cf34f1855c modernized structure Rule_Cases;
wenzelm
parents: 33224
diff changeset
  1122
    val Rule_Cases.Case {fixes, assumes, binds, cases} = c;
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1123
    val fixes' = replace fxs fixes;
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1124
    val binds' = map drop_schematic binds;
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1125
  in
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1126
    if null (fold (Term.add_tvarsT o snd) fixes []) andalso
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1127
      null (fold (fold Term.add_vars o snd) assumes []) then
33368
b1cf34f1855c modernized structure Rule_Cases;
wenzelm
parents: 33224
diff changeset
  1128
        Rule_Cases.Case {fixes = fixes', assumes = assumes, binds = binds', cases = cases}
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
  1129
    else error ("Illegal schematic variable(s) in case " ^ quote name)
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1130
  end;
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1131
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1132
fun fix (x, T) ctxt =
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1133
  let
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1134
    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
  1135
    val t = bind (Free (x, T));
20163
08f2833ca433 Sign.infer_types: Name.context;
wenzelm
parents: 20101
diff changeset
  1136
  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
  1137
16147
59177d5bcb6f renamed cond_extern to extern;
wenzelm
parents: 16031
diff changeset
  1138
in
59177d5bcb6f renamed cond_extern to extern;
wenzelm
parents: 16031
diff changeset
  1139
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1140
fun add_cases is_proper = map_cases o fold (add_case is_proper);
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1141
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1142
fun case_result c ctxt =
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1143
  let
33368
b1cf34f1855c modernized structure Rule_Cases;
wenzelm
parents: 33224
diff changeset
  1144
    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
  1145
    val (ts, ctxt') = ctxt |> fold_map fix fixes;
33368
b1cf34f1855c modernized structure Rule_Cases;
wenzelm
parents: 33224
diff changeset
  1146
    val Rule_Cases.Case {assumes, binds, cases, ...} = Rule_Cases.apply ts c;
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1147
  in
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1148
    ctxt'
30757
2d2076300185 replaced add_binds(_i) by bind_terms -- internal version only;
wenzelm
parents: 30723
diff changeset
  1149
    |> bind_terms (map drop_schematic binds)
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1150
    |> add_cases true (map (apsnd SOME) cases)
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1151
    |> pair (assumes, (binds, cases))
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1152
  end;
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1153
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1154
val apply_case = apfst fst oo case_result;
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1155
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
  1156
fun get_case ctxt name xs =
17184
3d80209e9a53 use AList operations;
wenzelm
parents: 17072
diff changeset
  1157
  (case AList.lookup (op =) (cases_of ctxt) name of
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
  1158
    NONE => error ("Unknown case: " ^ quote name)
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
  1159
  | SOME (c, _) => prep_case name xs c);
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1160
16147
59177d5bcb6f renamed cond_extern to extern;
wenzelm
parents: 16031
diff changeset
  1161
end;
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1162
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1163
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1164
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1165
(** print context information **)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1166
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1167
(* local syntax *)
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1168
12093
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1169
val print_syntax = Syntax.print_syntax o syn_of;
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1170
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1171
21728
906649272ba0 added read/pretty_term_abbrev, print_abbrevs;
wenzelm
parents: 21704
diff changeset
  1172
(* abbreviations *)
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1173
21728
906649272ba0 added read/pretty_term_abbrev, print_abbrevs;
wenzelm
parents: 21704
diff changeset
  1174
fun pretty_abbrevs show_globals ctxt =
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1175
  let
25052
a014d544f54d added revert_abbrev;
wenzelm
parents: 25039
diff changeset
  1176
    val ((space, consts), (_, globals)) =
19033
24e251657e56 consts: maintain thy version for efficient transfer;
wenzelm
parents: 19019
diff changeset
  1177
      pairself (#constants o Consts.dest) (#consts (rep_context ctxt));
21803
bcef7eb50551 notation: Term.equiv_types;
wenzelm
parents: 21772
diff changeset
  1178
    fun add_abbr (_, (_, NONE)) = I
25406
1aa7927a6759 simplified Consts.dest;
wenzelm
parents: 25353
diff changeset
  1179
      | add_abbr (c, (T, SOME t)) =
21728
906649272ba0 added read/pretty_term_abbrev, print_abbrevs;
wenzelm
parents: 21704
diff changeset
  1180
          if not show_globals andalso Symtab.defined globals c then I
906649272ba0 added read/pretty_term_abbrev, print_abbrevs;
wenzelm
parents: 21704
diff changeset
  1181
          else cons (c, Logic.mk_equals (Const (c, T), t));
42358
b47d41d9f4b5 Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
wenzelm
parents: 42357
diff changeset
  1182
    val abbrevs =
b47d41d9f4b5 Name_Space: proper configuration options long_names, short_names, unique_names instead of former unsynchronized references;
wenzelm
parents: 42357
diff changeset
  1183
      Name_Space.extern_table ctxt (space, Symtab.make (Symtab.fold add_abbr consts []));
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1184
  in
35141
182f27a8716c simplified meaning of ProofContext.verbose;
wenzelm
parents: 35139
diff changeset
  1185
    if null abbrevs then []
21728
906649272ba0 added read/pretty_term_abbrev, print_abbrevs;
wenzelm
parents: 21704
diff changeset
  1186
    else [Pretty.big_list "abbreviations:" (map (pretty_term_abbrev ctxt o #2) abbrevs)]
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1187
  end;
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1188
21728
906649272ba0 added read/pretty_term_abbrev, print_abbrevs;
wenzelm
parents: 21704
diff changeset
  1189
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
  1190
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1191
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1192
(* term bindings *)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1193
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
  1194
fun pretty_binds ctxt =
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1195
  let
19897
fe661eb3b0e7 ProofContext: moved variable operations to struct Variable;
wenzelm
parents: 19882
diff changeset
  1196
    val binds = Variable.binds_of ctxt;
21728
906649272ba0 added read/pretty_term_abbrev, print_abbrevs;
wenzelm
parents: 21704
diff changeset
  1197
    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
  1198
  in
35141
182f27a8716c simplified meaning of ProofContext.verbose;
wenzelm
parents: 35139
diff changeset
  1199
    if Vartab.is_empty binds then []
15758
07e382399a96 binds/thms: do not store options, but delete from table;
wenzelm
parents: 15750
diff changeset
  1200
    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
  1201
  end;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1202
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1203
val print_binds = Pretty.writeln o Pretty.chunks o pretty_binds;
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
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1206
(* local theorems *)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1207
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
  1208
fun pretty_lthms ctxt =
20012
b62836400a33 print_lthms: include unnamed facts from index;
wenzelm
parents: 20008
diff changeset
  1209
  let
26284
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
  1210
    val local_facts = facts_of ctxt;
533dcb120a8e replaced obsolete FactIndex.T by Facts.T;
wenzelm
parents: 26268
diff changeset
  1211
    val props = Facts.props local_facts;
26673
cda3df424bad Facts.intern, Facts.extern_table;
wenzelm
parents: 26463
diff changeset
  1212
    val facts =
35141
182f27a8716c simplified meaning of ProofContext.verbose;
wenzelm
parents: 35139
diff changeset
  1213
      (if null props then [] else [("<unnamed>", props)]) @
28212
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
  1214
      Facts.dest_static [] local_facts;
20012
b62836400a33 print_lthms: include unnamed facts from index;
wenzelm
parents: 20008
diff changeset
  1215
  in
35141
182f27a8716c simplified meaning of ProofContext.verbose;
wenzelm
parents: 35139
diff changeset
  1216
    if null facts then []
28212
44831b583999 added extern_fact (local or global);
wenzelm
parents: 28209
diff changeset
  1217
    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
  1218
  end;
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1219
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1220
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
  1221
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1222
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1223
(* local contexts *)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1224
26722
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1225
local
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1226
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1227
fun pretty_case (name, (fixes, ((asms, (lets, cs)), ctxt))) =
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1228
  let
24922
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
  1229
    val prt_term = Syntax.pretty_term ctxt;
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1230
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1231
    fun prt_let (xi, t) = Pretty.block
10818
37fa05a12459 tuned output;
wenzelm
parents: 10810
diff changeset
  1232
      [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
  1233
        Pretty.quote (prt_term t)];
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1234
13425
119ae829ad9b support for split assumptions in cases (hyps vs. prems);
wenzelm
parents: 13415
diff changeset
  1235
    fun prt_asm (a, ts) = Pretty.block (Pretty.breaks
119ae829ad9b support for split assumptions in cases (hyps vs. prems);
wenzelm
parents: 13415
diff changeset
  1236
      ((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
  1237
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1238
    fun prt_sect _ _ _ [] = []
35141
182f27a8716c simplified meaning of ProofContext.verbose;
wenzelm
parents: 35139
diff changeset
  1239
      | prt_sect s sep prt xs =
182f27a8716c simplified meaning of ProofContext.verbose;
wenzelm
parents: 35139
diff changeset
  1240
          [Pretty.block (Pretty.breaks (Pretty.str s ::
182f27a8716c simplified meaning of ProofContext.verbose;
wenzelm
parents: 35139
diff changeset
  1241
            flat (separate sep (map (single o prt) xs))))];
26722
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1242
  in
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1243
    Pretty.block (Pretty.fbreaks
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1244
      (Pretty.str (name ^ ":") ::
11915
df030220a2a8 print fixed names as plain strings;
wenzelm
parents: 11816
diff changeset
  1245
        prt_sect "fix" [] (Pretty.str o fst) fixes @
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1246
        prt_sect "let" [Pretty.str "and"] prt_let
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19422
diff changeset
  1247
          (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
  1248
        (if forall (null o #2) asms then []
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1249
          else prt_sect "assume" [Pretty.str "and"] prt_asm asms) @
26722
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1250
        prt_sect "subcases:" [] (Pretty.str o fst) cs))
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1251
  end;
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
  1252
26722
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1253
in
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1254
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1255
fun pretty_cases ctxt =
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1256
  let
18476
49dde7b7b14a cases: main is_proper flag;
wenzelm
parents: 18428
diff changeset
  1257
    fun add_case (_, (_, false)) = I
33368
b1cf34f1855c modernized structure Rule_Cases;
wenzelm
parents: 33224
diff changeset
  1258
      | add_case (name, (c as Rule_Cases.Case {fixes, ...}, true)) =
26722
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1259
          cons (name, (fixes, case_result c ctxt));
18476
49dde7b7b14a cases: main is_proper flag;
wenzelm
parents: 18428
diff changeset
  1260
    val cases = fold add_case (cases_of ctxt) [];
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1261
  in
35141
182f27a8716c simplified meaning of ProofContext.verbose;
wenzelm
parents: 35139
diff changeset
  1262
    if null cases then []
26722
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1263
    else [Pretty.big_list "cases:" (map pretty_case cases)]
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1264
  end;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1265
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1266
val print_cases = Pretty.writeln o Pretty.chunks o pretty_cases;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1267
26722
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1268
end;
a239220108a5 print_cases: proper context for revert_skolem;
wenzelm
parents: 26717
diff changeset
  1269
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1270
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1271
(* core context *)
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1272
35141
182f27a8716c simplified meaning of ProofContext.verbose;
wenzelm
parents: 35139
diff changeset
  1273
val debug = Unsynchronized.ref false;
182f27a8716c simplified meaning of ProofContext.verbose;
wenzelm
parents: 35139
diff changeset
  1274
val verbose = Unsynchronized.ref false;
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1275
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1276
fun pretty_ctxt ctxt =
39165
e790a5560834 discontinued obsolete ProofContext.prems_limit;
wenzelm
parents: 39136
diff changeset
  1277
  if not (! debug) then []
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1278
  else
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1279
    let
24922
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
  1280
      val prt_term = Syntax.pretty_term ctxt;
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1281
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1282
      (*structures*)
35429
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35412
diff changeset
  1283
      val {structs, ...} = Local_Syntax.idents_of (syntax_of ctxt);
35139
e1a226a191b6 misc tuning and simplification;
wenzelm
parents: 35129
diff changeset
  1284
      val prt_structs =
e1a226a191b6 misc tuning and simplification;
wenzelm
parents: 35129
diff changeset
  1285
        if null structs then []
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1286
        else [Pretty.block (Pretty.str "structures:" :: Pretty.brk 1 ::
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1287
          Pretty.commas (map Pretty.str structs))];
12093
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1288
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1289
      (*fixes*)
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1290
      fun prt_fix (x, x') =
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1291
        if x = x' then Pretty.str x
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1292
        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
  1293
      val fixes =
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1294
        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
  1295
          (Variable.fixes_of ctxt));
35139
e1a226a191b6 misc tuning and simplification;
wenzelm
parents: 35129
diff changeset
  1296
      val prt_fixes =
e1a226a191b6 misc tuning and simplification;
wenzelm
parents: 35129
diff changeset
  1297
        if null fixes then []
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1298
        else [Pretty.block (Pretty.str "fixed variables:" :: Pretty.brk 1 ::
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1299
          Pretty.commas (map prt_fix fixes))];
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1300
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1301
      (*prems*)
30473
e0b66c11e7e4 Assumption.all_prems_of, Assumption.all_assms_of;
wenzelm
parents: 30469
diff changeset
  1302
      val prems = Assumption.all_prems_of ctxt;
35139
e1a226a191b6 misc tuning and simplification;
wenzelm
parents: 35129
diff changeset
  1303
      val prt_prems =
e1a226a191b6 misc tuning and simplification;
wenzelm
parents: 35129
diff changeset
  1304
        if null prems then []
39165
e790a5560834 discontinued obsolete ProofContext.prems_limit;
wenzelm
parents: 39136
diff changeset
  1305
        else [Pretty.big_list "prems:" (map (Display.pretty_thm ctxt) prems)];
20310
6cb47e95a74b normalized Proof.context/method type aliases;
wenzelm
parents: 20253
diff changeset
  1306
    in prt_structs @ prt_fixes @ prt_prems end;
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1307
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1308
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1309
(* main context *)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1310
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
  1311
fun pretty_context ctxt =
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1312
  let
35141
182f27a8716c simplified meaning of ProofContext.verbose;
wenzelm
parents: 35139
diff changeset
  1313
    val is_verbose = ! verbose;
182f27a8716c simplified meaning of ProofContext.verbose;
wenzelm
parents: 35139
diff changeset
  1314
    fun verb f x = if is_verbose then f (x ()) else [];
182f27a8716c simplified meaning of ProofContext.verbose;
wenzelm
parents: 35139
diff changeset
  1315
24922
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
  1316
    val prt_term = Syntax.pretty_term ctxt;
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
  1317
    val prt_typ = Syntax.pretty_typ ctxt;
577ec55380d8 generic Syntax.pretty/string_of operations;
wenzelm
parents: 24812
diff changeset
  1318
    val prt_sort = Syntax.pretty_sort ctxt;
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1319
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1320
    (*theory*)
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1321
    val pretty_thy = Pretty.block
17384
wenzelm
parents: 17360
diff changeset
  1322
      [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
  1323
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1324
    (*defaults*)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1325
    fun prt_atom prt prtT (x, X) = Pretty.block
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1326
      [prt x, Pretty.str " ::", Pretty.brk 1, prtT X];
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1327
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1328
    fun prt_var (x, ~1) = prt_term (Syntax.free x)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1329
      | prt_var xi = prt_term (Syntax.var xi);
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1330
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1331
    fun prt_varT (x, ~1) = prt_typ (TFree (x, []))
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1332
      | prt_varT xi = prt_typ (TVar (xi, []));
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1333
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1334
    val prt_defT = prt_atom prt_var prt_typ;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1335
    val prt_defS = prt_atom prt_varT prt_sort;
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
  1336
20163
08f2833ca433 Sign.infer_types: Name.context;
wenzelm
parents: 20101
diff changeset
  1337
    val (types, sorts) = Variable.constraints_of ctxt;
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1338
  in
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1339
    verb single (K pretty_thy) @
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1340
    pretty_ctxt ctxt @
21728
906649272ba0 added read/pretty_term_abbrev, print_abbrevs;
wenzelm
parents: 21704
diff changeset
  1341
    verb (pretty_abbrevs false) (K ctxt) @
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1342
    verb pretty_binds (K ctxt) @
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1343
    verb pretty_lthms (K ctxt) @
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1344
    verb pretty_cases (K ctxt) @
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1345
    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
  1346
    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
  1347
  end;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1348
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1349
end;
35429
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35412
diff changeset
  1350
42360
da8817d01e7c modernized structure Proof_Context;
wenzelm
parents: 42359
diff changeset
  1351
val show_abbrevs = Proof_Context.show_abbrevs;
40879
ca132ef44944 configuration option "show_abbrevs" supersedes print mode "no_abbrevs", with inverted meaning;
wenzelm
parents: 39557
diff changeset
  1352