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