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