src/Pure/Isar/proof_context.ML
author wenzelm
Tue, 11 Apr 2006 16:00:08 +0200
changeset 19411 8e207f560240
parent 19387 6af442fa80c3
child 19422 bba26da0f227
permissions -rw-r--r--
export pretty_classrel/arity;
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
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
     7
elements, polymorphic abbreviations, and extra-logical data.
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
17756
d4a35f82fbb4 minor tweaks for Poplog/ML;
wenzelm
parents: 17496
diff changeset
    12
  type context (*= Context.proof*)
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
    13
  type export
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    14
  val theory_of: context -> theory
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
    15
  val init: theory -> context
19387
6af442fa80c3 added full_name;
wenzelm
parents: 19371
diff changeset
    16
  val full_name: context -> bstring -> string
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
    17
  val set_body: bool -> context -> context
18743
7ff2934480c9 added restore_body;
wenzelm
parents: 18728
diff changeset
    18
  val restore_body: context -> context -> context
17451
cfa8b1ebfc9a added auto_fix (from proof.ML);
wenzelm
parents: 17412
diff changeset
    19
  val assms_of: context -> term list
7557
1b977741f530 export prems_of;
wenzelm
parents: 7505
diff changeset
    20
  val prems_of: context -> thm list
16031
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
    21
  val fact_index_of: context -> FactIndex.T
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
    22
  val is_fixed: context -> string -> bool
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
    23
  val is_known: context -> string -> bool
17072
501c28052aea added transfer;
wenzelm
parents: 16992
diff changeset
    24
  val transfer: theory -> context -> context
19019
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
    25
  val map_theory: (theory -> theory) -> context -> context
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
    26
  val pretty_term: context -> term -> Pretty.T
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
    27
  val pretty_typ: context -> typ -> Pretty.T
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
    28
  val pretty_sort: context -> sort -> Pretty.T
19411
8e207f560240 export pretty_classrel/arity;
wenzelm
parents: 19387
diff changeset
    29
  val pretty_classrel: context -> class list -> Pretty.T
8e207f560240 export pretty_classrel/arity;
wenzelm
parents: 19387
diff changeset
    30
  val pretty_arity: context -> arity -> Pretty.T
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
    31
  val pp: context -> Pretty.pp
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
    32
  val pretty_thm: context -> thm -> Pretty.T
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
    33
  val pretty_thms: context -> thm list -> Pretty.T
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
    34
  val pretty_fact: context -> string * thm list -> Pretty.T
17072
501c28052aea added transfer;
wenzelm
parents: 16992
diff changeset
    35
  val pretty_proof: context -> Proofterm.proof -> Pretty.T
501c28052aea added transfer;
wenzelm
parents: 16992
diff changeset
    36
  val pretty_proof_of: context -> bool -> thm -> Pretty.T
17360
fa1f262dbc4e added add_view, export_view (supercedes adhoc view arguments);
wenzelm
parents: 17221
diff changeset
    37
  val string_of_typ: context -> typ -> string
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
    38
  val string_of_term: context -> term -> string
17860
b4cf247ea0d2 note_thmss, read/cert_vars etc.: natural argument order;
wenzelm
parents: 17756
diff changeset
    39
  val string_of_thm: context -> thm -> string
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
    40
  val used_types: context -> string list
12414
61e1681b0b5d added default_type;
wenzelm
parents: 12309
diff changeset
    41
  val default_type: context -> string -> typ option
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    42
  val read_typ: context -> string -> typ
16348
7504fe04170f renamed extern to extern_thm;
wenzelm
parents: 16147
diff changeset
    43
  val read_typ_syntax: context -> string -> typ
7504fe04170f renamed extern to extern_thm;
wenzelm
parents: 16147
diff changeset
    44
  val read_typ_abbrev: context -> string -> typ
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    45
  val cert_typ: context -> typ -> typ
16348
7504fe04170f renamed extern to extern_thm;
wenzelm
parents: 16147
diff changeset
    46
  val cert_typ_syntax: context -> typ -> typ
7504fe04170f renamed extern to extern_thm;
wenzelm
parents: 16147
diff changeset
    47
  val cert_typ_abbrev: context -> typ -> typ
10583
f2d9f4fd370b export get_skolem;
wenzelm
parents: 10554
diff changeset
    48
  val get_skolem: context -> string -> string
18255
5ef79b75a002 revert_skolem: fall back on Syntax.deskolem;
wenzelm
parents: 18211
diff changeset
    49
  val revert_skolem: context -> string -> string
9133
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
    50
  val extern_skolem: context -> term -> term
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
    51
  val read_termTs: context -> (string -> bool) -> (indexname -> typ option)
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
    52
    -> (indexname -> sort option) -> string list -> (string * typ) list
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
    53
    -> term list * (indexname * typ) list
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
    54
  val read_termTs_schematic: context -> (string -> bool) -> (indexname -> typ option)
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
    55
    -> (indexname -> sort option) -> string list -> (string * typ) list
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
    56
    -> term list * (indexname * typ) list
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
    57
  val read_term_legacy: context -> string -> term
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    58
  val read_term: context -> string -> term
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    59
  val read_prop: context -> string -> term
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
    60
  val read_prop_schematic: context -> string -> term
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
    61
  val read_term_pats: typ -> context -> string list -> term list
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
    62
  val read_prop_pats: context -> string list -> term list
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    63
  val cert_term: context -> term -> term
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    64
  val cert_prop: context -> term -> term
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
    65
  val cert_term_pats: typ -> context -> term list -> term list
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
    66
  val cert_prop_pats: context -> term list -> term list
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
    67
  val declare_term: term -> context -> context
18770
434f660d3068 renamed inferred_type to inferred_param;
wenzelm
parents: 18743
diff changeset
    68
  val infer_type: context -> string -> typ
434f660d3068 renamed inferred_type to inferred_param;
wenzelm
parents: 18743
diff changeset
    69
  val inferred_param: string -> context -> (string * typ) * context
434f660d3068 renamed inferred_type to inferred_param;
wenzelm
parents: 18743
diff changeset
    70
  val inferred_fixes: context -> (string * typ) list * context
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    71
  val read_tyname: context -> string -> typ
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
    72
  val read_const: context -> string -> term
19019
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
    73
  val rename_frees: context -> term list -> (string * 'a) list -> (string * 'a) list
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
    74
  val warn_extra_tfrees: context -> context -> context
12550
32843ad8160a generalize type variables properly: start with occurrences in objects
wenzelm
parents: 12530
diff changeset
    75
  val generalize: context -> context -> term list -> term list
19270
d928b5468c43 added monomorphic;
wenzelm
parents: 19143
diff changeset
    76
  val monomorphic: context -> term list -> term list
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
    77
  val polymorphic: context -> term list -> term list
19270
d928b5468c43 added monomorphic;
wenzelm
parents: 19143
diff changeset
    78
  val hidden_polymorphism: term -> typ -> (indexname * sort) list
18785
5ae1f1c1b764 renamed export to export_standard (again!), because it includes Drule.local_standard';
wenzelm
parents: 18770
diff changeset
    79
  val export_standard: context -> context -> thm -> thm
18042
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
    80
  val exports: context -> context -> thm -> thm Seq.seq
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
    81
  val goal_exports: context -> context -> thm -> thm Seq.seq
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
    82
  val drop_schematic: indexname * term option -> indexname * term option
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
    83
  val add_binds: (indexname * string option) list -> context -> context
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
    84
  val add_binds_i: (indexname * term option) list -> context -> context
12147
64e69a8a945f adapted auto_bind_goal, auto_bind_facts;
wenzelm
parents: 12130
diff changeset
    85
  val auto_bind_goal: term list -> context -> context
64e69a8a945f adapted auto_bind_goal, auto_bind_facts;
wenzelm
parents: 12130
diff changeset
    86
  val auto_bind_facts: term list -> context -> context
18310
b00c9120f6bd match_bind(_i): return terms;
wenzelm
parents: 18255
diff changeset
    87
  val match_bind: bool -> (string list * string) list -> context -> term list * context
b00c9120f6bd match_bind(_i): return terms;
wenzelm
parents: 18255
diff changeset
    88
  val match_bind_i: bool -> (term list * term) list -> context -> term list * context
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
    89
  val read_propp: context * (string * (string list * string list)) list list
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
    90
    -> context * (term * (term list * term list)) list list
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
    91
  val cert_propp: context * (term * (term list * term list)) list list
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
    92
    -> context * (term * (term list * term list)) list list
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
    93
  val read_propp_schematic: context * (string * (string list * string list)) list list
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
    94
    -> context * (term * (term list * term list)) list list
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
    95
  val cert_propp_schematic: context * (term * (term list * term list)) list list
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
    96
    -> context * (term * (term list * term list)) list list
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
    97
  val bind_propp: context * (string * (string list * string list)) list list
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
    98
    -> context * (term list list * (context -> context))
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
    99
  val bind_propp_i: context * (term * (term list * term list)) list list
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   100
    -> context * (term list list * (context -> context))
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   101
  val bind_propp_schematic: context * (string * (string list * string list)) list list
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   102
    -> context * (term list list * (context -> context))
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   103
  val bind_propp_schematic_i: context * (term * (term list * term list)) list list
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   104
    -> context * (term list list * (context -> context))
18042
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   105
  val fact_tac: thm list -> int -> tactic
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   106
  val some_fact_tac: context -> int -> tactic
15456
956d6acacf89 Specific theorems in a named list of theorems can now be referred to
berghofe
parents: 15452
diff changeset
   107
  val get_thm: context -> thmref -> thm
956d6acacf89 Specific theorems in a named list of theorems can now be referred to
berghofe
parents: 15452
diff changeset
   108
  val get_thm_closure: context -> thmref -> thm
956d6acacf89 Specific theorems in a named list of theorems can now be referred to
berghofe
parents: 15452
diff changeset
   109
  val get_thms: context -> thmref -> thm list
956d6acacf89 Specific theorems in a named list of theorems can now be referred to
berghofe
parents: 15452
diff changeset
   110
  val get_thms_closure: context -> thmref -> thm list
16031
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
   111
  val valid_thms: context -> string * thm list -> bool
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
   112
  val lthms_containing: context -> FactIndex.spec -> (string * thm list) list
16348
7504fe04170f renamed extern to extern_thm;
wenzelm
parents: 16147
diff changeset
   113
  val extern_thm: context -> string -> xstring
19019
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
   114
  val no_base_names: context -> context
16147
59177d5bcb6f renamed cond_extern to extern;
wenzelm
parents: 16031
diff changeset
   115
  val qualified_names: context -> context
19062
0fd52e819c24 replaced qualified_force_prefix to sticky_prefix;
wenzelm
parents: 19033
diff changeset
   116
  val sticky_prefix: string -> context -> context
16147
59177d5bcb6f renamed cond_extern to extern;
wenzelm
parents: 16031
diff changeset
   117
  val restore_naming: context -> context -> context
13425
119ae829ad9b support for split assumptions in cases (hyps vs. prems);
wenzelm
parents: 13415
diff changeset
   118
  val hide_thms: bool -> string list -> context -> context
19079
9a7678a0736d added put_thms_internal: local_naming, no fact index;
wenzelm
parents: 19062
diff changeset
   119
  val put_thms: bool -> string * thm list option -> context -> context
9a7678a0736d added put_thms_internal: local_naming, no fact index;
wenzelm
parents: 19062
diff changeset
   120
  val put_thms_internal: string * thm list option -> context -> context
14564
3667b4616e9a renamed have_thms to note_thms;
wenzelm
parents: 14508
diff changeset
   121
  val note_thmss:
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   122
    ((bstring * attribute list) * (thmref * attribute list) list) list ->
17860
b4cf247ea0d2 note_thmss, read/cert_vars etc.: natural argument order;
wenzelm
parents: 17756
diff changeset
   123
      context -> (bstring * thm list) list * context
14564
3667b4616e9a renamed have_thms to note_thms;
wenzelm
parents: 14508
diff changeset
   124
  val note_thmss_i:
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   125
    ((bstring * attribute list) * (thm list * attribute list) list) list ->
17860
b4cf247ea0d2 note_thmss, read/cert_vars etc.: natural argument order;
wenzelm
parents: 17756
diff changeset
   126
      context -> (bstring * thm list) list * context
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   127
  val read_vars: (string * string option * mixfix) list -> context ->
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   128
    (string * typ option * mixfix) list * context
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   129
  val cert_vars: (string * typ option * mixfix) list -> context ->
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   130
    (string * typ option * mixfix) list * context
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   131
  val read_vars_legacy: (string * string option * mixfix) list -> context ->
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   132
    (string * typ option * mixfix) list * context
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   133
  val cert_vars_legacy: (string * typ option * mixfix) list -> context ->
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   134
    (string * typ option * mixfix) list * context
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   135
  val add_fixes: (string * string option * mixfix) list -> context -> string list * context
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   136
  val add_fixes_i: (string * typ option * mixfix) list -> context -> string list * context
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   137
  val add_fixes_legacy: (string * typ option * mixfix) list -> context -> string list * context
18809
95b4a51781aa added invent_fixes;
wenzelm
parents: 18785
diff changeset
   138
  val invent_fixes: string list -> context -> string list * context
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   139
  val fix_frees: term -> context -> context
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   140
  val auto_fixes: context * (term list list * 'a) -> context * (term list list * 'a)
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   141
  val bind_fixes: string list -> context -> (term -> term) * context
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   142
  val add_assms: export ->
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   143
    ((string * attribute list) * (string * (string list * string list)) list) list ->
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   144
    context -> (bstring * thm list) list * context
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   145
  val add_assms_i: export ->
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   146
    ((string * attribute list) * (term * (term list * term list)) list) list ->
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   147
    context -> (bstring * thm list) list * context
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   148
  val assume_export: export
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   149
  val presume_export: export
17360
fa1f262dbc4e added add_view, export_view (supercedes adhoc view arguments);
wenzelm
parents: 17221
diff changeset
   150
  val add_view: context -> cterm list -> context -> context
18042
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   151
  val export_view: cterm list -> context -> context -> thm -> thm
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
   152
  val add_cases: bool -> (string * RuleCases.T option) list -> context -> context
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
   153
  val apply_case: RuleCases.T -> context -> (string * term list) list * context
16147
59177d5bcb6f renamed cond_extern to extern;
wenzelm
parents: 16031
diff changeset
   154
  val get_case: context -> string -> string option list -> RuleCases.T
19371
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
   155
  val expand_abbrevs: bool -> context -> context
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
   156
  val add_abbrevs: string * bool -> (bstring * string * mixfix) list -> context -> context
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
   157
  val add_abbrevs_i: string * bool -> (bstring * term * mixfix) list -> context -> context
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
   158
  val verbose: bool ref
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
   159
  val setmp_verbose: ('a -> 'b) -> 'a -> 'b
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   160
  val print_syntax: context -> unit
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
   161
  val print_binds: context -> unit
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   162
  val print_lthms: context -> unit
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
   163
  val print_cases: context -> unit
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
   164
  val prems_limit: int ref
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   165
  val pretty_ctxt: context -> Pretty.T list
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
   166
  val pretty_context: context -> Pretty.T list
18809
95b4a51781aa added invent_fixes;
wenzelm
parents: 18785
diff changeset
   167
  val debug: bool ref
95b4a51781aa added invent_fixes;
wenzelm
parents: 18785
diff changeset
   168
  val pprint_context: context -> pprint_args -> unit
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   169
end;
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   170
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   171
structure ProofContext: PROOF_CONTEXT =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   172
struct
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   173
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   174
type context = Context.proof;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   175
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   176
val theory_of = Context.theory_of_proof;
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   177
val tsig_of = Sign.tsig_of o theory_of;
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   178
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   179
val init = Context.init_proof;
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   180
7270
2b64729d9acb warn_vars;
wenzelm
parents: 7200
diff changeset
   181
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   182
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   183
(** Isar proof context information **)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   184
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   185
type export = bool -> cterm list -> thm -> thm Seq.seq;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   186
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   187
datatype ctxt =
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   188
  Ctxt of
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   189
   {naming: NameSpace.naming,                     (*local naming conventions*)
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   190
    syntax: LocalSyntax.T,                        (*local syntax*)
19033
24e251657e56 consts: maintain thy version for efficient transfer;
wenzelm
parents: 19019
diff changeset
   191
    consts: Consts.T * Consts.T,                  (*global/local consts*)
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   192
    fixes: bool * (string * string) list,         (*fixes: !!x. _ with proof body flag*)
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   193
    assms:
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   194
      ((cterm list * export) list *               (*assumes and views: A ==> _*)
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   195
        (string * thm list) list),                (*prems: A |- A*)
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   196
    binds: (typ * term) Vartab.table,             (*term bindings*)
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   197
    thms: thm list NameSpace.table * FactIndex.T, (*local thms*)
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   198
    cases: (string * (RuleCases.T * bool)) list,  (*local contexts*)
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   199
    defaults:
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   200
      typ Vartab.table *                          (*type constraints*)
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   201
      sort Vartab.table *                         (*default sorts*)
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   202
      string list *                               (*used type variables*)
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   203
      term list Symtab.table};                    (*type variable occurrences*)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   204
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   205
fun make_ctxt (naming, syntax, consts, fixes, assms, binds, thms, cases, defaults) =
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   206
  Ctxt {naming = naming, syntax = syntax, consts = consts, fixes = fixes, assms = assms,
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   207
    binds = binds, thms = thms, cases = cases, defaults = defaults};
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   208
19079
9a7678a0736d added put_thms_internal: local_naming, no fact index;
wenzelm
parents: 19062
diff changeset
   209
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
   210
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   211
structure ContextData = ProofDataFun
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   212
(
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   213
  val name = "Isar/context";
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   214
  type T = ctxt;
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   215
  fun init thy =
19079
9a7678a0736d added put_thms_internal: local_naming, no fact index;
wenzelm
parents: 19062
diff changeset
   216
    make_ctxt (local_naming, LocalSyntax.init thy,
19033
24e251657e56 consts: maintain thy version for efficient transfer;
wenzelm
parents: 19019
diff changeset
   217
      (Sign.consts_of thy, Sign.consts_of thy), (false, []), ([], []),
24e251657e56 consts: maintain thy version for efficient transfer;
wenzelm
parents: 19019
diff changeset
   218
      Vartab.empty, (NameSpace.empty_table, FactIndex.empty), [],
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   219
      (Vartab.empty, Vartab.empty, [], Symtab.empty));
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   220
  fun print _ _ = ();
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   221
);
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   222
18708
4b3dadb4fe33 setup: theory -> theory;
wenzelm
parents: 18699
diff changeset
   223
val _ = Context.add_setup ContextData.init;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   224
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   225
fun rep_context ctxt = ContextData.get ctxt |> (fn Ctxt args => args);
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   226
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   227
fun map_context f =
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   228
  ContextData.map (fn Ctxt {naming, syntax, consts, fixes, assms, binds, thms, cases, defaults} =>
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   229
    make_ctxt (f (naming, syntax, consts, fixes, assms, binds, thms, cases, defaults)));
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   230
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   231
fun map_naming f =
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   232
  map_context (fn (naming, syntax, consts, fixes, assms, binds, thms, cases, defaults) =>
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   233
    (f naming, syntax, consts, fixes, assms, binds, thms, cases, defaults));
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   234
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   235
fun map_syntax f =
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   236
  map_context (fn (naming, syntax, consts, fixes, assms, binds, thms, cases, defaults) =>
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   237
    (naming, f syntax, consts, fixes, assms, binds, thms, cases, defaults));
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   238
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   239
fun map_consts f =
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   240
  map_context (fn (naming, syntax, consts, fixes, assms, binds, thms, cases, defaults) =>
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   241
    (naming, syntax, f consts, fixes, assms, binds, thms, cases, defaults));
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   242
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   243
fun map_fixes f =
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   244
  map_context (fn (naming, syntax, consts, fixes, assms, binds, thms, cases, defaults) =>
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   245
    (naming, syntax, consts, f fixes, assms, binds, thms, cases, defaults));
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
   246
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   247
fun map_assms f =
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   248
  map_context (fn (naming, syntax, consts, fixes, assms, binds, thms, cases, defaults) =>
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   249
    (naming, syntax, consts, fixes, f assms, binds, thms, cases, defaults));
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   250
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   251
fun map_binds f =
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   252
  map_context (fn (naming, syntax, consts, fixes, assms, binds, thms, cases, defaults) =>
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   253
    (naming, syntax, consts, fixes, assms, f binds, thms, cases, defaults));
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   254
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   255
fun map_thms f =
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   256
  map_context (fn (naming, syntax, consts, fixes, assms, binds, thms, cases, defaults) =>
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   257
    (naming, syntax, consts, fixes, assms, binds, f thms, cases, defaults));
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   258
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   259
fun map_cases f =
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   260
  map_context (fn (naming, syntax, consts, fixes, assms, binds, thms, cases, defaults) =>
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   261
    (naming, syntax, consts, fixes, assms, binds, thms, f cases, defaults));
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   262
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   263
fun map_defaults f =
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   264
  map_context (fn (naming, syntax, consts, fixes, assms, binds, thms, cases, defaults) =>
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   265
    (naming, syntax, consts, fixes, assms, binds, thms, cases, f defaults));
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   266
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   267
val naming_of = #naming o rep_context;
19387
6af442fa80c3 added full_name;
wenzelm
parents: 19371
diff changeset
   268
val full_name = NameSpace.full o naming_of;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   269
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   270
val syntax_of = #syntax o rep_context;
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   271
val syn_of = LocalSyntax.syn_of o syntax_of;
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   272
19033
24e251657e56 consts: maintain thy version for efficient transfer;
wenzelm
parents: 19019
diff changeset
   273
val consts_of = #2 o #consts o rep_context;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   274
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   275
val is_body = #1 o #fixes o rep_context;
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   276
fun set_body b = map_fixes (fn (_, fixes) => (b, fixes));
18743
7ff2934480c9 added restore_body;
wenzelm
parents: 18728
diff changeset
   277
fun restore_body ctxt = set_body (is_body ctxt);
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   278
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   279
val fixes_of = #2 o #fixes o rep_context;
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   280
val fixed_names_of = map #2 o fixes_of;
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   281
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   282
val assumptions_of = #1 o #assms o rep_context;
17451
cfa8b1ebfc9a added auto_fix (from proof.ML);
wenzelm
parents: 17412
diff changeset
   283
val assms_of = map Thm.term_of o List.concat o map #1 o assumptions_of;
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   284
val prems_of = List.concat o map #2 o #2 o #assms o rep_context;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   285
17860
b4cf247ea0d2 note_thmss, read/cert_vars etc.: natural argument order;
wenzelm
parents: 17756
diff changeset
   286
val binds_of = #binds o rep_context;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   287
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   288
val thms_of = #thms o rep_context;
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   289
val fact_index_of = #2 o thms_of;
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   290
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   291
val cases_of = #cases o rep_context;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   292
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   293
val defaults_of = #defaults o rep_context;
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   294
val type_occs_of = #4 o defaults_of;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   295
19019
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
   296
fun is_fixed ctxt x = exists (fn (_, y) => x = y) (fixes_of ctxt);
16894
40f80823b451 Inttab.defined;
wenzelm
parents: 16861
diff changeset
   297
fun is_known ctxt x = Vartab.defined (#1 (defaults_of ctxt)) (x, ~1) orelse is_fixed ctxt x;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   298
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   299
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   300
(* transfer *)
12093
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   301
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   302
fun transfer_syntax thy =
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   303
  map_syntax (LocalSyntax.rebuild thy) #>
19033
24e251657e56 consts: maintain thy version for efficient transfer;
wenzelm
parents: 19019
diff changeset
   304
  map_consts (fn consts as (global_consts, local_consts) =>
24e251657e56 consts: maintain thy version for efficient transfer;
wenzelm
parents: 19019
diff changeset
   305
    let val thy_consts = Sign.consts_of thy in
24e251657e56 consts: maintain thy version for efficient transfer;
wenzelm
parents: 19019
diff changeset
   306
      if Consts.eq_consts (thy_consts, global_consts) then consts
24e251657e56 consts: maintain thy version for efficient transfer;
wenzelm
parents: 19019
diff changeset
   307
      else (thy_consts, Consts.merge (thy_consts, local_consts))
24e251657e56 consts: maintain thy version for efficient transfer;
wenzelm
parents: 19019
diff changeset
   308
    end);
17072
501c28052aea added transfer;
wenzelm
parents: 16992
diff changeset
   309
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   310
fun transfer thy = Context.transfer_proof thy #> transfer_syntax thy;
17072
501c28052aea added transfer;
wenzelm
parents: 16992
diff changeset
   311
19019
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
   312
fun map_theory f ctxt = transfer (f (theory_of ctxt)) ctxt;
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
   313
12093
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   314
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
   315
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   316
(** pretty printing **)
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   317
19310
9b2080d9ed28 subtract (op =);
wenzelm
parents: 19274
diff changeset
   318
local
9b2080d9ed28 subtract (op =);
wenzelm
parents: 19274
diff changeset
   319
19371
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
   320
fun rewrite_term thy rews t =
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
   321
  if can Term.type_of t then Pattern.rewrite_term thy rews [] t
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
   322
  else (warning "Printing ill-typed term -- cannot expand abbreviations"; t);
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
   323
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   324
fun pretty_term' abbrevs ctxt t =
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
   325
  let
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   326
    val thy = theory_of ctxt;
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   327
    val syntax = syntax_of ctxt;
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
   328
    val consts = consts_of ctxt;
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   329
    val t' = t
19371
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
   330
      |> K abbrevs ? rewrite_term thy (Consts.abbrevs_of consts (! print_mode @ [""]))
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
   331
      |> Sign.extern_term (Consts.extern_early consts) thy
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
   332
      |> LocalSyntax.extern_term syntax;
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
   333
  in
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
   334
    Sign.pretty_term' (Context.Proof ctxt) (LocalSyntax.syn_of syntax) (Consts.extern consts) t'
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
   335
  end;
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
   336
19310
9b2080d9ed28 subtract (op =);
wenzelm
parents: 19274
diff changeset
   337
in
9b2080d9ed28 subtract (op =);
wenzelm
parents: 19274
diff changeset
   338
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   339
val pretty_term = pretty_term' true;
19310
9b2080d9ed28 subtract (op =);
wenzelm
parents: 19274
diff changeset
   340
val pretty_term_no_abbrevs = pretty_term' false;
9b2080d9ed28 subtract (op =);
wenzelm
parents: 19274
diff changeset
   341
9b2080d9ed28 subtract (op =);
wenzelm
parents: 19274
diff changeset
   342
end;
9b2080d9ed28 subtract (op =);
wenzelm
parents: 19274
diff changeset
   343
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16348
diff changeset
   344
fun pretty_typ ctxt T = Sign.pretty_typ (theory_of ctxt) T;
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16348
diff changeset
   345
fun pretty_sort ctxt S = Sign.pretty_sort (theory_of ctxt) S;
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16348
diff changeset
   346
fun pretty_classrel ctxt cs = Sign.pretty_classrel (theory_of ctxt) cs;
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16348
diff changeset
   347
fun pretty_arity ctxt ar = Sign.pretty_arity (theory_of ctxt) ar;
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   348
14974
b1ecb7859c99 avoid premature evaluation of syn_of (wastes time in conjunction with pp);
wenzelm
parents: 14901
diff changeset
   349
fun pp ctxt = Pretty.pp (pretty_term ctxt, pretty_typ ctxt, pretty_sort ctxt,
b1ecb7859c99 avoid premature evaluation of syn_of (wastes time in conjunction with pp);
wenzelm
parents: 14901
diff changeset
   350
  pretty_classrel ctxt, pretty_arity ctxt);
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   351
17451
cfa8b1ebfc9a added auto_fix (from proof.ML);
wenzelm
parents: 17412
diff changeset
   352
fun pretty_thm ctxt th =
cfa8b1ebfc9a added auto_fix (from proof.ML);
wenzelm
parents: 17412
diff changeset
   353
  Display.pretty_thm_aux (pp ctxt) false true (assms_of ctxt) th;
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   354
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   355
fun pretty_thms ctxt [th] = pretty_thm ctxt th
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   356
  | 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
   357
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   358
fun pretty_fact ctxt ("", ths) = pretty_thms ctxt ths
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   359
  | pretty_fact ctxt (a, [th]) =
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   360
      Pretty.block [Pretty.str (a ^ ":"), Pretty.brk 1, pretty_thm ctxt th]
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   361
  | pretty_fact ctxt (a, ths) =
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   362
      Pretty.block (Pretty.fbreaks (Pretty.str (a ^ ":") :: map (pretty_thm ctxt) ths));
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   363
17072
501c28052aea added transfer;
wenzelm
parents: 16992
diff changeset
   364
fun pretty_proof ctxt prf =
19310
9b2080d9ed28 subtract (op =);
wenzelm
parents: 19274
diff changeset
   365
  pretty_term_no_abbrevs (ctxt |> transfer_syntax (ProofSyntax.proof_syntax prf (theory_of ctxt)))
17072
501c28052aea added transfer;
wenzelm
parents: 16992
diff changeset
   366
    (ProofSyntax.term_of_proof prf);
501c28052aea added transfer;
wenzelm
parents: 16992
diff changeset
   367
501c28052aea added transfer;
wenzelm
parents: 16992
diff changeset
   368
fun pretty_proof_of ctxt full th =
501c28052aea added transfer;
wenzelm
parents: 16992
diff changeset
   369
  pretty_proof ctxt (ProofSyntax.proof_of full th);
501c28052aea added transfer;
wenzelm
parents: 16992
diff changeset
   370
17860
b4cf247ea0d2 note_thmss, read/cert_vars etc.: natural argument order;
wenzelm
parents: 17756
diff changeset
   371
val string_of_typ = Pretty.string_of oo pretty_typ;
b4cf247ea0d2 note_thmss, read/cert_vars etc.: natural argument order;
wenzelm
parents: 17756
diff changeset
   372
val string_of_term = Pretty.string_of oo pretty_term;
b4cf247ea0d2 note_thmss, read/cert_vars etc.: natural argument order;
wenzelm
parents: 17756
diff changeset
   373
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
   374
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   375
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   376
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   377
(** default sorts and types **)
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   378
17412
e26cb20ef0cc TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17384
diff changeset
   379
val def_sort = Vartab.lookup o #2 o defaults_of;
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   380
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   381
fun def_type ctxt pattern xi =
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   382
  let val {binds, defaults = (types, _, _, _), ...} = rep_context ctxt in
17412
e26cb20ef0cc TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17384
diff changeset
   383
    (case Vartab.lookup types xi of
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   384
      NONE =>
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   385
        if pattern then NONE
18953
93903be7ff66 norm_term: Sign.const_expansion, Envir.expand_atom;
wenzelm
parents: 18928
diff changeset
   386
        else Vartab.lookup binds xi |> Option.map (TypeInfer.polymorphicT o #1)
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   387
    | some => some)
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   388
  end;
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   389
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   390
val used_types = #3 o defaults_of;
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   391
17412
e26cb20ef0cc TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17384
diff changeset
   392
fun default_type ctxt x = Vartab.lookup (#1 (defaults_of ctxt)) (x, ~1);
12414
61e1681b0b5d added default_type;
wenzelm
parents: 12309
diff changeset
   393
7663
460fedf14b09 export def_sort, def_type;
wenzelm
parents: 7606
diff changeset
   394
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   395
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   396
(** prepare types **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   397
9504
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   398
local
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   399
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   400
fun read_typ_aux read ctxt s =
18857
c4b4fbd74ffb advanced translations: Context.generic;
wenzelm
parents: 18844
diff changeset
   401
  read (syn_of ctxt) (Context.Proof ctxt) (def_sort ctxt) s;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   402
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   403
fun cert_typ_aux cert ctxt raw_T =
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
   404
  cert (theory_of ctxt) raw_T handle TYPE (msg, _, _) => error msg;
9504
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   405
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   406
in
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   407
16348
7504fe04170f renamed extern to extern_thm;
wenzelm
parents: 16147
diff changeset
   408
val read_typ        = read_typ_aux Sign.read_typ';
7504fe04170f renamed extern to extern_thm;
wenzelm
parents: 16147
diff changeset
   409
val read_typ_syntax = read_typ_aux Sign.read_typ_syntax';
7504fe04170f renamed extern to extern_thm;
wenzelm
parents: 16147
diff changeset
   410
val read_typ_abbrev = read_typ_aux Sign.read_typ_abbrev';
7504fe04170f renamed extern to extern_thm;
wenzelm
parents: 16147
diff changeset
   411
val cert_typ        = cert_typ_aux Sign.certify_typ;
7504fe04170f renamed extern to extern_thm;
wenzelm
parents: 16147
diff changeset
   412
val cert_typ_syntax = cert_typ_aux Sign.certify_typ_syntax;
7504fe04170f renamed extern to extern_thm;
wenzelm
parents: 16147
diff changeset
   413
val cert_typ_abbrev = cert_typ_aux Sign.certify_typ_abbrev;
9504
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   414
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   415
end;
8168600e88a5 typ_no_norm;
wenzelm
parents: 9470
diff changeset
   416
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   417
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   418
(* internalize Skolem constants *)
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   419
17184
3d80209e9a53 use AList operations;
wenzelm
parents: 17072
diff changeset
   420
val lookup_skolem = AList.lookup (op =) o fixes_of;
18187
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
   421
fun get_skolem ctxt x = the_default x (lookup_skolem ctxt x);
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   422
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
   423
fun no_skolem internal x =
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
   424
  if can Syntax.dest_skolem x then
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
   425
    error ("Illegal reference to internal Skolem constant: " ^ quote x)
12504
5b46173df7ad export used_types;
wenzelm
parents: 12414
diff changeset
   426
  else if not internal andalso can Syntax.dest_internal x then
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
   427
    error ("Illegal reference to internal variable: " ^ quote x)
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   428
  else x;
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   429
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   430
fun intern_skolem ctxt internal =
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   431
  let
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   432
    fun intern (t as Free (x, T)) =
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   433
          if internal x then t
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   434
          else
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
   435
            (case lookup_skolem ctxt (no_skolem false x) of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   436
              SOME x' => Free (x', T)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   437
            | NONE => t)
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   438
      | intern (t $ u) = intern t $ intern u
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   439
      | intern (Abs (x, T, t)) = Abs (x, T, intern t)
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   440
      | intern a = a;
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   441
  in intern end;
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   442
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
   443
18187
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
   444
(* externalize Skolem constants -- approximation only! *)
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
   445
18255
5ef79b75a002 revert_skolem: fall back on Syntax.deskolem;
wenzelm
parents: 18211
diff changeset
   446
fun rev_skolem ctxt =
18187
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
   447
  let val rev_fixes = map Library.swap (fixes_of ctxt)
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
   448
  in AList.lookup (op =) rev_fixes end;
9133
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   449
18255
5ef79b75a002 revert_skolem: fall back on Syntax.deskolem;
wenzelm
parents: 18211
diff changeset
   450
fun revert_skolem ctxt x =
5ef79b75a002 revert_skolem: fall back on Syntax.deskolem;
wenzelm
parents: 18211
diff changeset
   451
  (case rev_skolem ctxt x of
5ef79b75a002 revert_skolem: fall back on Syntax.deskolem;
wenzelm
parents: 18211
diff changeset
   452
    SOME x' => x'
18375
99deeed095ae removed Syntax.deskolem;
wenzelm
parents: 18340
diff changeset
   453
  | NONE => perhaps (try Syntax.dest_skolem) x);
18255
5ef79b75a002 revert_skolem: fall back on Syntax.deskolem;
wenzelm
parents: 18211
diff changeset
   454
9133
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   455
fun extern_skolem ctxt =
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   456
  let
18255
5ef79b75a002 revert_skolem: fall back on Syntax.deskolem;
wenzelm
parents: 18211
diff changeset
   457
    val revert = rev_skolem ctxt;
9133
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   458
    fun extern (t as Free (x, T)) =
18187
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
   459
        (case revert x of
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
   460
          SOME x' => Free (if lookup_skolem ctxt x' = SOME x then x' else NameSpace.hidden x', T)
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
   461
        | NONE => t)
9133
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   462
      | extern (t $ u) = extern t $ extern u
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   463
      | extern (Abs (x, T, t)) = Abs (x, T, extern t)
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   464
      | extern a = a;
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   465
  in extern end
bc3742f62b80 added extern_skolem;
wenzelm
parents: 9007
diff changeset
   466
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   467
18187
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
   468
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   469
(** prepare terms and propositions **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   470
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   471
(*
16501
fec0cf020bad thmref: Name vs. NameSelection;
wenzelm
parents: 16458
diff changeset
   472
  (1) read / certify wrt. theory of context
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   473
  (2) intern Skolem constants
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   474
  (3) expand term bindings
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   475
*)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   476
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   477
16501
fec0cf020bad thmref: Name vs. NameSelection;
wenzelm
parents: 16458
diff changeset
   478
(* read wrt. theory *)     (*exception ERROR*)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   479
18857
c4b4fbd74ffb advanced translations: Context.generic;
wenzelm
parents: 18844
diff changeset
   480
fun read_def_termTs freeze pp syn ctxt (types, sorts, used) sTs =
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
   481
  Sign.read_def_terms' pp (Sign.is_logtype (theory_of ctxt)) syn (consts_of ctxt)
18857
c4b4fbd74ffb advanced translations: Context.generic;
wenzelm
parents: 18844
diff changeset
   482
    (Context.Proof ctxt) (types, sorts) used freeze sTs;
5874
a58d4528121d renamed init_context to init;
wenzelm
parents: 5819
diff changeset
   483
18857
c4b4fbd74ffb advanced translations: Context.generic;
wenzelm
parents: 18844
diff changeset
   484
fun read_def_termT freeze pp syn ctxt defaults sT =
c4b4fbd74ffb advanced translations: Context.generic;
wenzelm
parents: 18844
diff changeset
   485
  apfst hd (read_def_termTs freeze pp syn ctxt defaults [sT]);
14828
15d12761ba54 improved output; refer to Pretty.pp;
wenzelm
parents: 14780
diff changeset
   486
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   487
fun read_term_thy freeze pp syn thy defaults s =
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   488
  #1 (read_def_termT freeze pp syn thy defaults (s, TypeInfer.logicT));
5874
a58d4528121d renamed init_context to init;
wenzelm
parents: 5819
diff changeset
   489
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   490
fun read_prop_thy freeze pp syn thy defaults s =
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   491
  #1 (read_def_termT freeze pp syn thy defaults (s, propT));
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   492
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   493
fun read_terms_thy freeze pp syn thy defaults =
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   494
  #1 o read_def_termTs freeze pp syn thy defaults o map (rpair TypeInfer.logicT);
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
   495
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   496
fun read_props_thy freeze pp syn thy defaults =
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   497
  #1 o read_def_termTs freeze pp syn thy defaults o map (rpair propT);
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   498
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   499
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   500
(* local abbreviations *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   501
19371
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
   502
fun certify_consts ctxt =
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   503
  Consts.certify (pp ctxt) (tsig_of ctxt) (consts_of ctxt);
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   504
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   505
fun expand_binds ctxt schematic =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   506
  let
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
   507
    val binds = binds_of ctxt;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   508
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   509
    fun expand_var (xi, T) =
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
   510
      (case Vartab.lookup binds xi of
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   511
        SOME t => Envir.expand_atom (tsig_of ctxt) T t
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
   512
      | NONE =>
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
   513
          if schematic then Var (xi, T)
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
   514
          else error ("Unbound schematic variable: " ^ Syntax.string_of_vname xi));
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   515
  in Envir.beta_norm o Term.map_aterms (fn Var v => expand_var v | a => a) end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   516
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   517
6550
68f950b1a664 dummy patterns;
wenzelm
parents: 6528
diff changeset
   518
(* dummy patterns *)
68f950b1a664 dummy patterns;
wenzelm
parents: 6528
diff changeset
   519
18310
b00c9120f6bd match_bind(_i): return terms;
wenzelm
parents: 18255
diff changeset
   520
val prepare_dummies =
b00c9120f6bd match_bind(_i): return terms;
wenzelm
parents: 18255
diff changeset
   521
  let val next = ref 1 in
b00c9120f6bd match_bind(_i): return terms;
wenzelm
parents: 18255
diff changeset
   522
    fn t =>
b00c9120f6bd match_bind(_i): return terms;
wenzelm
parents: 18255
diff changeset
   523
      let val (i, u) = Term.replace_dummy_patterns (! next, t)
b00c9120f6bd match_bind(_i): return terms;
wenzelm
parents: 18255
diff changeset
   524
      in next := i; u end
b00c9120f6bd match_bind(_i): return terms;
wenzelm
parents: 18255
diff changeset
   525
  end;
6762
a9a515a43ae0 read_term/prop_pat: do not freeze;
wenzelm
parents: 6721
diff changeset
   526
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
   527
fun reject_dummies t = Term.no_dummy_patterns t
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
   528
  handle TERM _ => error "Illegal dummy pattern(s) in term";
6550
68f950b1a664 dummy patterns;
wenzelm
parents: 6528
diff changeset
   529
68f950b1a664 dummy patterns;
wenzelm
parents: 6528
diff changeset
   530
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   531
(* read terms *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   532
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   533
local
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   534
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   535
fun append_env e1 e2 x = (case e2 x of NONE => e1 x | some => some);
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   536
16031
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
   537
fun gen_read' read app pattern schematic
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   538
    ctxt internal more_types more_sorts more_used s =
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13629
diff changeset
   539
  let
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   540
    val types = append_env (def_type ctxt pattern) more_types;
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   541
    val sorts = append_env (def_sort ctxt) more_sorts;
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   542
    val used = used_types ctxt @ more_used;
14174
f3cafd2929d5 Methods rule_tac etc support static (Isar) contexts.
ballarin
parents: 13629
diff changeset
   543
  in
18857
c4b4fbd74ffb advanced translations: Context.generic;
wenzelm
parents: 18844
diff changeset
   544
    (read (pp ctxt) (syn_of ctxt) ctxt (types, sorts, used) s
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
   545
      handle TERM (msg, _) => error msg)
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   546
    |> app (intern_skolem ctxt internal)
19371
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
   547
    |> app (certify_consts ctxt)
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   548
    |> app (if pattern then I else expand_binds ctxt schematic)
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
   549
    |> app (if pattern then prepare_dummies else reject_dummies)
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   550
  end;
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   551
16031
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
   552
fun gen_read read app pattern schematic ctxt =
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
   553
  gen_read' read app pattern schematic ctxt (K false) (K NONE) (K NONE) [];
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   554
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   555
in
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   556
16031
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
   557
val read_termTs           = gen_read' (read_def_termTs false) (apfst o map) false false;
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
   558
val read_termTs_schematic = gen_read' (read_def_termTs false) (apfst o map) false true;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   559
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   560
fun read_term_pats T ctxt =
16031
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
   561
  #1 o gen_read (read_def_termTs false) (apfst o map) true false ctxt o map (rpair T);
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   562
val read_prop_pats = read_term_pats propT;
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   563
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   564
fun read_term_legacy ctxt =
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16348
diff changeset
   565
  gen_read' (read_term_thy true) I false false ctxt (K true) (K NONE) (K NONE) [];
14720
ceff6d4fb836 cleanup up read functions, include liberal versions;
wenzelm
parents: 14707
diff changeset
   566
19143
a64fef2d7073 put_thms: do_index;
wenzelm
parents: 19079
diff changeset
   567
val read_term            = gen_read (read_term_thy true) I false false;
a64fef2d7073 put_thms: do_index;
wenzelm
parents: 19079
diff changeset
   568
val read_prop            = gen_read (read_prop_thy true) I false false;
a64fef2d7073 put_thms: do_index;
wenzelm
parents: 19079
diff changeset
   569
val read_prop_schematic  = gen_read (read_prop_thy true) I false true;
a64fef2d7073 put_thms: do_index;
wenzelm
parents: 19079
diff changeset
   570
val read_terms           = gen_read (read_terms_thy true) map false false;
a64fef2d7073 put_thms: do_index;
wenzelm
parents: 19079
diff changeset
   571
fun read_props schematic = gen_read (read_props_thy true) map false schematic;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   572
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   573
end;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   574
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   575
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   576
(* certify terms *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   577
19371
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
   578
val test = ref (NONE: (context * term) option);
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
   579
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   580
local
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   581
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
   582
fun gen_cert prop pattern schematic ctxt t = t
19371
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
   583
  |> certify_consts ctxt
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   584
  |> (if pattern then I else expand_binds ctxt schematic)
19371
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
   585
  |> (fn t' => #1 (Sign.certify' false prop (pp ctxt) (consts_of ctxt) (theory_of ctxt) t')
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
   586
    handle TYPE (msg, _, _) => error msg
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
   587
      | TERM (msg, _) => error msg);
16501
fec0cf020bad thmref: Name vs. NameSelection;
wenzelm
parents: 16458
diff changeset
   588
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   589
in
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   590
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
   591
val cert_term = gen_cert false false false;
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
   592
val cert_prop = gen_cert true false false;
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
   593
val cert_props = map oo gen_cert true false;
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   594
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
   595
fun cert_term_pats _ = map o gen_cert false true false;
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
   596
val cert_prop_pats = map o gen_cert true true false;
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   597
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   598
end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   599
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   600
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   601
(* declare terms *)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   602
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   603
local
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   604
16861
7446b4be013b tuned fold on terms;
wenzelm
parents: 16850
diff changeset
   605
val ins_types = fold_aterms
17412
e26cb20ef0cc TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17384
diff changeset
   606
  (fn Free (x, T) => Vartab.update ((x, ~1), T)
e26cb20ef0cc TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17384
diff changeset
   607
    | Var v => Vartab.update v
16861
7446b4be013b tuned fold on terms;
wenzelm
parents: 16850
diff changeset
   608
    | _ => I);
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   609
16861
7446b4be013b tuned fold on terms;
wenzelm
parents: 16850
diff changeset
   610
val ins_sorts = fold_types (fold_atyps
19079
9a7678a0736d added put_thms_internal: local_naming, no fact index;
wenzelm
parents: 19062
diff changeset
   611
  (fn TFree (x, S) => Vartab.update ((x, ~1), S)
9a7678a0736d added put_thms_internal: local_naming, no fact index;
wenzelm
parents: 19062
diff changeset
   612
    | TVar v => Vartab.update v
16861
7446b4be013b tuned fold on terms;
wenzelm
parents: 16850
diff changeset
   613
    | _ => I));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   614
16861
7446b4be013b tuned fold on terms;
wenzelm
parents: 16850
diff changeset
   615
val ins_used = fold_term_types (fn t =>
7446b4be013b tuned fold on terms;
wenzelm
parents: 16850
diff changeset
   616
  fold_atyps (fn TFree (x, _) => insert (op =) x | _ => I));
12291
43f37745b600 type variables: clarified "used" vs. "occ";
wenzelm
parents: 12213
diff changeset
   617
16861
7446b4be013b tuned fold on terms;
wenzelm
parents: 16850
diff changeset
   618
val ins_occs = fold_term_types (fn t =>
18953
93903be7ff66 norm_term: Sign.const_expansion, Envir.expand_atom;
wenzelm
parents: 18928
diff changeset
   619
  fold_atyps (fn TFree (x, _) => Symtab.update_list (x, t) | _ => I));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   620
16861
7446b4be013b tuned fold on terms;
wenzelm
parents: 16850
diff changeset
   621
fun ins_skolem def_ty = fold_rev (fn (x, x') =>
7446b4be013b tuned fold on terms;
wenzelm
parents: 16850
diff changeset
   622
  (case def_ty x' of
17412
e26cb20ef0cc TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17384
diff changeset
   623
    SOME T => Vartab.update ((x, ~1), T)
16861
7446b4be013b tuned fold on terms;
wenzelm
parents: 16850
diff changeset
   624
  | NONE => I));
5994
7b84677315ed fixed declatation of patterns and skolem;
wenzelm
parents: 5935
diff changeset
   625
16031
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
   626
in
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
   627
19079
9a7678a0736d added put_thms_internal: local_naming, no fact index;
wenzelm
parents: 19062
diff changeset
   628
fun declare_syntax t = map_defaults (fn (types, sorts, used, occ) =>
9a7678a0736d added put_thms_internal: local_naming, no fact index;
wenzelm
parents: 19062
diff changeset
   629
 (ins_types t types,
9a7678a0736d added put_thms_internal: local_naming, no fact index;
wenzelm
parents: 19062
diff changeset
   630
  ins_sorts t sorts,
9a7678a0736d added put_thms_internal: local_naming, no fact index;
wenzelm
parents: 19062
diff changeset
   631
  ins_used t used,
9a7678a0736d added put_thms_internal: local_naming, no fact index;
wenzelm
parents: 19062
diff changeset
   632
  occ));
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
   633
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   634
fun declare_var (x, opt_T, mx) ctxt =
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   635
  let val T = (case opt_T of SOME T => T | NONE => TypeInfer.mixfixT mx)
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   636
  in ((x, T, mx), ctxt |> declare_syntax (Free (x, T))) end;
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   637
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   638
fun declare_term t ctxt =
16031
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
   639
  ctxt
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   640
  |> declare_syntax t
12291
43f37745b600 type variables: clarified "used" vs. "occ";
wenzelm
parents: 12213
diff changeset
   641
  |> map_defaults (fn (types, sorts, used, occ) =>
19079
9a7678a0736d added put_thms_internal: local_naming, no fact index;
wenzelm
parents: 19062
diff changeset
   642
     (ins_skolem (fn x => Vartab.lookup types (x, ~1)) (fixes_of ctxt) types,
9a7678a0736d added put_thms_internal: local_naming, no fact index;
wenzelm
parents: 19062
diff changeset
   643
      sorts,
9a7678a0736d added put_thms_internal: local_naming, no fact index;
wenzelm
parents: 19062
diff changeset
   644
      used,
9a7678a0736d added put_thms_internal: local_naming, no fact index;
wenzelm
parents: 19062
diff changeset
   645
      ins_occs t occ));
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   646
18770
434f660d3068 renamed inferred_type to inferred_param;
wenzelm
parents: 18743
diff changeset
   647
end;
434f660d3068 renamed inferred_type to inferred_param;
wenzelm
parents: 18743
diff changeset
   648
434f660d3068 renamed inferred_type to inferred_param;
wenzelm
parents: 18743
diff changeset
   649
434f660d3068 renamed inferred_type to inferred_param;
wenzelm
parents: 18743
diff changeset
   650
(* inferred types of parameters *)
434f660d3068 renamed inferred_type to inferred_param;
wenzelm
parents: 18743
diff changeset
   651
434f660d3068 renamed inferred_type to inferred_param;
wenzelm
parents: 18743
diff changeset
   652
fun infer_type ctxt x =
434f660d3068 renamed inferred_type to inferred_param;
wenzelm
parents: 18743
diff changeset
   653
  (case try (fn () =>
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
   654
      Sign.infer_types (pp ctxt) (theory_of ctxt) (consts_of ctxt) (def_type ctxt false)
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
   655
        (def_sort ctxt) (used_types ctxt) true ([Free (x, dummyT)], TypeInfer.logicT)) () of
18770
434f660d3068 renamed inferred_type to inferred_param;
wenzelm
parents: 18743
diff changeset
   656
    SOME (Free (_, T), _) => T
434f660d3068 renamed inferred_type to inferred_param;
wenzelm
parents: 18743
diff changeset
   657
  | _ => error ("Failed to infer type of fixed variable " ^ quote x));
434f660d3068 renamed inferred_type to inferred_param;
wenzelm
parents: 18743
diff changeset
   658
434f660d3068 renamed inferred_type to inferred_param;
wenzelm
parents: 18743
diff changeset
   659
fun inferred_param x ctxt =
18619
fa61df848dea added infer_type, declared_type;
wenzelm
parents: 18609
diff changeset
   660
  let val T = infer_type ctxt x
19019
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
   661
  in ((x, T), ctxt |> declare_syntax (Free (x, T))) end;
18619
fa61df848dea added infer_type, declared_type;
wenzelm
parents: 18609
diff changeset
   662
18770
434f660d3068 renamed inferred_type to inferred_param;
wenzelm
parents: 18743
diff changeset
   663
fun inferred_fixes ctxt =
434f660d3068 renamed inferred_type to inferred_param;
wenzelm
parents: 18743
diff changeset
   664
  fold_map inferred_param (rev (fixed_names_of ctxt)) ctxt;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   665
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   666
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   667
(* type and constant names *)
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   668
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   669
fun read_tyname ctxt c =
18340
3fdff270aa04 removed fixed_tr: now handled in syntax module;
wenzelm
parents: 18310
diff changeset
   670
  if member (op =) (used_types ctxt) c then
18187
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
   671
    TFree (c, the_default (Sign.defaultS (theory_of ctxt)) (def_sort ctxt (c, ~1)))
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16348
diff changeset
   672
  else Sign.read_tyname (theory_of ctxt) c;
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   673
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   674
fun read_const ctxt c =
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   675
  (case lookup_skolem ctxt c of
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   676
    SOME c' => Free (c', dummyT)
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
   677
  | NONE => Consts.read_const (consts_of ctxt) c);
15703
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   678
727ef1b8b3ee *** empty log message ***
wenzelm
parents: 15696
diff changeset
   679
19019
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
   680
(* renaming term/type frees *)
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
   681
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
   682
fun rename_frees ctxt ts frees =
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
   683
  let
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
   684
    val (types, sorts, _, _) = defaults_of (ctxt |> fold declare_syntax ts);
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
   685
    fun rename (x, X) xs =
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
   686
      let
19274
b85e16bd70d0 rename_frees: treat trivial names;
wenzelm
parents: 19270
diff changeset
   687
        fun used y = y = "" orelse y = "'" orelse member (op =) xs y orelse
19019
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
   688
          Vartab.defined types (y, ~1) orelse Vartab.defined sorts (y, ~1);
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
   689
        val x' = Term.variant_name used x;
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
   690
      in ((x', X), x' :: xs) end;
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
   691
  in #1 (fold_map rename frees []) end;
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
   692
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
   693
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   694
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   695
(** Hindley-Milner polymorphism **)
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   696
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   697
(* warn_extra_tfrees *)
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   698
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   699
fun warn_extra_tfrees ctxt1 ctxt2 =
12130
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
   700
  let
17451
cfa8b1ebfc9a added auto_fix (from proof.ML);
wenzelm
parents: 17412
diff changeset
   701
    fun occs_typ a (Type (_, Ts)) = exists (occs_typ a) Ts
cfa8b1ebfc9a added auto_fix (from proof.ML);
wenzelm
parents: 17412
diff changeset
   702
      | occs_typ a (TFree (b, _)) = a = b
cfa8b1ebfc9a added auto_fix (from proof.ML);
wenzelm
parents: 17412
diff changeset
   703
      | occs_typ _ (TVar _) = false;
cfa8b1ebfc9a added auto_fix (from proof.ML);
wenzelm
parents: 17412
diff changeset
   704
    fun occs_free a (Free (x, _)) =
cfa8b1ebfc9a added auto_fix (from proof.ML);
wenzelm
parents: 17412
diff changeset
   705
          (case def_type ctxt1 false (x, ~1) of
cfa8b1ebfc9a added auto_fix (from proof.ML);
wenzelm
parents: 17412
diff changeset
   706
            SOME T => if occs_typ a T then I else cons (a, x)
cfa8b1ebfc9a added auto_fix (from proof.ML);
wenzelm
parents: 17412
diff changeset
   707
          | NONE => cons (a, x))
cfa8b1ebfc9a added auto_fix (from proof.ML);
wenzelm
parents: 17412
diff changeset
   708
      | occs_free _ _ = I;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   709
17451
cfa8b1ebfc9a added auto_fix (from proof.ML);
wenzelm
parents: 17412
diff changeset
   710
    val occs1 = type_occs_of ctxt1 and occs2 = type_occs_of ctxt2;
cfa8b1ebfc9a added auto_fix (from proof.ML);
wenzelm
parents: 17412
diff changeset
   711
    val extras = Symtab.fold (fn (a, ts) =>
cfa8b1ebfc9a added auto_fix (from proof.ML);
wenzelm
parents: 17412
diff changeset
   712
      if Symtab.defined occs1 a then I else fold (occs_free a) ts) occs2 [];
18428
4059413acbc1 sort_distinct;
wenzelm
parents: 18418
diff changeset
   713
    val tfrees = map #1 extras |> sort_distinct string_ord;
4059413acbc1 sort_distinct;
wenzelm
parents: 18418
diff changeset
   714
    val frees = map #2 extras |> sort_distinct string_ord;
12130
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
   715
  in
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
   716
    if null extras then ()
17451
cfa8b1ebfc9a added auto_fix (from proof.ML);
wenzelm
parents: 17412
diff changeset
   717
    else warning ("Introduced fixed type variable(s): " ^ commas tfrees ^ " in " ^
17860
b4cf247ea0d2 note_thmss, read/cert_vars etc.: natural argument order;
wenzelm
parents: 17756
diff changeset
   718
      space_implode " or " (map (string_of_term ctxt2 o Syntax.free) frees));
12130
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
   719
    ctxt2
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
   720
  end;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   721
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   722
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   723
(* generalize type variables *)
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   724
12550
32843ad8160a generalize type variables properly: start with occurrences in objects
wenzelm
parents: 12530
diff changeset
   725
fun generalize_tfrees inner outer =
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   726
  let
19310
9b2080d9ed28 subtract (op =);
wenzelm
parents: 19274
diff changeset
   727
    val extra_fixes = subtract (op =) (fixed_names_of outer) (fixed_names_of inner);
18340
3fdff270aa04 removed fixed_tr: now handled in syntax module;
wenzelm
parents: 18310
diff changeset
   728
    fun still_fixed (Free (x, _)) = not (member (op =) extra_fixes x)
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   729
      | still_fixed _ = false;
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   730
    val occs_inner = type_occs_of inner;
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   731
    val occs_outer = type_occs_of outer;
16031
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
   732
    fun add a gen =
16894
40f80823b451 Inttab.defined;
wenzelm
parents: 16861
diff changeset
   733
      if Symtab.defined occs_outer a orelse
18953
93903be7ff66 norm_term: Sign.const_expansion, Envir.expand_atom;
wenzelm
parents: 18928
diff changeset
   734
        exists still_fixed (Symtab.lookup_list occs_inner a)
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   735
      then gen else a :: gen;
16031
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
   736
  in fn tfrees => fold add tfrees [] end;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   737
12550
32843ad8160a generalize type variables properly: start with occurrences in objects
wenzelm
parents: 12530
diff changeset
   738
fun generalize inner outer ts =
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   739
  let
18187
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
   740
    val tfrees = generalize_tfrees inner outer (map #1 (fold Term.add_tfrees ts []));
18340
3fdff270aa04 removed fixed_tr: now handled in syntax module;
wenzelm
parents: 18310
diff changeset
   741
    fun gen (x, S) = if member (op =) tfrees x then TVar ((x, 0), S) else TFree (x, S);
12550
32843ad8160a generalize type variables properly: start with occurrences in objects
wenzelm
parents: 12530
diff changeset
   742
  in map (Term.map_term_types (Term.map_type_tfree gen)) ts end;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   743
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   744
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   745
(* polymorphic terms *)
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   746
19270
d928b5468c43 added monomorphic;
wenzelm
parents: 19143
diff changeset
   747
fun monomorphic ctxt ts =
d928b5468c43 added monomorphic;
wenzelm
parents: 19143
diff changeset
   748
  let
d928b5468c43 added monomorphic;
wenzelm
parents: 19143
diff changeset
   749
    val tvars = fold Term.add_tvars ts [];
19274
b85e16bd70d0 rename_frees: treat trivial names;
wenzelm
parents: 19270
diff changeset
   750
    val tfrees = map TFree (rename_frees ctxt ts (map (pair "'" o #2) tvars));
19270
d928b5468c43 added monomorphic;
wenzelm
parents: 19143
diff changeset
   751
    val specialize = Term.instantiate ((tvars ~~ tfrees), []);
d928b5468c43 added monomorphic;
wenzelm
parents: 19143
diff changeset
   752
  in map specialize ts end;
d928b5468c43 added monomorphic;
wenzelm
parents: 19143
diff changeset
   753
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   754
fun polymorphic ctxt ts =
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   755
  generalize (ctxt |> fold declare_term ts) ctxt ts;
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   756
19270
d928b5468c43 added monomorphic;
wenzelm
parents: 19143
diff changeset
   757
fun hidden_polymorphism t T =
d928b5468c43 added monomorphic;
wenzelm
parents: 19143
diff changeset
   758
  let
d928b5468c43 added monomorphic;
wenzelm
parents: 19143
diff changeset
   759
    val tvarsT = Term.add_tvarsT T [];
d928b5468c43 added monomorphic;
wenzelm
parents: 19143
diff changeset
   760
    val extra_tvars = Term.fold_types (Term.fold_atyps
d928b5468c43 added monomorphic;
wenzelm
parents: 19143
diff changeset
   761
      (fn TVar v => if member (op =) tvarsT v then I else insert (op =) v | _ => I)) t [];
d928b5468c43 added monomorphic;
wenzelm
parents: 19143
diff changeset
   762
  in extra_tvars end;
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   763
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   764
9553
c2e3773475b6 norm_hhf results;
wenzelm
parents: 9540
diff changeset
   765
c2e3773475b6 norm_hhf results;
wenzelm
parents: 9540
diff changeset
   766
(** export theorems **)
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   767
18042
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   768
fun common_exports is_goal inner outer =
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   769
  let
12550
32843ad8160a generalize type variables properly: start with occurrences in objects
wenzelm
parents: 12530
diff changeset
   770
    val gen = generalize_tfrees inner outer;
19310
9b2080d9ed28 subtract (op =);
wenzelm
parents: 19274
diff changeset
   771
    val fixes = subtract (op =) (fixed_names_of outer) (fixed_names_of inner);
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
   772
    val asms = Library.drop (length (assumptions_of outer), assumptions_of inner);
11816
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   773
    val exp_asms = map (fn (cprops, exp) => exp is_goal cprops) asms;
16948
3aef68881781 Sign.typ_unify;
wenzelm
parents: 16894
diff changeset
   774
  in
18255
5ef79b75a002 revert_skolem: fall back on Syntax.deskolem;
wenzelm
parents: 18211
diff changeset
   775
    Goal.norm_hhf_protect
16948
3aef68881781 Sign.typ_unify;
wenzelm
parents: 16894
diff changeset
   776
    #> Seq.EVERY (rev exp_asms)
3aef68881781 Sign.typ_unify;
wenzelm
parents: 16894
diff changeset
   777
    #> Seq.map (fn rule =>
11816
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   778
      let
16992
38bb4f03a887 Thm.full_prop_of;
wenzelm
parents: 16948
diff changeset
   779
        val thy = Thm.theory_of_thm rule;
38bb4f03a887 Thm.full_prop_of;
wenzelm
parents: 16948
diff changeset
   780
        val prop = Thm.full_prop_of rule;
18152
1d1cc715a9e5 moved find_free to term.ML;
wenzelm
parents: 18138
diff changeset
   781
        val frees = map (Thm.cterm_of thy) (List.mapPartial (Term.find_free prop) fixes);
12550
32843ad8160a generalize type variables properly: start with occurrences in objects
wenzelm
parents: 12530
diff changeset
   782
        val tfrees = gen (Term.add_term_tfree_names (prop, []));
11816
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   783
      in
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   784
        rule
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   785
        |> Drule.forall_intr_list frees
18255
5ef79b75a002 revert_skolem: fall back on Syntax.deskolem;
wenzelm
parents: 18211
diff changeset
   786
        |> Goal.norm_hhf_protect
18138
04f0e4ca1451 tvars_intr_list: natural argument order;
wenzelm
parents: 18122
diff changeset
   787
        |> Drule.tvars_intr_list tfrees |> #2
11816
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   788
      end)
545aab7410ac simplified exporter interface;
wenzelm
parents: 11793
diff changeset
   789
  end;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   790
18785
5ae1f1c1b764 renamed export to export_standard (again!), because it includes Drule.local_standard';
wenzelm
parents: 18770
diff changeset
   791
fun export_standard inner outer =
18122
d5a876195499 removed export_plain;
wenzelm
parents: 18043
diff changeset
   792
  let val exp = common_exports false inner outer in
13378
b261d9cdd6b2 export_standard supercedes export_single;
wenzelm
parents: 13284
diff changeset
   793
    fn th =>
18122
d5a876195499 removed export_plain;
wenzelm
parents: 18043
diff changeset
   794
      (case Seq.pull (exp th) of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   795
        SOME (th', _) => th' |> Drule.local_standard
16850
35e07087aba2 sys_error;
wenzelm
parents: 16790
diff changeset
   796
      | NONE => sys_error "Failed to export theorem")
13378
b261d9cdd6b2 export_standard supercedes export_single;
wenzelm
parents: 13284
diff changeset
   797
  end;
12704
7bffaadc581e export_single;
wenzelm
parents: 12576
diff changeset
   798
18122
d5a876195499 removed export_plain;
wenzelm
parents: 18043
diff changeset
   799
val exports = common_exports false;
d5a876195499 removed export_plain;
wenzelm
parents: 18043
diff changeset
   800
val goal_exports = common_exports true;
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   801
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   802
15758
07e382399a96 binds/thms: do not store options, but delete from table;
wenzelm
parents: 15750
diff changeset
   803
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   804
(** bindings **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   805
15758
07e382399a96 binds/thms: do not store options, but delete from table;
wenzelm
parents: 15750
diff changeset
   806
(* delete_update_binds *)
07e382399a96 binds/thms: do not store options, but delete from table;
wenzelm
parents: 15750
diff changeset
   807
07e382399a96 binds/thms: do not store options, but delete from table;
wenzelm
parents: 15750
diff changeset
   808
local
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   809
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
   810
val del_bind = map_binds o Vartab.delete_safe;
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   811
15758
07e382399a96 binds/thms: do not store options, but delete from table;
wenzelm
parents: 15750
diff changeset
   812
fun upd_bind ((x, i), t) =
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   813
  let
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   814
    val T = Term.fastype_of t;
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   815
    val t' =
19270
d928b5468c43 added monomorphic;
wenzelm
parents: 19143
diff changeset
   816
      if null (hidden_polymorphism t T) then t
8637
wenzelm
parents: 8616
diff changeset
   817
      else Var ((x ^ "_has_extra_type_vars_on_rhs", i), T);
18953
93903be7ff66 norm_term: Sign.const_expansion, Envir.expand_atom;
wenzelm
parents: 18928
diff changeset
   818
  in declare_term t' #> map_binds (Vartab.update ((x, i), (T, t'))) end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   819
15758
07e382399a96 binds/thms: do not store options, but delete from table;
wenzelm
parents: 15750
diff changeset
   820
fun del_upd_bind (xi, NONE) = del_bind xi
07e382399a96 binds/thms: do not store options, but delete from table;
wenzelm
parents: 15750
diff changeset
   821
  | del_upd_bind (xi, SOME t) = upd_bind (xi, t);
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   822
15758
07e382399a96 binds/thms: do not store options, but delete from table;
wenzelm
parents: 15750
diff changeset
   823
in
07e382399a96 binds/thms: do not store options, but delete from table;
wenzelm
parents: 15750
diff changeset
   824
07e382399a96 binds/thms: do not store options, but delete from table;
wenzelm
parents: 15750
diff changeset
   825
val delete_update_binds = fold del_upd_bind;
07e382399a96 binds/thms: do not store options, but delete from table;
wenzelm
parents: 15750
diff changeset
   826
07e382399a96 binds/thms: do not store options, but delete from table;
wenzelm
parents: 15750
diff changeset
   827
end;
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
   828
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   829
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   830
(* simult_matches *)
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   831
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   832
fun simult_matches ctxt [] = []
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   833
  | simult_matches ctxt pairs =
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   834
      let
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
   835
        fun fail () = error "Pattern match failed!";
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   836
16031
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
   837
        val maxidx = fold (fn (t1, t2) => fn i =>
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
   838
          Int.max (Int.max (Term.maxidx_of_term t1, Term.maxidx_of_term t2), i)) pairs ~1;
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16348
diff changeset
   839
        val envs = Unify.smash_unifiers (theory_of ctxt, Envir.empty maxidx,
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   840
          map swap pairs);    (*prefer assignment of variables from patterns*)
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   841
        val env =
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   842
          (case Seq.pull envs of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   843
            NONE => fail ()
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   844
          | SOME (env, _) => env);    (*ignore further results*)
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   845
        val domain =
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   846
          filter_out Term.is_replaced_dummy_pattern (map #1 (Drule.vars_of_terms (map #1 pairs)));
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   847
        val _ =    (*may not assign variables from text*)
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   848
          if null (map #1 (Envir.alist_of env) inter (map #1 (Drule.vars_of_terms (map #2 pairs))))
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
   849
          then () else fail ();
16948
3aef68881781 Sign.typ_unify;
wenzelm
parents: 16894
diff changeset
   850
        fun norm_bind (xi, (_, t)) =
18310
b00c9120f6bd match_bind(_i): return terms;
wenzelm
parents: 18255
diff changeset
   851
          if member (op =) domain xi then SOME (xi, Envir.norm_term env t) else NONE;
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   852
      in List.mapPartial norm_bind (Envir.alist_of env) end;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   853
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   854
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   855
(* add_binds(_i) *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   856
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   857
local
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   858
16031
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
   859
fun gen_bind prep (xi as (x, _), raw_t) ctxt =
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   860
  ctxt |> delete_update_binds [(xi, Option.map (prep ctxt) raw_t)];
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   861
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
   862
in
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
   863
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   864
fun drop_schematic (b as (xi, SOME t)) = if null (Term.term_vars t) then b else (xi, NONE)
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   865
  | drop_schematic b = b;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   866
16031
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
   867
val add_binds = fold (gen_bind read_term);
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
   868
val add_binds_i = fold (gen_bind cert_term);
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   869
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16348
diff changeset
   870
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
   871
val auto_bind_goal = auto_bind AutoBind.goal;
64e69a8a945f adapted auto_bind_goal, auto_bind_facts;
wenzelm
parents: 12130
diff changeset
   872
val auto_bind_facts = auto_bind AutoBind.facts;
7925
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   873
8c50b68b890b warn_extra_tfrees (after declare_term);
wenzelm
parents: 7679
diff changeset
   874
end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   875
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   876
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   877
(* match_bind(_i) *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   878
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   879
local
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   880
17860
b4cf247ea0d2 note_thmss, read/cert_vars etc.: natural argument order;
wenzelm
parents: 17756
diff changeset
   881
fun prep_bind prep_pats (raw_pats, t) ctxt =
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   882
  let
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   883
    val ctxt' = declare_term t ctxt;
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   884
    val pats = prep_pats (fastype_of t) ctxt' raw_pats;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   885
    val binds = simult_matches ctxt' (map (rpair t) pats);
17860
b4cf247ea0d2 note_thmss, read/cert_vars etc.: natural argument order;
wenzelm
parents: 17756
diff changeset
   886
  in (binds, ctxt') end;
7670
e302e4269087 added cert_skolem;
wenzelm
parents: 7663
diff changeset
   887
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   888
fun gen_binds prep_terms prep_pats gen raw_binds ctxt =
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   889
  let
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   890
    val ts = prep_terms ctxt (map snd raw_binds);
17860
b4cf247ea0d2 note_thmss, read/cert_vars etc.: natural argument order;
wenzelm
parents: 17756
diff changeset
   891
    val (binds, ctxt') =
b4cf247ea0d2 note_thmss, read/cert_vars etc.: natural argument order;
wenzelm
parents: 17756
diff changeset
   892
      apfst List.concat (fold_map (prep_bind prep_pats) (map fst raw_binds ~~ ts) ctxt);
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   893
    val binds' =
12550
32843ad8160a generalize type variables properly: start with occurrences in objects
wenzelm
parents: 12530
diff changeset
   894
      if gen then map #1 binds ~~ generalize ctxt' ctxt (map #2 binds)
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   895
      else binds;
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   896
    val binds'' = map (apsnd SOME) binds';
18310
b00c9120f6bd match_bind(_i): return terms;
wenzelm
parents: 18255
diff changeset
   897
    val ctxt'' =
b00c9120f6bd match_bind(_i): return terms;
wenzelm
parents: 18255
diff changeset
   898
      warn_extra_tfrees ctxt
b00c9120f6bd match_bind(_i): return terms;
wenzelm
parents: 18255
diff changeset
   899
       (if gen then
b00c9120f6bd match_bind(_i): return terms;
wenzelm
parents: 18255
diff changeset
   900
          ctxt (*sic!*) |> fold declare_term (map #2 binds') |> add_binds_i binds''
b00c9120f6bd match_bind(_i): return terms;
wenzelm
parents: 18255
diff changeset
   901
        else ctxt' |> add_binds_i binds'');
b00c9120f6bd match_bind(_i): return terms;
wenzelm
parents: 18255
diff changeset
   902
  in (ts, ctxt'') end;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   903
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   904
in
5935
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   905
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   906
val match_bind = gen_binds read_terms read_term_pats;
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   907
val match_bind_i = gen_binds (map o cert_term) cert_term_pats;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   908
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   909
end;
5935
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   910
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   911
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   912
(* propositions with patterns *)
5935
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   913
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   914
local
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   915
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   916
fun prep_propp schematic prep_props prep_pats (context, args) =
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   917
  let
17860
b4cf247ea0d2 note_thmss, read/cert_vars etc.: natural argument order;
wenzelm
parents: 17756
diff changeset
   918
    fun prep (_, (raw_pats1, raw_pats2)) (ctxt, prop :: props) =
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   919
          let
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   920
            val ctxt' = declare_term prop ctxt;
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   921
            val pats = prep_pats ctxt' (raw_pats1 @ raw_pats2);    (*simultaneous type inference!*)
19019
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
   922
          in ((prop, chop (length raw_pats1) pats), (ctxt', props)) end
17860
b4cf247ea0d2 note_thmss, read/cert_vars etc.: natural argument order;
wenzelm
parents: 17756
diff changeset
   923
      | prep _ _ = sys_error "prep_propp";
b4cf247ea0d2 note_thmss, read/cert_vars etc.: natural argument order;
wenzelm
parents: 17756
diff changeset
   924
    val (propp, (context', _)) = (fold_map o fold_map) prep args
b4cf247ea0d2 note_thmss, read/cert_vars etc.: natural argument order;
wenzelm
parents: 17756
diff changeset
   925
      (context, prep_props schematic context (List.concat (map (map fst) args)));
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   926
  in (context', propp) end;
5935
6a82c8a1808f term_pat vs. prop_pat;
wenzelm
parents: 5919
diff changeset
   927
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   928
fun matches ctxt (prop, (pats1, pats2)) =
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   929
  simult_matches ctxt (map (rpair prop) pats1 @ map (rpair (Logic.strip_imp_concl prop)) pats2);
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   930
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   931
fun gen_bind_propp prepp (ctxt, raw_args) =
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   932
  let
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   933
    val (ctxt', args) = prepp (ctxt, raw_args);
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   934
    val binds = List.concat (List.concat (map (map (matches ctxt')) args));
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   935
    val propss = map (map #1) args;
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   936
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   937
    (*generalize result: context evaluated now, binds added later*)
8616
90d2fed59be1 support Hindley-Milner polymorphisms in binds and facts;
wenzelm
parents: 8462
diff changeset
   938
    val gen = generalize ctxt' ctxt;
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
   939
    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
   940
  in (ctxt' |> add_binds_i (map (apsnd SOME) binds), (propss, gen_binds)) end;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
   941
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   942
in
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   943
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
   944
val read_propp = prep_propp false read_props read_prop_pats;
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
   945
val cert_propp = prep_propp false cert_props cert_prop_pats;
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   946
val read_propp_schematic = prep_propp true read_props read_prop_pats;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   947
val cert_propp_schematic = prep_propp true cert_props cert_prop_pats;
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   948
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
   949
val bind_propp = gen_bind_propp read_propp;
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
   950
val bind_propp_i = gen_bind_propp cert_propp;
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
   951
val bind_propp_schematic = gen_bind_propp read_propp_schematic;
10554
81edb1d201ab schematic props;
wenzelm
parents: 10465
diff changeset
   952
val bind_propp_schematic_i = gen_bind_propp cert_propp_schematic;
6789
0e5a965de17a auto_bind_goal, auto_bind_facts;
wenzelm
parents: 6762
diff changeset
   953
10465
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   954
end;
4aa6f8b5cdc4 added read_terms, read_props (simulataneous type-inference);
wenzelm
parents: 10381
diff changeset
   955
6789
0e5a965de17a auto_bind_goal, auto_bind_facts;
wenzelm
parents: 6762
diff changeset
   956
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   957
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   958
(** theorems **)
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   959
18042
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   960
(* fact_tac *)
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   961
18122
d5a876195499 removed export_plain;
wenzelm
parents: 18043
diff changeset
   962
fun comp_incr_tac [] _ st = no_tac st
d5a876195499 removed export_plain;
wenzelm
parents: 18043
diff changeset
   963
  | comp_incr_tac (th :: ths) i st =
d5a876195499 removed export_plain;
wenzelm
parents: 18043
diff changeset
   964
      (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
   965
18122
d5a876195499 removed export_plain;
wenzelm
parents: 18043
diff changeset
   966
fun fact_tac facts = Tactic.norm_hhf_tac THEN' comp_incr_tac facts;
d5a876195499 removed export_plain;
wenzelm
parents: 18043
diff changeset
   967
d5a876195499 removed export_plain;
wenzelm
parents: 18043
diff changeset
   968
fun some_fact_tac ctxt = SUBGOAL (fn (goal, i) =>
18042
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   969
  let
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   970
    val index = fact_index_of ctxt;
18042
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   971
    val facts = FactIndex.could_unify index (Term.strip_all_body goal);
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   972
  in fact_tac facts i end);
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   973
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   974
6091
e3cdbd929a24 eliminated tthm type and Attribute structure;
wenzelm
parents: 5994
diff changeset
   975
(* get_thm(s) *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   976
18042
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   977
fun retrieve_thms _ pick ctxt (Fact s) =
16501
fec0cf020bad thmref: Name vs. NameSelection;
wenzelm
parents: 16458
diff changeset
   978
      let
18042
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   979
        val thy = theory_of ctxt;
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   980
        val th = Goal.prove thy [] [] (read_prop ctxt s) (K (ALLGOALS (some_fact_tac ctxt)))
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
   981
          handle ERROR msg => cat_error msg "Failed to retrieve literal fact.";
18042
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   982
      in pick "" [th] end
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   983
  | retrieve_thms from_thy pick ctxt xthmref =
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   984
      let
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   985
        val thy = theory_of ctxt;
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
   986
        val (space, tab) = #1 (thms_of ctxt);
16501
fec0cf020bad thmref: Name vs. NameSelection;
wenzelm
parents: 16458
diff changeset
   987
        val thmref = PureThy.map_name_of_thmref (NameSpace.intern space) xthmref;
fec0cf020bad thmref: Name vs. NameSelection;
wenzelm
parents: 16458
diff changeset
   988
        val name = PureThy.name_of_thmref thmref;
fec0cf020bad thmref: Name vs. NameSelection;
wenzelm
parents: 16458
diff changeset
   989
      in
17412
e26cb20ef0cc TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17384
diff changeset
   990
        (case Symtab.lookup tab name of
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   991
          SOME ths => map (Thm.transfer thy) (PureThy.select_thm thmref ths)
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
   992
        | NONE => from_thy thy xthmref) |> pick name
18042
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
   993
      end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   994
9566
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   995
val get_thm = retrieve_thms PureThy.get_thms PureThy.single_thm;
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   996
val get_thm_closure = retrieve_thms PureThy.get_thms_closure PureThy.single_thm;
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   997
val get_thms = retrieve_thms PureThy.get_thms (K I);
0874bf3a909d thms closure;
wenzelm
parents: 9553
diff changeset
   998
val get_thms_closure = retrieve_thms PureThy.get_thms_closure (K I);
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
   999
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1000
16031
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
  1001
(* valid_thms *)
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
  1002
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
  1003
fun valid_thms ctxt (name, ths) =
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
  1004
  (case try (fn () => get_thms ctxt (Name name)) () of
16031
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
  1005
    NONE => false
16147
59177d5bcb6f renamed cond_extern to extern;
wenzelm
parents: 16031
diff changeset
  1006
  | SOME ths' => Thm.eq_thms (ths, ths'));
16031
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
  1007
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
  1008
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
  1009
(* lthms_containing *)
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
  1010
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
  1011
fun lthms_containing ctxt spec =
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
  1012
  FactIndex.find (fact_index_of ctxt) spec
18043
2427edb2e8a2 lthms_containing: not o valid_thms;
wenzelm
parents: 18042
diff changeset
  1013
  |> map ((not o valid_thms ctxt) ? apfst (fn name =>
18042
f9890c615c0e added fact_tac, some_fact_tac;
wenzelm
parents: 17977
diff changeset
  1014
    NameSpace.hidden (if name = "" then "unnamed" else name)));
16031
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
  1015
fbf3471214d6 moved everything related to thms_containing to find_theorems.ML;
wenzelm
parents: 15979
diff changeset
  1016
13425
119ae829ad9b support for split assumptions in cases (hyps vs. prems);
wenzelm
parents: 13415
diff changeset
  1017
(* name space operations *)
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
  1018
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1019
val extern_thm = NameSpace.extern o #1 o #1 o thms_of;
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
  1020
19062
0fd52e819c24 replaced qualified_force_prefix to sticky_prefix;
wenzelm
parents: 19033
diff changeset
  1021
val no_base_names   = map_naming NameSpace.no_base_names;
16147
59177d5bcb6f renamed cond_extern to extern;
wenzelm
parents: 16031
diff changeset
  1022
val qualified_names = map_naming NameSpace.qualified_names;
19062
0fd52e819c24 replaced qualified_force_prefix to sticky_prefix;
wenzelm
parents: 19033
diff changeset
  1023
val sticky_prefix   = map_naming o NameSpace.sticky_prefix;
0fd52e819c24 replaced qualified_force_prefix to sticky_prefix;
wenzelm
parents: 19033
diff changeset
  1024
val restore_naming  = map_naming o K o naming_of;
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
  1025
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1026
fun hide_thms fully names = map_thms (fn ((space, tab), index) =>
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1027
  ((fold (NameSpace.hide fully) names space, tab), index));
13425
119ae829ad9b support for split assumptions in cases (hyps vs. prems);
wenzelm
parents: 13415
diff changeset
  1028
12309
03e9287be350 name space for local thms (export cond_extern, qualified);
wenzelm
parents: 12291
diff changeset
  1029
17360
fa1f262dbc4e added add_view, export_view (supercedes adhoc view arguments);
wenzelm
parents: 17221
diff changeset
  1030
(* put_thms *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1031
19079
9a7678a0736d added put_thms_internal: local_naming, no fact index;
wenzelm
parents: 19062
diff changeset
  1032
fun put_thms _ ("", NONE) ctxt = ctxt
19143
a64fef2d7073 put_thms: do_index;
wenzelm
parents: 19079
diff changeset
  1033
  | put_thms do_index ("", SOME ths) ctxt = ctxt |> map_thms (fn (facts, index) =>
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1034
      let
19143
a64fef2d7073 put_thms: do_index;
wenzelm
parents: 19079
diff changeset
  1035
        val index' = FactIndex.add_local do_index (is_known ctxt) ("", ths) index;
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1036
      in (facts, index') end)
19079
9a7678a0736d added put_thms_internal: local_naming, no fact index;
wenzelm
parents: 19062
diff changeset
  1037
  | put_thms _ (bname, NONE) ctxt = ctxt |> map_thms (fn ((space, tab), index) =>
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1038
      let
19387
6af442fa80c3 added full_name;
wenzelm
parents: 19371
diff changeset
  1039
        val name = full_name ctxt bname;
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1040
        val tab' = Symtab.delete_safe name tab;
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1041
      in ((space, tab'), index) end)
19079
9a7678a0736d added put_thms_internal: local_naming, no fact index;
wenzelm
parents: 19062
diff changeset
  1042
  | put_thms do_index (bname, SOME ths) ctxt = ctxt |> map_thms (fn ((space, tab), index) =>
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1043
      let
19387
6af442fa80c3 added full_name;
wenzelm
parents: 19371
diff changeset
  1044
        val name = full_name ctxt bname;
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1045
        val space' = NameSpace.declare (naming_of ctxt) name space;
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1046
        val tab' = Symtab.update (name, ths) tab;
19143
a64fef2d7073 put_thms: do_index;
wenzelm
parents: 19079
diff changeset
  1047
        val index' = FactIndex.add_local do_index (is_known ctxt) (name, ths) index;
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1048
      in ((space', tab'), index') end);
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1049
19079
9a7678a0736d added put_thms_internal: local_naming, no fact index;
wenzelm
parents: 19062
diff changeset
  1050
fun put_thms_internal thms ctxt =
9a7678a0736d added put_thms_internal: local_naming, no fact index;
wenzelm
parents: 19062
diff changeset
  1051
  ctxt |> map_naming (K local_naming) |> put_thms false thms |> restore_naming ctxt;
9a7678a0736d added put_thms_internal: local_naming, no fact index;
wenzelm
parents: 19062
diff changeset
  1052
7606
7905a74eb068 added reset_thms;
wenzelm
parents: 7575
diff changeset
  1053
14564
3667b4616e9a renamed have_thms to note_thms;
wenzelm
parents: 14508
diff changeset
  1054
(* note_thmss *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1055
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12704
diff changeset
  1056
local
16147
59177d5bcb6f renamed cond_extern to extern;
wenzelm
parents: 16031
diff changeset
  1057
17860
b4cf247ea0d2 note_thmss, read/cert_vars etc.: natural argument order;
wenzelm
parents: 17756
diff changeset
  1058
fun gen_note_thmss get = fold_map (fn ((name, more_attrs), ths_attrs) => fn ctxt =>
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1059
  let
17360
fa1f262dbc4e added add_view, export_view (supercedes adhoc view arguments);
wenzelm
parents: 17221
diff changeset
  1060
    fun app (th, attrs) (ct, ths) =
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
  1061
      let val (ct', th') = foldl_map (Thm.proof_attributes (attrs @ more_attrs)) (ct, get ctxt th)
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12704
diff changeset
  1062
      in (ct', th' :: ths) end;
17360
fa1f262dbc4e added add_view, export_view (supercedes adhoc view arguments);
wenzelm
parents: 17221
diff changeset
  1063
    val (ctxt', rev_thms) = fold app ths_attrs (ctxt, []);
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
  1064
    val thms = List.concat (rev rev_thms);
19079
9a7678a0736d added put_thms_internal: local_naming, no fact index;
wenzelm
parents: 19062
diff changeset
  1065
  in ((name, thms), ctxt' |> put_thms true (name, SOME thms)) end);
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12704
diff changeset
  1066
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12704
diff changeset
  1067
in
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12704
diff changeset
  1068
16147
59177d5bcb6f renamed cond_extern to extern;
wenzelm
parents: 16031
diff changeset
  1069
val note_thmss = gen_note_thmss get_thms;
59177d5bcb6f renamed cond_extern to extern;
wenzelm
parents: 16031
diff changeset
  1070
val note_thmss_i = gen_note_thmss (K I);
15696
1da4ce092c0b First release of interpretation commands.
ballarin
parents: 15624
diff changeset
  1071
1da4ce092c0b First release of interpretation commands.
ballarin
parents: 15624
diff changeset
  1072
val note_thmss_accesses = gen_note_thmss get_thms;
1da4ce092c0b First release of interpretation commands.
ballarin
parents: 15624
diff changeset
  1073
val note_thmss_accesses_i = gen_note_thmss (K I);
12711
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12704
diff changeset
  1074
6a9412dd7d24 have_thmss vs. have_thmss_i;
wenzelm
parents: 12704
diff changeset
  1075
end;
9196
1f6f66fe777a facts: handle multiple lists of arguments;
wenzelm
parents: 9133
diff changeset
  1076
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1077
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1078
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1079
(** parameters **)
17360
fa1f262dbc4e added add_view, export_view (supercedes adhoc view arguments);
wenzelm
parents: 17221
diff changeset
  1080
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1081
(* variables *)
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1082
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
  1083
local
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
  1084
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1085
fun prep_vars prep_typ internal legacy =
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1086
  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
  1087
    let
19371
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
  1088
      val (x, mx) = Syntax.const_mixfix raw_x raw_mx;
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1089
      val _ =
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
  1090
        if not legacy andalso not (Syntax.is_identifier (no_skolem internal x)) then
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
  1091
          error ("Illegal variable name: " ^ quote x)
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1092
        else ();
12504
5b46173df7ad export used_types;
wenzelm
parents: 12414
diff changeset
  1093
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1094
      fun cond_tvars T =
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1095
        if internal then T
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
  1096
        else Type.no_tvars T handle TYPE (msg, _, _) => error msg;
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1097
      val opt_T = Option.map (cond_tvars o prep_typ ctxt) raw_T;
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1098
      val var = (x, opt_T, mx);
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1099
    in (var, ctxt |> declare_var var |> #2) end);
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1100
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
  1101
in
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
  1102
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1103
val read_vars        = prep_vars read_typ false false;
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1104
val cert_vars        = prep_vars cert_typ true false;
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1105
val read_vars_legacy = prep_vars read_typ true true;
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1106
val cert_vars_legacy = prep_vars cert_typ true true;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1107
10381
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
  1108
end;
4dfbcad19bfb fixed two obscurities of "fix": predeclare_terms;
wenzelm
parents: 9733
diff changeset
  1109
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1110
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1111
(* abbreviations *)
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1112
19371
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
  1113
val expand_abbrevs = map_consts o apsnd o Consts.expand_abbrevs;
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
  1114
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1115
local
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1116
19371
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
  1117
fun gen_abbrevs prep_vars prep_term (mode, inout) = fold (fn (raw_c, raw_t, raw_mx) => fn ctxt =>
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1118
  let
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1119
    val ([(c, _, mx)], _) = prep_vars [(raw_c, NONE, raw_mx)] ctxt;
19387
6af442fa80c3 added full_name;
wenzelm
parents: 19371
diff changeset
  1120
    val (c', b) = Syntax.mixfix_const (full_name ctxt c) mx;
19371
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
  1121
    val [t] = polymorphic ctxt [prep_term (ctxt |> expand_abbrevs false) raw_t];
19019
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
  1122
    val T = Term.fastype_of t;
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1123
    val _ =
19270
d928b5468c43 added monomorphic;
wenzelm
parents: 19143
diff changeset
  1124
      if null (hidden_polymorphism t T) then ()
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1125
      else error ("Extra type variables on rhs of abbreviation: " ^ quote c);
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1126
  in
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1127
    ctxt
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1128
    |> declare_term t
19387
6af442fa80c3 added full_name;
wenzelm
parents: 19371
diff changeset
  1129
    |> map_consts
6af442fa80c3 added full_name;
wenzelm
parents: 19371
diff changeset
  1130
      (apsnd (Consts.abbreviate (pp ctxt) (tsig_of ctxt) (naming_of ctxt) mode ((c, t), b)))
6af442fa80c3 added full_name;
wenzelm
parents: 19371
diff changeset
  1131
    |> map_syntax (LocalSyntax.add_syntax (theory_of ctxt) (mode, inout) [(false, (c', T, mx))])
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1132
  end);
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1133
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1134
in
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1135
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1136
val add_abbrevs = gen_abbrevs read_vars read_term;
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1137
val add_abbrevs_i = gen_abbrevs cert_vars cert_term;
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1138
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1139
end;
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1140
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1141
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1142
(* fixes *)
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1143
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1144
local
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1145
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1146
fun prep_mixfix (x, T, mx) =
19019
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
  1147
  if mx <> NoSyn andalso mx <> Structure andalso
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
  1148
      (can Syntax.dest_internal x orelse can Syntax.dest_skolem x) then
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1149
    error ("Illegal mixfix syntax for internal/skolem constant " ^ quote x)
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1150
  else (true, (x, T, mx));
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1151
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1152
fun no_dups _ [] = ()
18900
e7d4e51bd4b1 tuned msg;
wenzelm
parents: 18879
diff changeset
  1153
  | no_dups ctxt dups = error ("Duplicate fixed variable(s): " ^ commas_quote dups);
11925
4747b4b84093 added read_prop_schematic;
wenzelm
parents: 11918
diff changeset
  1154
18844
9dd789841018 invent_fixes: merely enter body temporarily;
wenzelm
parents: 18827
diff changeset
  1155
fun gen_fixes prep raw_vars ctxt =
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1156
  let
19371
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
  1157
    val thy = theory_of ctxt;
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
  1158
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1159
    val (ys, zs) = split_list (fixes_of ctxt);
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1160
    val (vars, ctxt') = prep raw_vars ctxt;
12130
30d9143aff7e syntactic declaration of external *and* internal versions of fixes;
wenzelm
parents: 12123
diff changeset
  1161
    val xs = map #1 vars;
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1162
    val _ = no_dups ctxt (duplicates (op =) xs);
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1163
    val xs' =
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1164
      if is_body ctxt then Term.variantlist (map Syntax.skolem xs, zs)
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1165
      else (no_dups ctxt (xs inter_string ys); no_dups ctxt (xs inter_string zs); xs);
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1166
  in
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1167
    ctxt'
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1168
    |> map_fixes (fn (b, fixes) => (b, rev (xs ~~ xs') @ fixes))
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1169
    |> fold_map declare_var (map2 (fn x' => fn (_, T, mx) => (x', T, mx)) xs' vars)
19371
32fc9743803a add_abbrevs(_i): support print mode;
wenzelm
parents: 19310
diff changeset
  1170
    |-> (map_syntax o LocalSyntax.add_syntax thy Syntax.default_mode o map prep_mixfix)
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1171
    |> pair xs'
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1172
  end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1173
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1174
in
7679
99912beb8fa0 improved 'fix' / Skolem interfaces;
wenzelm
parents: 7670
diff changeset
  1175
18844
9dd789841018 invent_fixes: merely enter body temporarily;
wenzelm
parents: 18827
diff changeset
  1176
val add_fixes = gen_fixes read_vars;
9dd789841018 invent_fixes: merely enter body temporarily;
wenzelm
parents: 18827
diff changeset
  1177
val add_fixes_i = gen_fixes cert_vars;
9dd789841018 invent_fixes: merely enter body temporarily;
wenzelm
parents: 18827
diff changeset
  1178
val add_fixes_legacy = gen_fixes cert_vars_legacy;
8096
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1179
4da940d100f5 TypeInfer.logicT;
wenzelm
parents: 7928
diff changeset
  1180
end;
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1181
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1182
18844
9dd789841018 invent_fixes: merely enter body temporarily;
wenzelm
parents: 18827
diff changeset
  1183
(* invent fixes *)
9dd789841018 invent_fixes: merely enter body temporarily;
wenzelm
parents: 18827
diff changeset
  1184
9dd789841018 invent_fixes: merely enter body temporarily;
wenzelm
parents: 18827
diff changeset
  1185
fun invent_fixes xs ctxt =
9dd789841018 invent_fixes: merely enter body temporarily;
wenzelm
parents: 18827
diff changeset
  1186
  ctxt
9dd789841018 invent_fixes: merely enter body temporarily;
wenzelm
parents: 18827
diff changeset
  1187
  |> set_body true
9dd789841018 invent_fixes: merely enter body temporarily;
wenzelm
parents: 18827
diff changeset
  1188
  |> add_fixes_i (map (fn x => (x, NONE, NoSyn)) xs)
9dd789841018 invent_fixes: merely enter body temporarily;
wenzelm
parents: 18827
diff changeset
  1189
  ||> restore_body ctxt;
9dd789841018 invent_fixes: merely enter body temporarily;
wenzelm
parents: 18827
diff changeset
  1190
9dd789841018 invent_fixes: merely enter body temporarily;
wenzelm
parents: 18827
diff changeset
  1191
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1192
(* fixes vs. frees *)
12016
425289df84d3 fix_frees;
wenzelm
parents: 12008
diff changeset
  1193
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1194
fun fix_frees t ctxt =
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1195
  let
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1196
    fun add (Free (x, T)) = if is_fixed ctxt x then I else insert (op =) (x, SOME T, NoSyn)
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1197
      | add _ = I;
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1198
    val fixes = rev (fold_aterms add t []);
18809
95b4a51781aa added invent_fixes;
wenzelm
parents: 18785
diff changeset
  1199
  in
95b4a51781aa added invent_fixes;
wenzelm
parents: 18785
diff changeset
  1200
    ctxt
95b4a51781aa added invent_fixes;
wenzelm
parents: 18785
diff changeset
  1201
    |> declare_term t
95b4a51781aa added invent_fixes;
wenzelm
parents: 18785
diff changeset
  1202
    |> set_body false
95b4a51781aa added invent_fixes;
wenzelm
parents: 18785
diff changeset
  1203
    |> (snd o add_fixes_i fixes)
95b4a51781aa added invent_fixes;
wenzelm
parents: 18785
diff changeset
  1204
    |> restore_body ctxt
95b4a51781aa added invent_fixes;
wenzelm
parents: 18785
diff changeset
  1205
  end;
6895
450b1f67f099 added transfer_used_names;
wenzelm
parents: 6875
diff changeset
  1206
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1207
fun auto_fixes (arg as (ctxt, (propss, x))) =
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1208
  if is_body ctxt then arg
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1209
  else ((fold o fold) fix_frees propss ctxt, (propss, x));
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1210
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1211
fun bind_fixes xs ctxt =
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1212
  let
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1213
    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
  1214
    fun bind (t as Free (x, T)) =
18340
3fdff270aa04 removed fixed_tr: now handled in syntax module;
wenzelm
parents: 18310
diff changeset
  1215
          if member (op =) xs x then
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15456
diff changeset
  1216
            (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
  1217
          else t
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1218
      | bind (t $ u) = bind t $ bind u
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1219
      | 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
  1220
      | bind a = a;
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1221
  in (bind, ctxt') end;
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1222
9291
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1223
23705d14be8f "_i" arguments now expected to have skolems already internalized;
wenzelm
parents: 9274
diff changeset
  1224
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1225
(** assumptions **)
18187
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
  1226
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1227
(* generic assms *)
18187
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
  1228
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
  1229
local
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
  1230
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1231
fun gen_assm ((name, attrs), props) ctxt =
18187
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
  1232
  let
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
  1233
    val cprops = map (Thm.cterm_of (theory_of ctxt)) props;
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
  1234
    val asms = map (Goal.norm_hhf o Thm.assume) cprops;
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
  1235
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
  1236
    val ths = map (fn th => ([th], [])) asms;
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
  1237
    val ([(_, thms)], ctxt') =
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
  1238
      ctxt
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
  1239
      |> auto_bind_facts props
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
  1240
      |> note_thmss_i [((name, attrs), ths)];
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
  1241
  in ((cprops, (name, asms), (name, thms)), ctxt') end;
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
  1242
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
  1243
fun gen_assms prepp exp args ctxt =
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
  1244
  let
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1245
    val (propss, ctxt1) = swap (prepp (ctxt, map snd args));
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1246
    val (results, ctxt2) = fold_map gen_assm (map fst args ~~ propss) ctxt1;
18187
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
  1247
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1248
    val new_asms = List.concat (map #1 results);
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1249
    val new_prems = map #2 results;
18809
95b4a51781aa added invent_fixes;
wenzelm
parents: 18785
diff changeset
  1250
    val ctxt3 = ctxt2
95b4a51781aa added invent_fixes;
wenzelm
parents: 18785
diff changeset
  1251
      |> map_assms (fn (asms, prems) => (asms @ [(new_asms, exp)], prems @ new_prems))
95b4a51781aa added invent_fixes;
wenzelm
parents: 18785
diff changeset
  1252
    val ctxt4 = ctxt3
19079
9a7678a0736d added put_thms_internal: local_naming, no fact index;
wenzelm
parents: 19062
diff changeset
  1253
      |> put_thms_internal (AutoBind.premsN, SOME (prems_of ctxt3));
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1254
  in (map #3 results, warn_extra_tfrees ctxt ctxt4) end;
18187
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
  1255
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
  1256
in
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
  1257
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1258
val add_assms = gen_assms (apsnd #1 o bind_propp);
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1259
val add_assms_i = gen_assms (apsnd #1 o bind_propp_i);
18187
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
  1260
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
  1261
end;
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
  1262
ec44df8ffd21 added revert_skolem, mk_def, add_def;
wenzelm
parents: 18152
diff changeset
  1263
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1264
(* basic assumptions *)
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1265
18879
7aa8cd3812d3 improved comments;
wenzelm
parents: 18857
diff changeset
  1266
(*
7aa8cd3812d3 improved comments;
wenzelm
parents: 18857
diff changeset
  1267
    [A]
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1268
     :
18879
7aa8cd3812d3 improved comments;
wenzelm
parents: 18857
diff changeset
  1269
     B
7aa8cd3812d3 improved comments;
wenzelm
parents: 18857
diff changeset
  1270
  --------
7aa8cd3812d3 improved comments;
wenzelm
parents: 18857
diff changeset
  1271
  #A ==> B
7aa8cd3812d3 improved comments;
wenzelm
parents: 18857
diff changeset
  1272
*)
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1273
fun assume_export true = Seq.single oo Drule.implies_intr_protected
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1274
  | assume_export false = Seq.single oo Drule.implies_intr_list;
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1275
18879
7aa8cd3812d3 improved comments;
wenzelm
parents: 18857
diff changeset
  1276
(*
7aa8cd3812d3 improved comments;
wenzelm
parents: 18857
diff changeset
  1277
    [A]
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1278
     :
18879
7aa8cd3812d3 improved comments;
wenzelm
parents: 18857
diff changeset
  1279
     B
7aa8cd3812d3 improved comments;
wenzelm
parents: 18857
diff changeset
  1280
  -------
7aa8cd3812d3 improved comments;
wenzelm
parents: 18857
diff changeset
  1281
  A ==> B
7aa8cd3812d3 improved comments;
wenzelm
parents: 18857
diff changeset
  1282
*)
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1283
fun presume_export _ = assume_export false;
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1284
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1285
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1286
(* additional views *)
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1287
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1288
fun add_view outer view = map_assms (fn (asms, prems) =>
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1289
  let
19019
412009243085 added map_theory;
wenzelm
parents: 19001
diff changeset
  1290
    val (asms1, asms2) = chop (length (assumptions_of outer)) asms;
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1291
    val asms' = asms1 @ [(view, assume_export)] @ asms2;
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1292
  in (asms', prems) end);
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1293
18785
5ae1f1c1b764 renamed export to export_standard (again!), because it includes Drule.local_standard';
wenzelm
parents: 18770
diff changeset
  1294
fun export_view view inner outer = export_standard (add_view outer view inner) outer;
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1295
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1296
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1297
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1298
(** cases **)
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1299
16147
59177d5bcb6f renamed cond_extern to extern;
wenzelm
parents: 16031
diff changeset
  1300
local
59177d5bcb6f renamed cond_extern to extern;
wenzelm
parents: 16031
diff changeset
  1301
16668
fdb4992cf1d2 avoid polyeq;
wenzelm
parents: 16540
diff changeset
  1302
fun rem_case name = remove (fn (x: string, (y, _)) => x = y) name;
16147
59177d5bcb6f renamed cond_extern to extern;
wenzelm
parents: 16031
diff changeset
  1303
18476
49dde7b7b14a cases: main is_proper flag;
wenzelm
parents: 18428
diff changeset
  1304
fun add_case _ ("", _) cases = cases
49dde7b7b14a cases: main is_proper flag;
wenzelm
parents: 18428
diff changeset
  1305
  | add_case _ (name, NONE) cases = rem_case name cases
49dde7b7b14a cases: main is_proper flag;
wenzelm
parents: 18428
diff changeset
  1306
  | 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
  1307
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
  1308
fun prep_case name fxs c =
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1309
  let
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1310
    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
  1311
      | replace [] ys = ys
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
  1312
      | replace (_ :: _) [] = error ("Too many parameters for case " ^ quote name);
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1313
    val RuleCases.Case {fixes, assumes, binds, cases} = c;
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1314
    val fixes' = replace fxs fixes;
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1315
    val binds' = map drop_schematic binds;
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1316
  in
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1317
    if null (fold (Term.add_tvarsT o snd) fixes []) andalso
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1318
      null (fold (fold Term.add_vars o snd) assumes []) then
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1319
        RuleCases.Case {fixes = fixes', assumes = assumes, binds = binds', cases = cases}
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
  1320
    else error ("Illegal schematic variable(s) in case " ^ quote name)
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1321
  end;
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1322
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1323
fun fix (x, T) ctxt =
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1324
  let
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1325
    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
  1326
    val t = bind (Free (x, T));
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1327
  in (t, ctxt' |> declare_syntax t) end;
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1328
16147
59177d5bcb6f renamed cond_extern to extern;
wenzelm
parents: 16031
diff changeset
  1329
in
59177d5bcb6f renamed cond_extern to extern;
wenzelm
parents: 16031
diff changeset
  1330
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1331
fun add_cases is_proper = map_cases o fold (add_case is_proper);
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1332
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1333
fun case_result c ctxt =
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1334
  let
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1335
    val RuleCases.Case {fixes, ...} = c;
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1336
    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
  1337
    val RuleCases.Case {assumes, binds, cases, ...} = RuleCases.apply ts c;
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1338
  in
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1339
    ctxt'
18699
f3bfe81b6e58 case_result: drop_schematic, i.e. be permissive about illegal binds;
wenzelm
parents: 18678
diff changeset
  1340
    |> add_binds_i (map drop_schematic binds)
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1341
    |> add_cases true (map (apsnd SOME) cases)
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1342
    |> pair (assumes, (binds, cases))
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1343
  end;
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1344
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1345
val apply_case = apfst fst oo case_result;
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1346
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
  1347
fun get_case ctxt name xs =
17184
3d80209e9a53 use AList operations;
wenzelm
parents: 17072
diff changeset
  1348
  (case AList.lookup (op =) (cases_of ctxt) name of
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
  1349
    NONE => error ("Unknown case: " ^ quote name)
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18672
diff changeset
  1350
  | SOME (c, _) => prep_case name xs c);
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1351
16147
59177d5bcb6f renamed cond_extern to extern;
wenzelm
parents: 16031
diff changeset
  1352
end;
8373
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1353
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1354
e7237c8fe29e handling of local contexts: print_cases, get_case, add_cases;
wenzelm
parents: 8186
diff changeset
  1355
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1356
(** print context information **)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1357
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1358
val verbose = ref false;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1359
fun verb f x = if ! verbose then f (x ()) else [];
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1360
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1361
fun setmp_verbose f x = Library.setmp verbose true f x;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1362
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1363
fun pretty_items prt name items =
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1364
  let
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1365
    fun prt_itms (name, [x]) = Pretty.block [Pretty.str (name ^ ":"), Pretty.brk 1, prt x]
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1366
      | prt_itms (name, xs) = Pretty.big_list (name ^ ":") (map prt xs);
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1367
  in
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1368
    if null items andalso not (! verbose) then []
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1369
    else [Pretty.big_list name (map prt_itms items)]
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1370
  end;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1371
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1372
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1373
(* local syntax *)
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1374
12093
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1375
val print_syntax = Syntax.print_syntax o syn_of;
12072
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1376
4281198fb8cd local syntax: add_syntax, proper read/pretty functions;
wenzelm
parents: 12066
diff changeset
  1377
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1378
(* local consts *)
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1379
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1380
fun pretty_consts ctxt =
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1381
  let
19033
24e251657e56 consts: maintain thy version for efficient transfer;
wenzelm
parents: 19019
diff changeset
  1382
    val ((_, globals), (space, consts)) =
24e251657e56 consts: maintain thy version for efficient transfer;
wenzelm
parents: 19019
diff changeset
  1383
      pairself (#constants o Consts.dest) (#consts (rep_context ctxt));
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1384
    fun local_abbrev (_, (_, NONE)) = I
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1385
      | local_abbrev (c, (T, SOME t)) =
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1386
          if Symtab.defined globals c then I else cons (c, Logic.mk_equals (Const (c, T), t));
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1387
    val abbrevs = NameSpace.extern_table (space, Symtab.make (Symtab.fold local_abbrev consts []));
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1388
  in
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1389
    if null abbrevs andalso not (! verbose) then []
19310
9b2080d9ed28 subtract (op =);
wenzelm
parents: 19274
diff changeset
  1390
    else [Pretty.big_list "abbreviations:" (map (pretty_term_no_abbrevs ctxt o #2) abbrevs)]
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1391
  end;
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1392
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1393
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1394
(* term bindings *)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1395
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
  1396
fun pretty_binds ctxt =
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1397
  let
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
  1398
    val binds = binds_of ctxt;
19310
9b2080d9ed28 subtract (op =);
wenzelm
parents: 19274
diff changeset
  1399
    fun prt_bind (xi, (T, t)) = pretty_term_no_abbrevs ctxt (Logic.mk_equals (Var (xi, T), t));
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1400
  in
15758
07e382399a96 binds/thms: do not store options, but delete from table;
wenzelm
parents: 15750
diff changeset
  1401
    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
  1402
    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
  1403
  end;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1404
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1405
val print_binds = Pretty.writeln o Pretty.chunks o pretty_binds;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1406
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1407
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1408
(* local theorems *)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1409
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
  1410
fun pretty_lthms ctxt =
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1411
  pretty_items (pretty_thm ctxt) "facts:" (NameSpace.extern_table (#1 (thms_of ctxt)));
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1412
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1413
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
  1414
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1415
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1416
(* local contexts *)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1417
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
  1418
fun pretty_cases ctxt =
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1419
  let
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1420
    val prt_term = pretty_term ctxt;
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1421
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1422
    fun prt_let (xi, t) = Pretty.block
10818
37fa05a12459 tuned output;
wenzelm
parents: 10810
diff changeset
  1423
      [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
  1424
        Pretty.quote (prt_term t)];
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1425
13425
119ae829ad9b support for split assumptions in cases (hyps vs. prems);
wenzelm
parents: 13415
diff changeset
  1426
    fun prt_asm (a, ts) = Pretty.block (Pretty.breaks
119ae829ad9b support for split assumptions in cases (hyps vs. prems);
wenzelm
parents: 13415
diff changeset
  1427
      ((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
  1428
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1429
    fun prt_sect _ _ _ [] = []
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1430
      | prt_sect s sep prt xs = [Pretty.block (Pretty.breaks (Pretty.str s ::
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
  1431
            List.concat (Library.separate sep (map (Library.single o prt) xs))))];
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1432
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1433
    fun prt_case (name, (fixes, (asms, (lets, cs)))) = Pretty.block (Pretty.fbreaks
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1434
      (Pretty.str (name ^ ":") ::
11915
df030220a2a8 print fixed names as plain strings;
wenzelm
parents: 11816
diff changeset
  1435
        prt_sect "fix" [] (Pretty.str o fst) fixes @
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1436
        prt_sect "let" [Pretty.str "and"] prt_let
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
  1437
          (List.mapPartial (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
  1438
        (if forall (null o #2) asms then []
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1439
          else prt_sect "assume" [Pretty.str "and"] prt_asm asms) @
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1440
        prt_sect "subcases:" [] (Pretty.str o fst) cs));
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
  1441
18476
49dde7b7b14a cases: main is_proper flag;
wenzelm
parents: 18428
diff changeset
  1442
    fun add_case (_, (_, false)) = I
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1443
      | add_case (name, (c as RuleCases.Case {fixes, ...}, true)) =
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1444
          cons (name, (fixes, #1 (case_result c ctxt)));
18476
49dde7b7b14a cases: main is_proper flag;
wenzelm
parents: 18428
diff changeset
  1445
    val cases = fold add_case (cases_of ctxt) [];
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1446
  in
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1447
    if null cases andalso not (! verbose) then []
18476
49dde7b7b14a cases: main is_proper flag;
wenzelm
parents: 18428
diff changeset
  1448
    else [Pretty.big_list "cases:" (map prt_case cases)]
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1449
  end;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1450
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1451
val print_cases = Pretty.writeln o Pretty.chunks o pretty_cases;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1452
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1453
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1454
(* core context *)
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1455
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1456
val prems_limit = ref 10;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1457
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1458
fun pretty_ctxt ctxt =
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1459
  let
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1460
    val prt_term = pretty_term ctxt;
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1461
12093
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1462
    (*structures*)
19001
64e4b5bc6443 tuned comment;
wenzelm
parents: 18971
diff changeset
  1463
    val structs = LocalSyntax.structs_of (syntax_of ctxt);
12093
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1464
    val prt_structs = if null structs then []
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1465
      else [Pretty.block (Pretty.str "structures:" :: Pretty.brk 1 ::
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1466
        Pretty.commas (map Pretty.str structs))];
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1467
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1468
    (*fixes*)
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1469
    fun prt_fix (x, x') =
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1470
      if x = x' then Pretty.str x
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1471
      else Pretty.block [Pretty.str x, Pretty.str " =", Pretty.brk 1, prt_term (Syntax.free x')];
18340
3fdff270aa04 removed fixed_tr: now handled in syntax module;
wenzelm
parents: 18310
diff changeset
  1472
    val fixes =
3fdff270aa04 removed fixed_tr: now handled in syntax module;
wenzelm
parents: 18310
diff changeset
  1473
      rev (filter_out ((can Syntax.dest_internal orf member (op =) structs) o #1) (fixes_of ctxt));
12093
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1474
    val prt_fixes = if null fixes then []
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1475
      else [Pretty.block (Pretty.str "fixed variables:" :: Pretty.brk 1 ::
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1476
        Pretty.commas (map prt_fix fixes))];
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1477
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1478
    (*prems*)
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1479
    val limit = ! prems_limit;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1480
    val prems = prems_of ctxt;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1481
    val len = length prems;
12093
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1482
    val prt_prems = if null prems then []
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1483
      else [Pretty.big_list "prems:" ((if len <= limit then [] else [Pretty.str "..."]) @
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1484
        map (pretty_thm ctxt) (Library.drop (len - limit, prems)))];
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1485
1b890f1e0b4d syntax for structures;
wenzelm
parents: 12086
diff changeset
  1486
  in prt_structs @ prt_fixes @ prt_prems end;
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1487
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1488
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1489
(* main context *)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1490
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
  1491
fun pretty_context ctxt =
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1492
  let
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1493
    val prt_term = pretty_term ctxt;
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1494
    val prt_typ = pretty_typ ctxt;
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1495
    val prt_sort = pretty_sort ctxt;
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1496
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1497
    (*theory*)
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1498
    val pretty_thy = Pretty.block
17384
wenzelm
parents: 17360
diff changeset
  1499
      [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
  1500
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1501
    (*defaults*)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1502
    fun prt_atom prt prtT (x, X) = Pretty.block
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1503
      [prt x, Pretty.str " ::", Pretty.brk 1, prtT X];
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1504
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1505
    fun prt_var (x, ~1) = prt_term (Syntax.free x)
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1506
      | prt_var xi = prt_term (Syntax.var xi);
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1507
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1508
    fun prt_varT (x, ~1) = prt_typ (TFree (x, []))
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1509
      | prt_varT xi = prt_typ (TVar (xi, []));
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1510
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1511
    val prt_defT = prt_atom prt_var prt_typ;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1512
    val prt_defS = prt_atom prt_varT prt_sort;
16540
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
  1513
e3d61eff7c12 removed proof data (see Pure/context.ML);
wenzelm
parents: 16501
diff changeset
  1514
    val (types, sorts, used, _) = defaults_of ctxt;
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1515
  in
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1516
    verb single (K pretty_thy) @
18672
ac1a048ca7dd uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
wenzelm
parents: 18619
diff changeset
  1517
    pretty_ctxt ctxt @
18971
f95650f3b5bf added local consts component;
wenzelm
parents: 18953
diff changeset
  1518
    verb pretty_consts (K ctxt) @
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1519
    verb pretty_binds (K ctxt) @
12057
9b1e67278f07 added pretty/print functions with context;
wenzelm
parents: 12048
diff changeset
  1520
    verb pretty_lthms (K ctxt) @
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1521
    verb pretty_cases (K ctxt) @
18609
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1522
    verb single (fn () => Pretty.big_list "type constraints:" (map prt_defT (Vartab.dest types))) @
b026652ede90 support nested cases;
wenzelm
parents: 18476
diff changeset
  1523
    verb single (fn () => Pretty.big_list "default sorts:" (map prt_defS (Vartab.dest sorts))) @
18809
95b4a51781aa added invent_fixes;
wenzelm
parents: 18785
diff changeset
  1524
    verb single (fn () => Pretty.strs ("used type variable names:" :: rev used))
10810
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1525
  end;
619586bd854b apply_case: more robust handling of bounds;
wenzelm
parents: 10583
diff changeset
  1526
18809
95b4a51781aa added invent_fixes;
wenzelm
parents: 18785
diff changeset
  1527
95b4a51781aa added invent_fixes;
wenzelm
parents: 18785
diff changeset
  1528
(* toplevel pretty printing *)
95b4a51781aa added invent_fixes;
wenzelm
parents: 18785
diff changeset
  1529
95b4a51781aa added invent_fixes;
wenzelm
parents: 18785
diff changeset
  1530
val debug = ref false;
95b4a51781aa added invent_fixes;
wenzelm
parents: 18785
diff changeset
  1531
95b4a51781aa added invent_fixes;
wenzelm
parents: 18785
diff changeset
  1532
fun pprint_context ctxt = Pretty.pprint
95b4a51781aa added invent_fixes;
wenzelm
parents: 18785
diff changeset
  1533
 (if ! debug then Pretty.quote (Pretty.big_list "proof context:" (pretty_context ctxt))
95b4a51781aa added invent_fixes;
wenzelm
parents: 18785
diff changeset
  1534
  else Pretty.str "<context>");
95b4a51781aa added invent_fixes;
wenzelm
parents: 18785
diff changeset
  1535
5819
5fff21d4ca3a Proof context information.
wenzelm
parents:
diff changeset
  1536
end;