| author | wenzelm | 
| Fri, 28 Apr 2017 11:50:31 +0200 | |
| changeset 65602 | d9533e9615ad | 
| parent 64556 | 851ae0e7b09c | 
| child 66245 | da3b0e848182 | 
| permissions | -rw-r--r-- | 
| 5819 | 1 | (* Title: Pure/Isar/proof_context.ML | 
| 2 | Author: Markus Wenzel, TU Muenchen | |
| 3 | ||
| 19001 | 4 | The key concept of Isar proof contexts: elevates primitive local | 
| 5 | reasoning Gamma |- phi to a structured concept, with generic context | |
| 20234 
7e0693474bcd
added legacy_pretty_thm (with fall-back on ProtoPure.thy);
 wenzelm parents: 
20209diff
changeset | 6 | elements. See also structure Variable and Assumption. | 
| 5819 | 7 | *) | 
| 8 | ||
| 9 | signature PROOF_CONTEXT = | |
| 10 | sig | |
| 20310 | 11 | val theory_of: Proof.context -> theory | 
| 36610 
bafd82950e24
renamed ProofContext.init to ProofContext.init_global to emphasize that this is not the real thing;
 wenzelm parents: 
36542diff
changeset | 12 | val init_global: theory -> Proof.context | 
| 51686 | 13 | val get_global: theory -> string -> Proof.context | 
| 24388 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 14 | type mode | 
| 24501 | 15 | val mode_default: mode | 
| 16 | val mode_pattern: mode | |
| 17 | val mode_schematic: mode | |
| 18 | val mode_abbrev: mode | |
| 24388 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 19 | val set_mode: mode -> Proof.context -> Proof.context | 
| 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 20 | val get_mode: Proof.context -> mode | 
| 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 21 | val restore_mode: Proof.context -> Proof.context -> Proof.context | 
| 27286 | 22 | val abbrev_mode: Proof.context -> bool | 
| 35111 | 23 | val syn_of: Proof.context -> Syntax.syntax | 
| 35669 
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
 wenzelm parents: 
35616diff
changeset | 24 | val tsig_of: Proof.context -> Type.tsig | 
| 36451 | 25 | val set_defsort: sort -> Proof.context -> Proof.context | 
| 35680 | 26 | val default_sort: Proof.context -> indexname -> sort | 
| 59840 | 27 | val arity_sorts: Proof.context -> string -> sort -> sort list | 
| 20310 | 28 | val consts_of: Proof.context -> Consts.T | 
| 20784 | 29 | val set_syntax_mode: Syntax.mode -> Proof.context -> Proof.context | 
| 20310 | 30 | val restore_syntax_mode: Proof.context -> Proof.context -> Proof.context | 
| 47005 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 31 | val map_naming: (Name_Space.naming -> Name_Space.naming) -> Proof.context -> Proof.context | 
| 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 32 | val naming_of: Proof.context -> Name_Space.naming | 
| 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 33 | val restore_naming: Proof.context -> Proof.context -> Proof.context | 
| 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 34 | val full_name: Proof.context -> binding -> string | 
| 59886 | 35 | val get_scope: Proof.context -> Binding.scope option | 
| 36 | val new_scope: Proof.context -> Binding.scope * Proof.context | |
| 59923 
b21c82422d65
support private scope for individual local theory commands;
 wenzelm parents: 
59917diff
changeset | 37 | val private_scope: Binding.scope -> Proof.context -> Proof.context | 
| 
b21c82422d65
support private scope for individual local theory commands;
 wenzelm parents: 
59917diff
changeset | 38 | val private: Position.T -> Proof.context -> Proof.context | 
| 59990 
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
 wenzelm parents: 
59970diff
changeset | 39 | val qualified_scope: Binding.scope -> Proof.context -> Proof.context | 
| 
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
 wenzelm parents: 
59970diff
changeset | 40 | val qualified: Position.T -> Proof.context -> Proof.context | 
| 59880 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 41 | val concealed: Proof.context -> Proof.context | 
| 42359 | 42 | val class_space: Proof.context -> Name_Space.T | 
| 43 | val type_space: Proof.context -> Name_Space.T | |
| 44 | val const_space: Proof.context -> Name_Space.T | |
| 61261 
ddb2da7cb2e4
more explicit Defs.context: use proper name spaces as far as possible;
 wenzelm parents: 
61168diff
changeset | 45 | val defs_context: Proof.context -> Defs.context | 
| 42359 | 46 | val intern_class: Proof.context -> xstring -> string | 
| 47 | val intern_type: Proof.context -> xstring -> string | |
| 48 | val intern_const: Proof.context -> xstring -> string | |
| 49 | val extern_class: Proof.context -> string -> xstring | |
| 55304 | 50 | val markup_class: Proof.context -> string -> string | 
| 51 | val pretty_class: Proof.context -> string -> Pretty.T | |
| 42359 | 52 | val extern_type: Proof.context -> string -> xstring | 
| 55304 | 53 | val markup_type: Proof.context -> string -> string | 
| 54 | val pretty_type: Proof.context -> string -> Pretty.T | |
| 42359 | 55 | val extern_const: Proof.context -> string -> xstring | 
| 55304 | 56 | val markup_const: Proof.context -> string -> string | 
| 57 | val pretty_const: Proof.context -> string -> Pretty.T | |
| 20310 | 58 | val transfer: theory -> Proof.context -> Proof.context | 
| 57928 
f4ff42c5b05b
transfer result of Global_Theory.add_thms_dynamic to context stack;
 wenzelm parents: 
57887diff
changeset | 59 | val transfer_facts: theory -> Proof.context -> Proof.context | 
| 38756 
d07959fabde6
renamed ProofContext.theory(_result) to ProofContext.background_theory(_result) to emphasize that this belongs to the infrastructure and is rarely appropriate in user-space tools;
 wenzelm parents: 
38328diff
changeset | 60 | val background_theory: (theory -> theory) -> Proof.context -> Proof.context | 
| 
d07959fabde6
renamed ProofContext.theory(_result) to ProofContext.background_theory(_result) to emphasize that this belongs to the infrastructure and is rarely appropriate in user-space tools;
 wenzelm parents: 
38328diff
changeset | 61 | val background_theory_result: (theory -> 'a * theory) -> Proof.context -> 'a * Proof.context | 
| 56141 
c06202417c4a
back to a form of hybrid facts, to reduce performance impact of ed92ce2ac88e;
 wenzelm parents: 
56140diff
changeset | 62 | val facts_of: Proof.context -> Facts.T | 
| 
c06202417c4a
back to a form of hybrid facts, to reduce performance impact of ed92ce2ac88e;
 wenzelm parents: 
56140diff
changeset | 63 | val facts_of_fact: Proof.context -> string -> Facts.T | 
| 63080 
8326aa594273
find dynamic facts as well, but static ones are preferred;
 wenzelm parents: 
63057diff
changeset | 64 | val markup_extern_fact: Proof.context -> string -> Markup.T list * xstring | 
| 64398 
5076725247fa
more robust printing of names in the context of outer syntax;
 wenzelm parents: 
63640diff
changeset | 65 | val print_name: Proof.context -> string -> string | 
| 
5076725247fa
more robust printing of names in the context of outer syntax;
 wenzelm parents: 
63640diff
changeset | 66 | val pretty_name: Proof.context -> string -> Pretty.T | 
| 21728 | 67 | val pretty_term_abbrev: Proof.context -> term -> Pretty.T | 
| 20310 | 68 | val pretty_fact: Proof.context -> string * thm list -> Pretty.T | 
| 55922 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55843diff
changeset | 69 | val check_class: Proof.context -> xstring * Position.T -> class * Position.report list | 
| 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55843diff
changeset | 70 | val read_class: Proof.context -> string -> class | 
| 20310 | 71 | val read_typ: Proof.context -> string -> typ | 
| 72 | val read_typ_syntax: Proof.context -> string -> typ | |
| 73 | val read_typ_abbrev: Proof.context -> string -> typ | |
| 74 | val cert_typ: Proof.context -> typ -> typ | |
| 75 | val cert_typ_syntax: Proof.context -> typ -> typ | |
| 76 | val cert_typ_abbrev: Proof.context -> typ -> typ | |
| 36505 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36503diff
changeset | 77 | val infer_type: Proof.context -> string * typ -> typ | 
| 60407 | 78 | val inferred_param: string -> Proof.context -> (string * typ) * Proof.context | 
| 25328 | 79 | val inferred_fixes: Proof.context -> (string * typ) list * Proof.context | 
| 56002 | 80 |   val check_type_name: {proper: bool, strict: bool} -> Proof.context ->
 | 
| 55922 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55843diff
changeset | 81 | xstring * Position.T -> typ * Position.report list | 
| 56002 | 82 |   val read_type_name: {proper: bool, strict: bool} -> Proof.context -> string -> typ
 | 
| 55956 
94d384d621b0
reject internal term names outright, and complete consts instead;
 wenzelm parents: 
55955diff
changeset | 83 | val consts_completion_message: Proof.context -> xstring * Position.T list -> string | 
| 56002 | 84 |   val check_const: {proper: bool, strict: bool} -> Proof.context ->
 | 
| 55959 
c3b458435f4f
more decisive commitment to get_free vs. the_const;
 wenzelm parents: 
55956diff
changeset | 85 | xstring * Position.T list -> term * Position.report list | 
| 56002 | 86 |   val read_const: {proper: bool, strict: bool} -> Proof.context -> string -> term
 | 
| 46922 
3717f3878714
source positions for locale and class expressions;
 wenzelm parents: 
46849diff
changeset | 87 | val read_arity: Proof.context -> xstring * string list * string -> arity | 
| 
3717f3878714
source positions for locale and class expressions;
 wenzelm parents: 
46849diff
changeset | 88 | val cert_arity: Proof.context -> arity -> arity | 
| 27259 | 89 | val allow_dummies: Proof.context -> Proof.context | 
| 56333 
38f1422ef473
support bulk messages consisting of small string segments, which are more healthy to the Poly/ML RTS and might prevent spurious GC crashes such as MTGCProcessMarkPointers::ScanAddressesInObject;
 wenzelm parents: 
56294diff
changeset | 90 | val prepare_sortsT: Proof.context -> typ list -> string list * typ list | 
| 
38f1422ef473
support bulk messages consisting of small string segments, which are more healthy to the Poly/ML RTS and might prevent spurious GC crashes such as MTGCProcessMarkPointers::ScanAddressesInObject;
 wenzelm parents: 
56294diff
changeset | 91 | val prepare_sorts: Proof.context -> term list -> string list * term list | 
| 36152 | 92 | val check_tfree: Proof.context -> string * sort -> string * sort | 
| 24684 | 93 | val read_term_pattern: Proof.context -> string -> term | 
| 94 | val read_term_schematic: Proof.context -> string -> term | |
| 95 | val read_term_abbrev: Proof.context -> string -> term | |
| 40879 
ca132ef44944
configuration option "show_abbrevs" supersedes print mode "no_abbrevs", with inverted meaning;
 wenzelm parents: 
39557diff
changeset | 96 | val show_abbrevs_raw: Config.raw | 
| 
ca132ef44944
configuration option "show_abbrevs" supersedes print mode "no_abbrevs", with inverted meaning;
 wenzelm parents: 
39557diff
changeset | 97 | val show_abbrevs: bool Config.T | 
| 25345 
dd5b851f8ef0
renamed ProofContext.read_const' to ProofContext.read_const_proper;
 wenzelm parents: 
25332diff
changeset | 98 | val expand_abbrevs: Proof.context -> term -> term | 
| 20310 | 99 | val cert_term: Proof.context -> term -> term | 
| 100 | val cert_prop: Proof.context -> term -> term | |
| 35616 
b342390d296f
provide ProofContext.def_type depending on "pattern" mode;
 wenzelm parents: 
35429diff
changeset | 101 | val def_type: Proof.context -> indexname -> typ option | 
| 45429 | 102 | val standard_typ_check: Proof.context -> typ list -> typ list | 
| 103 | val standard_term_check_finish: Proof.context -> term list -> term list | |
| 104 | val standard_term_uncheck: Proof.context -> term list -> term list | |
| 20310 | 105 | val goal_export: Proof.context -> Proof.context -> thm list -> thm list | 
| 106 | val export: Proof.context -> Proof.context -> thm list -> thm list | |
| 21531 | 107 | val export_morphism: Proof.context -> Proof.context -> morphism | 
| 28396 | 108 | val norm_export_morphism: Proof.context -> Proof.context -> morphism | 
| 20310 | 109 | val auto_bind_goal: term list -> Proof.context -> Proof.context | 
| 110 | val auto_bind_facts: term list -> Proof.context -> Proof.context | |
| 60383 | 111 | val match_bind: bool -> (term list * term) list -> Proof.context -> | 
| 112 | term list * Proof.context | |
| 113 | val match_bind_cmd: bool -> (string list * string) list -> Proof.context -> | |
| 114 | term list * Proof.context | |
| 60388 | 115 | val cert_propp: Proof.context -> (term * term list) list list -> | 
| 116 | (term list list * (indexname * term) list) | |
| 117 | val read_propp: Proof.context -> (string * string list) list list -> | |
| 118 | (term list list * (indexname * term) list) | |
| 54742 
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
 wenzelm parents: 
54740diff
changeset | 119 | val fact_tac: Proof.context -> thm list -> int -> tactic | 
| 20310 | 120 | val some_fact_tac: Proof.context -> int -> tactic | 
| 63255 | 121 |   val lookup_fact: Proof.context -> string -> {dynamic: bool, thms: thm list} option
 | 
| 62078 
76399b8fde4d
more systematic treatment of dynamic facts, when forming closure;
 wenzelm parents: 
61902diff
changeset | 122 | val dynamic_facts_dummy: bool Config.T | 
| 57942 
e5bec882fdd0
more informative Token.Fact: retain name of dynamic fact (without selection);
 wenzelm parents: 
57928diff
changeset | 123 | val get_fact_generic: Context.generic -> Facts.ref -> string option * thm list | 
| 26346 
17debd2fff8e
simplified get_thm(s): back to plain name argument;
 wenzelm parents: 
26336diff
changeset | 124 | val get_fact: Proof.context -> Facts.ref -> thm list | 
| 
17debd2fff8e
simplified get_thm(s): back to plain name argument;
 wenzelm parents: 
26336diff
changeset | 125 | val get_fact_single: Proof.context -> Facts.ref -> thm | 
| 
17debd2fff8e
simplified get_thm(s): back to plain name argument;
 wenzelm parents: 
26336diff
changeset | 126 | val get_thms: Proof.context -> xstring -> thm list | 
| 
17debd2fff8e
simplified get_thm(s): back to plain name argument;
 wenzelm parents: 
26336diff
changeset | 127 | val get_thm: Proof.context -> xstring -> thm | 
| 63083 | 128 | val set_stmt: bool -> Proof.context -> Proof.context | 
| 129 | val restore_stmt: Proof.context -> Proof.context -> Proof.context | |
| 61811 
1530a0f19539
added Proof_Context.add_thms_dynamic, which is potentially useful for Eisbach;
 wenzelm parents: 
61268diff
changeset | 130 | val add_thms_dynamic: binding * (Context.generic -> thm list) -> | 
| 
1530a0f19539
added Proof_Context.add_thms_dynamic, which is potentially useful for Eisbach;
 wenzelm parents: 
61268diff
changeset | 131 | Proof.context -> string * Proof.context | 
| 30761 
ac7570d80c3d
renamed ProofContext.note_thmss_i to ProofContext.note_thmss, eliminated obsolete external version;
 wenzelm parents: 
30758diff
changeset | 132 | val note_thmss: string -> (Thm.binding * (thm list * attribute list) list) list -> | 
| 30211 | 133 | Proof.context -> (string * thm list) list * Proof.context | 
| 28082 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 134 | val put_thms: bool -> string * thm list option -> Proof.context -> Proof.context | 
| 60379 | 135 | val read_var: binding * string option * mixfix -> Proof.context -> | 
| 136 | (binding * typ option * mixfix) * Proof.context | |
| 137 | val cert_var: binding * typ option * mixfix -> Proof.context -> | |
| 138 | (binding * typ option * mixfix) * Proof.context | |
| 30763 
6976521b4263
renamed ProofContext.add_fixes_i to ProofContext.add_fixes, eliminated obsolete external version;
 wenzelm parents: 
30761diff
changeset | 139 | val add_fixes: (binding * typ option * mixfix) list -> Proof.context -> | 
| 
6976521b4263
renamed ProofContext.add_fixes_i to ProofContext.add_fixes, eliminated obsolete external version;
 wenzelm parents: 
30761diff
changeset | 140 | string list * Proof.context | 
| 60469 | 141 | val add_fixes_cmd: (binding * string option * mixfix) list -> Proof.context -> | 
| 142 | string list * Proof.context | |
| 20234 
7e0693474bcd
added legacy_pretty_thm (with fall-back on ProtoPure.thy);
 wenzelm parents: 
20209diff
changeset | 143 | val add_assms: Assumption.export -> | 
| 60377 | 144 | (Thm.binding * (term * term list) list) list -> | 
| 28082 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 145 | Proof.context -> (string * thm list) list * Proof.context | 
| 60377 | 146 | val add_assms_cmd: Assumption.export -> | 
| 147 | (Thm.binding * (string * string list) list) list -> | |
| 28082 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 148 | Proof.context -> (string * thm list) list * Proof.context | 
| 63513 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 149 |   val dest_cases: Proof.context option -> Proof.context -> (string * (Rule_Cases.T * {legacy: bool})) list
 | 
| 60573 | 150 | val update_cases: (string * Rule_Cases.T option) list -> Proof.context -> Proof.context | 
| 151 | val update_cases_legacy: (string * Rule_Cases.T option) list -> Proof.context -> Proof.context | |
| 60565 | 152 | val apply_case: Rule_Cases.T -> Proof.context -> (string * term list) list * Proof.context | 
| 57486 
2131b6633529
check 'case' variable bindings as for 'fix', which means internal names are rejected as usual;
 wenzelm parents: 
57415diff
changeset | 153 | val check_case: Proof.context -> bool -> | 
| 
2131b6633529
check 'case' variable bindings as for 'fix', which means internal names are rejected as usual;
 wenzelm parents: 
57415diff
changeset | 154 | string * Position.T -> binding option list -> Rule_Cases.T | 
| 35412 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 wenzelm parents: 
35399diff
changeset | 155 | val type_notation: bool -> Syntax.mode -> (typ * mixfix) list -> Proof.context -> Proof.context | 
| 24949 | 156 | val notation: bool -> Syntax.mode -> (term * mixfix) list -> Proof.context -> Proof.context | 
| 47247 | 157 | val generic_type_notation: bool -> Syntax.mode -> (typ * mixfix) list -> morphism -> | 
| 35412 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 wenzelm parents: 
35399diff
changeset | 158 | Context.generic -> Context.generic | 
| 47247 | 159 | val generic_notation: bool -> Syntax.mode -> (term * mixfix) list -> morphism -> | 
| 21744 | 160 | Context.generic -> Context.generic | 
| 35680 | 161 | val class_alias: binding -> class -> Proof.context -> Proof.context | 
| 162 | val type_alias: binding -> string -> Proof.context -> Proof.context | |
| 163 | val const_alias: binding -> string -> Proof.context -> Proof.context | |
| 57887 | 164 | val fact_alias: binding -> string -> Proof.context -> Proof.context | 
| 24767 | 165 | val add_const_constraint: string * typ option -> Proof.context -> Proof.context | 
| 33173 
b8ca12f6681a
eliminated obsolete tags for types/consts -- now handled via name space, in strongly typed fashion;
 wenzelm parents: 
33165diff
changeset | 166 | val add_abbrev: string -> binding * term -> Proof.context -> (term * term) * Proof.context | 
| 25052 | 167 | val revert_abbrev: string -> string -> Proof.context -> Proof.context | 
| 47275 | 168 | val generic_add_abbrev: string -> binding * term -> Context.generic -> | 
| 169 | (term * term) * Context.generic | |
| 170 | val generic_revert_abbrev: string -> string -> Context.generic -> Context.generic | |
| 63057 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 171 | val cert_stmt: | 
| 63056 
9b95ae9ec671
defs are closed, which leads to proper auto_bind_facts;
 wenzelm parents: 
63037diff
changeset | 172 | (binding * typ option * mixfix) list -> (term * term list) list list -> Proof.context -> | 
| 
9b95ae9ec671
defs are closed, which leads to proper auto_bind_facts;
 wenzelm parents: 
63037diff
changeset | 173 | (((binding * typ option * mixfix) * (string * term)) list * term list list * | 
| 
9b95ae9ec671
defs are closed, which leads to proper auto_bind_facts;
 wenzelm parents: 
63037diff
changeset | 174 | (indexname * term) list * (indexname * term) list) * Proof.context | 
| 63057 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 175 | val read_stmt: | 
| 63056 
9b95ae9ec671
defs are closed, which leads to proper auto_bind_facts;
 wenzelm parents: 
63037diff
changeset | 176 | (binding * string option * mixfix) list -> (string * string list) list list -> Proof.context -> | 
| 
9b95ae9ec671
defs are closed, which leads to proper auto_bind_facts;
 wenzelm parents: 
63037diff
changeset | 177 | (((binding * typ option * mixfix) * (string * term)) list * term list list * | 
| 
9b95ae9ec671
defs are closed, which leads to proper auto_bind_facts;
 wenzelm parents: 
63037diff
changeset | 178 | (indexname * term) list * (indexname * term) list) * Proof.context | 
| 63057 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 179 | val cert_statement: (binding * typ option * mixfix) list -> | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 180 | (term * term list) list list -> (term * term list) list list -> Proof.context -> | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 181 | ((string * term) list * term list list * term list list * (indexname * term option) list) * | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 182 | Proof.context | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 183 | val read_statement: (binding * string option * mixfix) list -> | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 184 | (string * string list) list list -> (string * string list) list list -> Proof.context -> | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 185 | ((string * term) list * term list list * term list list * (indexname * term option) list) * | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 186 | Proof.context | 
| 20310 | 187 | val print_syntax: Proof.context -> unit | 
| 59917 
9830c944670f
more uniform "verbose" option to print name space;
 wenzelm parents: 
59896diff
changeset | 188 | val print_abbrevs: bool -> Proof.context -> unit | 
| 57415 
e721124f1b1e
command 'print_term_bindings' supersedes 'print_binds';
 wenzelm parents: 
56867diff
changeset | 189 | val pretty_term_bindings: Proof.context -> Pretty.T list | 
| 59917 
9830c944670f
more uniform "verbose" option to print name space;
 wenzelm parents: 
59896diff
changeset | 190 | val pretty_local_facts: bool -> Proof.context -> Pretty.T list | 
| 
9830c944670f
more uniform "verbose" option to print name space;
 wenzelm parents: 
59896diff
changeset | 191 | val print_local_facts: bool -> Proof.context -> unit | 
| 56867 | 192 | val pretty_cases: Proof.context -> Pretty.T list | 
| 63513 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 193 | val print_cases_proof: Proof.context -> Proof.context -> string | 
| 42717 
0bbb56867091
proper configuration options Proof_Context.debug and Proof_Context.verbose;
 wenzelm parents: 
42502diff
changeset | 194 | val debug: bool Config.T | 
| 
0bbb56867091
proper configuration options Proof_Context.debug and Proof_Context.verbose;
 wenzelm parents: 
42502diff
changeset | 195 | val verbose: bool Config.T | 
| 20310 | 196 | val pretty_ctxt: Proof.context -> Pretty.T list | 
| 197 | val pretty_context: Proof.context -> Pretty.T list | |
| 5819 | 198 | end; | 
| 199 | ||
| 42360 | 200 | structure Proof_Context: PROOF_CONTEXT = | 
| 5819 | 201 | struct | 
| 202 | ||
| 42363 | 203 | val theory_of = Proof_Context.theory_of; | 
| 204 | val init_global = Proof_Context.init_global; | |
| 51686 | 205 | val get_global = Proof_Context.get_global; | 
| 42363 | 206 | |
| 12057 | 207 | |
| 7270 | 208 | |
| 24388 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 209 | (** inner syntax mode **) | 
| 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 210 | |
| 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 211 | datatype mode = | 
| 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 212 | Mode of | 
| 63083 | 213 |    {pattern: bool,             (*pattern binding schematic variables*)
 | 
| 24388 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 214 | schematic: bool, (*term referencing loose schematic variables*) | 
| 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 215 | abbrev: bool}; (*abbrev mode -- no normalization*) | 
| 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 216 | |
| 63083 | 217 | fun make_mode (pattern, schematic, abbrev) = | 
| 218 |   Mode {pattern = pattern, schematic = schematic, abbrev = abbrev};
 | |
| 24388 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 219 | |
| 63083 | 220 | val mode_default = make_mode (false, false, false); | 
| 221 | val mode_pattern = make_mode (true, false, false); | |
| 222 | val mode_schematic = make_mode (false, true, false); | |
| 223 | val mode_abbrev = make_mode (false, false, true); | |
| 24388 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 224 | |
| 5819 | 225 | |
| 16540 | 226 | (** Isar proof context information **) | 
| 5819 | 227 | |
| 63515 | 228 | type cases = (Rule_Cases.T * {legacy: bool}) Name_Space.table;
 | 
| 53378 
07990ba8c0ea
cases: more position information and PIDE markup;
 wenzelm parents: 
52223diff
changeset | 229 | val empty_cases: cases = Name_Space.empty_table Markup.caseN; | 
| 
07990ba8c0ea
cases: more position information and PIDE markup;
 wenzelm parents: 
52223diff
changeset | 230 | |
| 45650 | 231 | datatype data = | 
| 232 | Data of | |
| 36451 | 233 |    {mode: mode,                  (*inner syntax mode*)
 | 
| 234 | syntax: Local_Syntax.T, (*local syntax*) | |
| 235 | tsig: Type.tsig * Type.tsig, (*local/global type signature -- local name space / defsort only*) | |
| 236 | consts: Consts.T * Consts.T, (*local/global consts -- local name space / abbrevs only*) | |
| 56141 
c06202417c4a
back to a form of hybrid facts, to reduce performance impact of ed92ce2ac88e;
 wenzelm parents: 
56140diff
changeset | 237 | facts: Facts.T, (*local facts, based on initial global facts*) | 
| 60573 | 238 | cases: cases}; (*named case contexts: case, legacy, running index*) | 
| 5819 | 239 | |
| 47005 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 240 | fun make_data (mode, syntax, tsig, consts, facts, cases) = | 
| 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 241 |   Data {mode = mode, syntax = syntax, tsig = tsig, consts = consts, facts = facts, cases = cases};
 | 
| 19079 
9a7678a0736d
added put_thms_internal: local_naming, no fact index;
 wenzelm parents: 
19062diff
changeset | 242 | |
| 37216 
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
 wenzelm parents: 
37145diff
changeset | 243 | structure Data = Proof_Data | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 244 | ( | 
| 45650 | 245 | type T = data; | 
| 16540 | 246 | fun init thy = | 
| 56139 
b7add947a6ef
more frugal recording of changes: join merely requires information from one side;
 wenzelm parents: 
56062diff
changeset | 247 | make_data (mode_default, | 
| 
b7add947a6ef
more frugal recording of changes: join merely requires information from one side;
 wenzelm parents: 
56062diff
changeset | 248 | Local_Syntax.init thy, | 
| 
b7add947a6ef
more frugal recording of changes: join merely requires information from one side;
 wenzelm parents: 
56062diff
changeset | 249 | (Type.change_ignore (Sign.tsig_of thy), Sign.tsig_of thy), | 
| 
b7add947a6ef
more frugal recording of changes: join merely requires information from one side;
 wenzelm parents: 
56062diff
changeset | 250 | (Consts.change_ignore (Sign.consts_of thy), Sign.consts_of thy), | 
| 56140 
ed92ce2ac88e
just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
 wenzelm parents: 
56139diff
changeset | 251 | Global_Theory.facts_of thy, | 
| 56139 
b7add947a6ef
more frugal recording of changes: join merely requires information from one side;
 wenzelm parents: 
56062diff
changeset | 252 | empty_cases); | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 253 | ); | 
| 5819 | 254 | |
| 45650 | 255 | fun rep_data ctxt = Data.get ctxt |> (fn Data rep => rep); | 
| 5819 | 256 | |
| 61811 
1530a0f19539
added Proof_Context.add_thms_dynamic, which is potentially useful for Eisbach;
 wenzelm parents: 
61268diff
changeset | 257 | fun map_data_result f ctxt = | 
| 
1530a0f19539
added Proof_Context.add_thms_dynamic, which is potentially useful for Eisbach;
 wenzelm parents: 
61268diff
changeset | 258 | let | 
| 
1530a0f19539
added Proof_Context.add_thms_dynamic, which is potentially useful for Eisbach;
 wenzelm parents: 
61268diff
changeset | 259 |     val Data {mode, syntax, tsig, consts, facts, cases} = Data.get ctxt;
 | 
| 
1530a0f19539
added Proof_Context.add_thms_dynamic, which is potentially useful for Eisbach;
 wenzelm parents: 
61268diff
changeset | 260 | val (res, data') = f (mode, syntax, tsig, consts, facts, cases) ||> make_data; | 
| 
1530a0f19539
added Proof_Context.add_thms_dynamic, which is potentially useful for Eisbach;
 wenzelm parents: 
61268diff
changeset | 261 | in (res, Data.put data' ctxt) end; | 
| 
1530a0f19539
added Proof_Context.add_thms_dynamic, which is potentially useful for Eisbach;
 wenzelm parents: 
61268diff
changeset | 262 | |
| 
1530a0f19539
added Proof_Context.add_thms_dynamic, which is potentially useful for Eisbach;
 wenzelm parents: 
61268diff
changeset | 263 | fun map_data f = snd o map_data_result (pair () o f); | 
| 24388 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 264 | |
| 47005 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 265 | fun set_mode mode = map_data (fn (_, syntax, tsig, consts, facts, cases) => | 
| 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 266 | (mode, syntax, tsig, consts, facts, cases)); | 
| 21443 
cc5095d57da4
added stmt mode, which affects naming/indexing of local facts;
 wenzelm parents: 
21370diff
changeset | 267 | |
| 19001 | 268 | fun map_syntax f = | 
| 47005 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 269 | map_data (fn (mode, syntax, tsig, consts, facts, cases) => | 
| 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 270 | (mode, f syntax, tsig, consts, facts, cases)); | 
| 35669 
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
 wenzelm parents: 
35616diff
changeset | 271 | |
| 59152 
66e6c539a36d
more frugal Local_Syntax.init -- maintain idents within context;
 wenzelm parents: 
59066diff
changeset | 272 | fun map_syntax_idents f ctxt = | 
| 60382 | 273 | let val (opt_idents', syntax') = f (#syntax (rep_data ctxt)) in | 
| 59152 
66e6c539a36d
more frugal Local_Syntax.init -- maintain idents within context;
 wenzelm parents: 
59066diff
changeset | 274 | ctxt | 
| 
66e6c539a36d
more frugal Local_Syntax.init -- maintain idents within context;
 wenzelm parents: 
59066diff
changeset | 275 | |> map_syntax (K syntax') | 
| 
66e6c539a36d
more frugal Local_Syntax.init -- maintain idents within context;
 wenzelm parents: 
59066diff
changeset | 276 | |> (case opt_idents' of NONE => I | SOME idents' => Syntax_Trans.put_idents idents') | 
| 
66e6c539a36d
more frugal Local_Syntax.init -- maintain idents within context;
 wenzelm parents: 
59066diff
changeset | 277 | end; | 
| 
66e6c539a36d
more frugal Local_Syntax.init -- maintain idents within context;
 wenzelm parents: 
59066diff
changeset | 278 | |
| 36450 | 279 | fun map_tsig f = | 
| 47005 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 280 | map_data (fn (mode, syntax, tsig, consts, facts, cases) => | 
| 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 281 | (mode, syntax, f tsig, consts, facts, cases)); | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 282 | |
| 19001 | 283 | fun map_consts f = | 
| 47005 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 284 | map_data (fn (mode, syntax, tsig, consts, facts, cases) => | 
| 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 285 | (mode, syntax, tsig, f consts, facts, cases)); | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 286 | |
| 61811 
1530a0f19539
added Proof_Context.add_thms_dynamic, which is potentially useful for Eisbach;
 wenzelm parents: 
61268diff
changeset | 287 | fun map_facts_result f = | 
| 
1530a0f19539
added Proof_Context.add_thms_dynamic, which is potentially useful for Eisbach;
 wenzelm parents: 
61268diff
changeset | 288 | map_data_result (fn (mode, syntax, tsig, consts, facts, cases) => | 
| 
1530a0f19539
added Proof_Context.add_thms_dynamic, which is potentially useful for Eisbach;
 wenzelm parents: 
61268diff
changeset | 289 | let val (res, facts') = f facts | 
| 
1530a0f19539
added Proof_Context.add_thms_dynamic, which is potentially useful for Eisbach;
 wenzelm parents: 
61268diff
changeset | 290 | in (res, (mode, syntax, tsig, consts, facts', cases)) end); | 
| 
1530a0f19539
added Proof_Context.add_thms_dynamic, which is potentially useful for Eisbach;
 wenzelm parents: 
61268diff
changeset | 291 | |
| 
1530a0f19539
added Proof_Context.add_thms_dynamic, which is potentially useful for Eisbach;
 wenzelm parents: 
61268diff
changeset | 292 | fun map_facts f = snd o map_facts_result (pair () o f); | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 293 | |
| 19001 | 294 | fun map_cases f = | 
| 47005 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 295 | map_data (fn (mode, syntax, tsig, consts, facts, cases) => | 
| 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 296 | (mode, syntax, tsig, consts, facts, f cases)); | 
| 24388 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 297 | |
| 45650 | 298 | val get_mode = #mode o rep_data; | 
| 28407 | 299 | val restore_mode = set_mode o get_mode; | 
| 27286 | 300 | val abbrev_mode = get_mode #> (fn Mode {abbrev, ...} => abbrev);
 | 
| 21443 
cc5095d57da4
added stmt mode, which affects naming/indexing of local facts;
 wenzelm parents: 
21370diff
changeset | 301 | |
| 45650 | 302 | val syntax_of = #syntax o rep_data; | 
| 33387 | 303 | val syn_of = Local_Syntax.syn_of o syntax_of; | 
| 304 | val set_syntax_mode = map_syntax o Local_Syntax.set_mode; | |
| 305 | val restore_syntax_mode = map_syntax o Local_Syntax.restore_mode o syntax_of; | |
| 19001 | 306 | |
| 45650 | 307 | val tsig_of = #1 o #tsig o rep_data; | 
| 36451 | 308 | val set_defsort = map_tsig o apfst o Type.set_defsort; | 
| 35680 | 309 | fun default_sort ctxt = the_default (Type.defaultS (tsig_of ctxt)) o Variable.def_sort ctxt; | 
| 61262 
7bd1eb4b056e
tuned signature: eliminated pointless type Context.pretty;
 wenzelm parents: 
61261diff
changeset | 310 | fun arity_sorts ctxt = Type.arity_sorts (Context.Proof ctxt) (tsig_of ctxt); | 
| 35669 
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
 wenzelm parents: 
35616diff
changeset | 311 | |
| 45650 | 312 | val consts_of = #1 o #consts o rep_data; | 
| 313 | val cases_of = #cases o rep_data; | |
| 5819 | 314 | |
| 315 | ||
| 47005 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 316 | (* naming *) | 
| 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 317 | |
| 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 318 | val naming_of = Name_Space.naming_of o Context.Proof; | 
| 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 319 | val map_naming = Context.proof_map o Name_Space.map_naming; | 
| 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 320 | val restore_naming = map_naming o K o naming_of; | 
| 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 321 | |
| 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 322 | val full_name = Name_Space.full_name o naming_of; | 
| 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 323 | |
| 59886 | 324 | val get_scope = Name_Space.get_scope o naming_of; | 
| 325 | ||
| 326 | fun new_scope ctxt = | |
| 327 | let | |
| 328 | val (scope, naming') = Name_Space.new_scope (naming_of ctxt); | |
| 329 | val ctxt' = map_naming (K naming') ctxt; | |
| 330 | in (scope, ctxt') end; | |
| 331 | ||
| 59923 
b21c82422d65
support private scope for individual local theory commands;
 wenzelm parents: 
59917diff
changeset | 332 | val private_scope = map_naming o Name_Space.private_scope; | 
| 59896 | 333 | val private = map_naming o Name_Space.private; | 
| 59990 
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
 wenzelm parents: 
59970diff
changeset | 334 | val qualified_scope = map_naming o Name_Space.qualified_scope; | 
| 
a81dc82ecba3
clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
 wenzelm parents: 
59970diff
changeset | 335 | val qualified = map_naming o Name_Space.qualified; | 
| 59939 
7d46aa03696e
support for 'restricted' modifier: only qualified accesses outside the local scope;
 wenzelm parents: 
59923diff
changeset | 336 | |
| 59880 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 337 | val concealed = map_naming Name_Space.concealed; | 
| 
30687c3f2b10
clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
 wenzelm parents: 
59859diff
changeset | 338 | |
| 47005 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 339 | |
| 42359 | 340 | (* name spaces *) | 
| 341 | ||
| 342 | val class_space = Type.class_space o tsig_of; | |
| 343 | val type_space = Type.type_space o tsig_of; | |
| 344 | val const_space = Consts.space_of o consts_of; | |
| 345 | ||
| 61265 | 346 | fun defs_context ctxt = (ctxt, (const_space ctxt, type_space ctxt)); | 
| 61261 
ddb2da7cb2e4
more explicit Defs.context: use proper name spaces as far as possible;
 wenzelm parents: 
61168diff
changeset | 347 | |
| 42359 | 348 | val intern_class = Name_Space.intern o class_space; | 
| 349 | val intern_type = Name_Space.intern o type_space; | |
| 350 | val intern_const = Name_Space.intern o const_space; | |
| 351 | ||
| 352 | fun extern_class ctxt = Name_Space.extern ctxt (class_space ctxt); | |
| 353 | fun extern_type ctxt = Name_Space.extern ctxt (type_space ctxt); | |
| 354 | fun extern_const ctxt = Name_Space.extern ctxt (const_space ctxt); | |
| 355 | ||
| 55304 | 356 | fun markup_class ctxt c = Name_Space.markup_extern ctxt (class_space ctxt) c |-> Markup.markup; | 
| 357 | fun markup_type ctxt c = Name_Space.markup_extern ctxt (type_space ctxt) c |-> Markup.markup; | |
| 358 | fun markup_const ctxt c = Name_Space.markup_extern ctxt (const_space ctxt) c |-> Markup.markup; | |
| 359 | ||
| 360 | fun pretty_class ctxt c = Name_Space.markup_extern ctxt (class_space ctxt) c |> Pretty.mark_str; | |
| 361 | fun pretty_type ctxt c = Name_Space.markup_extern ctxt (type_space ctxt) c |> Pretty.mark_str; | |
| 362 | fun pretty_const ctxt c = Name_Space.markup_extern ctxt (const_space ctxt) c |> Pretty.mark_str; | |
| 363 | ||
| 42359 | 364 | |
| 20367 | 365 | (* theory transfer *) | 
| 12093 | 366 | |
| 35669 
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
 wenzelm parents: 
35616diff
changeset | 367 | fun transfer_syntax thy ctxt = ctxt |> | 
| 
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
 wenzelm parents: 
35616diff
changeset | 368 | map_syntax (Local_Syntax.rebuild thy) |> | 
| 36450 | 369 | map_tsig (fn tsig as (local_tsig, global_tsig) => | 
| 35669 
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
 wenzelm parents: 
35616diff
changeset | 370 | let val thy_tsig = Sign.tsig_of thy in | 
| 36450 | 371 | if Type.eq_tsig (thy_tsig, global_tsig) then tsig | 
| 61262 
7bd1eb4b056e
tuned signature: eliminated pointless type Context.pretty;
 wenzelm parents: 
61261diff
changeset | 372 | else (Type.merge_tsig (Context.Proof ctxt) (local_tsig, thy_tsig), thy_tsig) (*historic merge order*) | 
| 35669 
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
 wenzelm parents: 
35616diff
changeset | 373 | end) |> | 
| 30424 
692279df7cc2
Consts.eq_const is back again (cf. 907da436f8a9) -- required in ProofContext.transfer_syntax to prevent expensive merges of local_consts/global_consts;
 wenzelm parents: 
30420diff
changeset | 374 | map_consts (fn consts as (local_consts, global_consts) => | 
| 
692279df7cc2
Consts.eq_const is back again (cf. 907da436f8a9) -- required in ProofContext.transfer_syntax to prevent expensive merges of local_consts/global_consts;
 wenzelm parents: 
30420diff
changeset | 375 | let val thy_consts = Sign.consts_of thy in | 
| 
692279df7cc2
Consts.eq_const is back again (cf. 907da436f8a9) -- required in ProofContext.transfer_syntax to prevent expensive merges of local_consts/global_consts;
 wenzelm parents: 
30420diff
changeset | 376 | if Consts.eq_consts (thy_consts, global_consts) then consts | 
| 57928 
f4ff42c5b05b
transfer result of Global_Theory.add_thms_dynamic to context stack;
 wenzelm parents: 
57887diff
changeset | 377 | else (Consts.merge (local_consts, thy_consts), thy_consts) (*historic merge order*) | 
| 30424 
692279df7cc2
Consts.eq_const is back again (cf. 907da436f8a9) -- required in ProofContext.transfer_syntax to prevent expensive merges of local_consts/global_consts;
 wenzelm parents: 
30420diff
changeset | 378 | end); | 
| 17072 | 379 | |
| 33031 
b75c35574e04
backpatching of structure Proof and ProofContext -- avoid odd aliases;
 wenzelm parents: 
32966diff
changeset | 380 | fun transfer thy = Context.raw_transfer thy #> transfer_syntax thy; | 
| 17072 | 381 | |
| 57928 
f4ff42c5b05b
transfer result of Global_Theory.add_thms_dynamic to context stack;
 wenzelm parents: 
57887diff
changeset | 382 | fun transfer_facts thy = | 
| 
f4ff42c5b05b
transfer result of Global_Theory.add_thms_dynamic to context stack;
 wenzelm parents: 
57887diff
changeset | 383 | map_facts (fn local_facts => Facts.merge (Global_Theory.facts_of thy, local_facts)); | 
| 
f4ff42c5b05b
transfer result of Global_Theory.add_thms_dynamic to context stack;
 wenzelm parents: 
57887diff
changeset | 384 | |
| 38756 
d07959fabde6
renamed ProofContext.theory(_result) to ProofContext.background_theory(_result) to emphasize that this belongs to the infrastructure and is rarely appropriate in user-space tools;
 wenzelm parents: 
38328diff
changeset | 385 | fun background_theory f ctxt = transfer (f (theory_of ctxt)) ctxt; | 
| 20367 | 386 | |
| 38756 
d07959fabde6
renamed ProofContext.theory(_result) to ProofContext.background_theory(_result) to emphasize that this belongs to the infrastructure and is rarely appropriate in user-space tools;
 wenzelm parents: 
38328diff
changeset | 387 | fun background_theory_result f ctxt = | 
| 20367 | 388 | let val (res, thy') = f (theory_of ctxt) | 
| 389 | in (res, ctxt |> transfer thy') end; | |
| 19019 | 390 | |
| 12093 | 391 | |
| 56141 
c06202417c4a
back to a form of hybrid facts, to reduce performance impact of ed92ce2ac88e;
 wenzelm parents: 
56140diff
changeset | 392 | (* hybrid facts *) | 
| 
c06202417c4a
back to a form of hybrid facts, to reduce performance impact of ed92ce2ac88e;
 wenzelm parents: 
56140diff
changeset | 393 | |
| 
c06202417c4a
back to a form of hybrid facts, to reduce performance impact of ed92ce2ac88e;
 wenzelm parents: 
56140diff
changeset | 394 | val facts_of = #facts o rep_data; | 
| 
c06202417c4a
back to a form of hybrid facts, to reduce performance impact of ed92ce2ac88e;
 wenzelm parents: 
56140diff
changeset | 395 | |
| 
c06202417c4a
back to a form of hybrid facts, to reduce performance impact of ed92ce2ac88e;
 wenzelm parents: 
56140diff
changeset | 396 | fun facts_of_fact ctxt name = | 
| 
c06202417c4a
back to a form of hybrid facts, to reduce performance impact of ed92ce2ac88e;
 wenzelm parents: 
56140diff
changeset | 397 | let | 
| 
c06202417c4a
back to a form of hybrid facts, to reduce performance impact of ed92ce2ac88e;
 wenzelm parents: 
56140diff
changeset | 398 | val local_facts = facts_of ctxt; | 
| 
c06202417c4a
back to a form of hybrid facts, to reduce performance impact of ed92ce2ac88e;
 wenzelm parents: 
56140diff
changeset | 399 | val global_facts = Global_Theory.facts_of (theory_of ctxt); | 
| 
c06202417c4a
back to a form of hybrid facts, to reduce performance impact of ed92ce2ac88e;
 wenzelm parents: 
56140diff
changeset | 400 | in | 
| 56143 
ed2b660a52a1
more accurate resolution of hybrid facts, which actually changes the sort order of results;
 wenzelm parents: 
56141diff
changeset | 401 | if Facts.defined local_facts name | 
| 56141 
c06202417c4a
back to a form of hybrid facts, to reduce performance impact of ed92ce2ac88e;
 wenzelm parents: 
56140diff
changeset | 402 | then local_facts else global_facts | 
| 
c06202417c4a
back to a form of hybrid facts, to reduce performance impact of ed92ce2ac88e;
 wenzelm parents: 
56140diff
changeset | 403 | end; | 
| 
c06202417c4a
back to a form of hybrid facts, to reduce performance impact of ed92ce2ac88e;
 wenzelm parents: 
56140diff
changeset | 404 | |
| 
c06202417c4a
back to a form of hybrid facts, to reduce performance impact of ed92ce2ac88e;
 wenzelm parents: 
56140diff
changeset | 405 | fun markup_extern_fact ctxt name = | 
| 63080 
8326aa594273
find dynamic facts as well, but static ones are preferred;
 wenzelm parents: 
63057diff
changeset | 406 | let | 
| 
8326aa594273
find dynamic facts as well, but static ones are preferred;
 wenzelm parents: 
63057diff
changeset | 407 | val facts = facts_of_fact ctxt name; | 
| 
8326aa594273
find dynamic facts as well, but static ones are preferred;
 wenzelm parents: 
63057diff
changeset | 408 | val (markup, xname) = Facts.markup_extern ctxt facts name; | 
| 
8326aa594273
find dynamic facts as well, but static ones are preferred;
 wenzelm parents: 
63057diff
changeset | 409 | val markups = | 
| 
8326aa594273
find dynamic facts as well, but static ones are preferred;
 wenzelm parents: 
63057diff
changeset | 410 | if Facts.is_dynamic facts name then [markup, Markup.dynamic_fact name] | 
| 
8326aa594273
find dynamic facts as well, but static ones are preferred;
 wenzelm parents: 
63057diff
changeset | 411 | else [markup]; | 
| 
8326aa594273
find dynamic facts as well, but static ones are preferred;
 wenzelm parents: 
63057diff
changeset | 412 | in (markups, xname) end; | 
| 56141 
c06202417c4a
back to a form of hybrid facts, to reduce performance impact of ed92ce2ac88e;
 wenzelm parents: 
56140diff
changeset | 413 | |
| 
c06202417c4a
back to a form of hybrid facts, to reduce performance impact of ed92ce2ac88e;
 wenzelm parents: 
56140diff
changeset | 414 | |
| 12093 | 415 | |
| 14828 | 416 | (** pretty printing **) | 
| 417 | ||
| 64398 
5076725247fa
more robust printing of names in the context of outer syntax;
 wenzelm parents: 
63640diff
changeset | 418 | val print_name = Token.print_name o Thy_Header.get_keywords'; | 
| 
5076725247fa
more robust printing of names in the context of outer syntax;
 wenzelm parents: 
63640diff
changeset | 419 | val pretty_name = Pretty.str oo print_name; | 
| 
5076725247fa
more robust printing of names in the context of outer syntax;
 wenzelm parents: 
63640diff
changeset | 420 | |
| 24922 | 421 | fun pretty_term_abbrev ctxt = Syntax.pretty_term (set_mode mode_abbrev ctxt); | 
| 14828 | 422 | |
| 42378 | 423 | fun pretty_fact_name ctxt a = | 
| 63080 
8326aa594273
find dynamic facts as well, but static ones are preferred;
 wenzelm parents: 
63057diff
changeset | 424 | Pretty.block [Pretty.marks_str (markup_extern_fact ctxt a), Pretty.str ":"]; | 
| 28209 
02f3222a392d
pretty_fact: extern fact name wrt. the given context, assuming that is the proper one for presentation;
 wenzelm parents: 
28087diff
changeset | 425 | |
| 51583 | 426 | fun pretty_fact ctxt = | 
| 427 | let | |
| 61268 | 428 | val pretty_thm = Thm.pretty_thm ctxt; | 
| 429 | val pretty_thms = map (Thm.pretty_thm_item ctxt); | |
| 51583 | 430 | in | 
| 431 |     fn ("", [th]) => pretty_thm th
 | |
| 432 |      | ("", ths) => Pretty.blk (0, Pretty.fbreaks (pretty_thms ths))
 | |
| 433 | | (a, [th]) => Pretty.block [pretty_fact_name ctxt a, Pretty.brk 1, pretty_thm th] | |
| 434 | | (a, ths) => Pretty.block (Pretty.fbreaks (pretty_fact_name ctxt a :: pretty_thms ths)) | |
| 435 | end; | |
| 14828 | 436 | |
| 437 | ||
| 438 | ||
| 5819 | 439 | (** prepare types **) | 
| 440 | ||
| 35669 
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
 wenzelm parents: 
35616diff
changeset | 441 | (* classes *) | 
| 
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
 wenzelm parents: 
35616diff
changeset | 442 | |
| 55922 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55843diff
changeset | 443 | fun check_class ctxt (xname, pos) = | 
| 35669 
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
 wenzelm parents: 
35616diff
changeset | 444 | let | 
| 
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
 wenzelm parents: 
35616diff
changeset | 445 | val tsig = tsig_of ctxt; | 
| 55839 
ee71b2687c4b
more markup for read_class: imitate Name_Space.check despite lack of Name_Space.table;
 wenzelm parents: 
55829diff
changeset | 446 | val class_space = Type.class_space tsig; | 
| 
ee71b2687c4b
more markup for read_class: imitate Name_Space.check despite lack of Name_Space.table;
 wenzelm parents: 
55829diff
changeset | 447 | |
| 56007 | 448 | val name = Type.cert_class tsig (Name_Space.intern class_space xname) | 
| 55839 
ee71b2687c4b
more markup for read_class: imitate Name_Space.check despite lack of Name_Space.table;
 wenzelm parents: 
55829diff
changeset | 449 | handle TYPE (msg, _, _) => | 
| 55840 
2982d233d798
consider completion report as part of error message -- less stateful, may get handled;
 wenzelm parents: 
55839diff
changeset | 450 | error (msg ^ Position.here pos ^ | 
| 55956 
94d384d621b0
reject internal term names outright, and complete consts instead;
 wenzelm parents: 
55955diff
changeset | 451 | Markup.markup_report (Completion.reported_text | 
| 
94d384d621b0
reject internal term names outright, and complete consts instead;
 wenzelm parents: 
55955diff
changeset | 452 | (Name_Space.completion (Context.Proof ctxt) class_space (xname, pos)))); | 
| 55922 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55843diff
changeset | 453 | val reports = | 
| 55923 | 454 | if Context_Position.is_reported ctxt pos | 
| 55922 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55843diff
changeset | 455 | then [(pos, Name_Space.markup class_space name)] else []; | 
| 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55843diff
changeset | 456 | in (name, reports) end; | 
| 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55843diff
changeset | 457 | |
| 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55843diff
changeset | 458 | fun read_class ctxt text = | 
| 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55843diff
changeset | 459 | let | 
| 59795 | 460 | val source = Syntax.read_input text; | 
| 59066 | 461 | val (c, reports) = check_class ctxt (Input.source_content source, Input.pos_of source); | 
| 55922 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55843diff
changeset | 462 | val _ = Position.reports reports; | 
| 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55843diff
changeset | 463 | in c end; | 
| 35669 
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
 wenzelm parents: 
35616diff
changeset | 464 | |
| 
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
 wenzelm parents: 
35616diff
changeset | 465 | |
| 
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
 wenzelm parents: 
35616diff
changeset | 466 | (* types *) | 
| 24277 | 467 | |
| 468 | fun read_typ_mode mode ctxt s = | |
| 24486 | 469 | Syntax.read_typ (Type.set_mode mode ctxt) s; | 
| 24277 | 470 | |
| 35669 
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
 wenzelm parents: 
35616diff
changeset | 471 | val read_typ = read_typ_mode Type.mode_default; | 
| 24277 | 472 | val read_typ_syntax = read_typ_mode Type.mode_syntax; | 
| 473 | val read_typ_abbrev = read_typ_mode Type.mode_abbrev; | |
| 474 | ||
| 475 | ||
| 476 | fun cert_typ_mode mode ctxt T = | |
| 35669 
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
 wenzelm parents: 
35616diff
changeset | 477 | Type.cert_typ_mode mode (tsig_of ctxt) T | 
| 24277 | 478 | handle TYPE (msg, _, _) => error msg; | 
| 479 | ||
| 35669 
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
 wenzelm parents: 
35616diff
changeset | 480 | val cert_typ = cert_typ_mode Type.mode_default; | 
| 24277 | 481 | val cert_typ_syntax = cert_typ_mode Type.mode_syntax; | 
| 482 | val cert_typ_abbrev = cert_typ_mode Type.mode_abbrev; | |
| 483 | ||
| 484 | ||
| 24388 
cf24894b81ff
added inner syntax mode, includes former type_mode and is_stmt;
 wenzelm parents: 
24371diff
changeset | 485 | |
| 5819 | 486 | (** prepare terms and propositions **) | 
| 487 | ||
| 25328 | 488 | (* inferred types of parameters *) | 
| 489 | ||
| 490 | fun infer_type ctxt x = | |
| 36505 
79c1d2bbe5a9
ProofContext.read_const: allow for type constraint (for fixed variable);
 wenzelm parents: 
36503diff
changeset | 491 | Term.fastype_of (singleton (Syntax.check_terms (set_mode mode_schematic ctxt)) (Free x)); | 
| 25328 | 492 | |
| 493 | fun inferred_param x ctxt = | |
| 60407 | 494 | let val p = (x, infer_type ctxt (x, dummyT)) | 
| 495 | in (p, ctxt |> Variable.declare_term (Free p)) end; | |
| 25328 | 496 | |
| 497 | fun inferred_fixes ctxt = | |
| 60407 | 498 | fold_map inferred_param (map #2 (Variable.dest_fixes ctxt)) ctxt; | 
| 25328 | 499 | |
| 500 | ||
| 55842 | 501 | (* type names *) | 
| 25328 | 502 | |
| 56002 | 503 | fun check_type_name {proper, strict} ctxt (c, pos) =
 | 
| 55922 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55843diff
changeset | 504 | if Lexicon.is_tid c then | 
| 56040 | 505 |     if proper then error ("Not a type constructor: " ^ quote c ^ Position.here pos)
 | 
| 55951 
c07d184aebe9
tuned signature -- more uniform check_type_name/read_type_name;
 wenzelm parents: 
55950diff
changeset | 506 | else | 
| 
c07d184aebe9
tuned signature -- more uniform check_type_name/read_type_name;
 wenzelm parents: 
55950diff
changeset | 507 | let | 
| 
c07d184aebe9
tuned signature -- more uniform check_type_name/read_type_name;
 wenzelm parents: 
55950diff
changeset | 508 | val reports = | 
| 
c07d184aebe9
tuned signature -- more uniform check_type_name/read_type_name;
 wenzelm parents: 
55950diff
changeset | 509 | if Context_Position.is_reported ctxt pos | 
| 
c07d184aebe9
tuned signature -- more uniform check_type_name/read_type_name;
 wenzelm parents: 
55950diff
changeset | 510 | then [(pos, Markup.tfree)] else []; | 
| 
c07d184aebe9
tuned signature -- more uniform check_type_name/read_type_name;
 wenzelm parents: 
55950diff
changeset | 511 | in (TFree (c, default_sort ctxt (c, ~1)), reports) end | 
| 55922 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55843diff
changeset | 512 | else | 
| 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55843diff
changeset | 513 | let | 
| 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55843diff
changeset | 514 | val ((d, reports), decl) = Type.check_decl (Context.Proof ctxt) (tsig_of ctxt) (c, pos); | 
| 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55843diff
changeset | 515 |       fun err () = error ("Bad type name: " ^ quote d ^ Position.here pos);
 | 
| 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55843diff
changeset | 516 | val args = | 
| 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55843diff
changeset | 517 | (case decl of | 
| 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55843diff
changeset | 518 | Type.LogicalType n => n | 
| 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55843diff
changeset | 519 | | Type.Abbreviation (vs, _, _) => if strict then err () else length vs | 
| 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55843diff
changeset | 520 | | Type.Nonterminal => if strict then err () else 0); | 
| 
710bc66f432c
more markup for inner syntax class/type names (notably for completion);
 wenzelm parents: 
55843diff
changeset | 521 | in (Type (d, replicate args dummyT), reports) end; | 
| 25328 | 522 | |
| 55951 
c07d184aebe9
tuned signature -- more uniform check_type_name/read_type_name;
 wenzelm parents: 
55950diff
changeset | 523 | fun read_type_name ctxt flags text = | 
| 
c07d184aebe9
tuned signature -- more uniform check_type_name/read_type_name;
 wenzelm parents: 
55950diff
changeset | 524 | let | 
| 59795 | 525 | val source = Syntax.read_input text; | 
| 55951 
c07d184aebe9
tuned signature -- more uniform check_type_name/read_type_name;
 wenzelm parents: 
55950diff
changeset | 526 | val (T, reports) = | 
| 59066 | 527 | check_type_name ctxt flags (Input.source_content source, Input.pos_of source); | 
| 55951 
c07d184aebe9
tuned signature -- more uniform check_type_name/read_type_name;
 wenzelm parents: 
55950diff
changeset | 528 | val _ = Position.reports reports; | 
| 
c07d184aebe9
tuned signature -- more uniform check_type_name/read_type_name;
 wenzelm parents: 
55950diff
changeset | 529 | in T end; | 
| 35669 
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
 wenzelm parents: 
35616diff
changeset | 530 | |
| 
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
 wenzelm parents: 
35616diff
changeset | 531 | |
| 55842 | 532 | (* constant names *) | 
| 533 | ||
| 55956 
94d384d621b0
reject internal term names outright, and complete consts instead;
 wenzelm parents: 
55955diff
changeset | 534 | fun consts_completion_message ctxt (c, ps) = | 
| 
94d384d621b0
reject internal term names outright, and complete consts instead;
 wenzelm parents: 
55955diff
changeset | 535 | ps |> map (fn pos => | 
| 
94d384d621b0
reject internal term names outright, and complete consts instead;
 wenzelm parents: 
55955diff
changeset | 536 | Name_Space.completion (Context.Proof ctxt) (Consts.space_of (consts_of ctxt)) (c, pos) | 
| 
94d384d621b0
reject internal term names outright, and complete consts instead;
 wenzelm parents: 
55955diff
changeset | 537 | |> Completion.reported_text) | 
| 
94d384d621b0
reject internal term names outright, and complete consts instead;
 wenzelm parents: 
55955diff
changeset | 538 | |> implode | 
| 
94d384d621b0
reject internal term names outright, and complete consts instead;
 wenzelm parents: 
55955diff
changeset | 539 | |> Markup.markup_report; | 
| 
94d384d621b0
reject internal term names outright, and complete consts instead;
 wenzelm parents: 
55955diff
changeset | 540 | |
| 56002 | 541 | fun check_const {proper, strict} ctxt (c, ps) =
 | 
| 55842 | 542 | let | 
| 55956 
94d384d621b0
reject internal term names outright, and complete consts instead;
 wenzelm parents: 
55955diff
changeset | 543 | val _ = | 
| 55959 
c3b458435f4f
more decisive commitment to get_free vs. the_const;
 wenzelm parents: 
55956diff
changeset | 544 | Name.reject_internal (c, ps) handle ERROR msg => | 
| 
c3b458435f4f
more decisive commitment to get_free vs. the_const;
 wenzelm parents: 
55956diff
changeset | 545 | error (msg ^ consts_completion_message ctxt (c, ps)); | 
| 
c3b458435f4f
more decisive commitment to get_free vs. the_const;
 wenzelm parents: 
55956diff
changeset | 546 | fun err msg = error (msg ^ Position.here_list ps); | 
| 55842 | 547 | val consts = consts_of ctxt; | 
| 55954 | 548 | val fixed = if proper then NONE else Variable.lookup_fixed ctxt c; | 
| 549 | val (t, reports) = | |
| 550 | (case (fixed, Variable.lookup_const ctxt c) of | |
| 551 | (SOME x, NONE) => | |
| 55843 
3fa61f39d1f2
prefer Name_Space.check with its builtin reports (including completion);
 wenzelm parents: 
55842diff
changeset | 552 | let | 
| 55959 
c3b458435f4f
more decisive commitment to get_free vs. the_const;
 wenzelm parents: 
55956diff
changeset | 553 | val reports = ps | 
| 
c3b458435f4f
more decisive commitment to get_free vs. the_const;
 wenzelm parents: 
55956diff
changeset | 554 | |> filter (Context_Position.is_reported ctxt) | 
| 
c3b458435f4f
more decisive commitment to get_free vs. the_const;
 wenzelm parents: 
55956diff
changeset | 555 | |> map (fn pos => | 
| 
c3b458435f4f
more decisive commitment to get_free vs. the_const;
 wenzelm parents: 
55956diff
changeset | 556 | (pos, Markup.name x (if Name.is_skolem x then Markup.skolem else Markup.free))); | 
| 55955 
e8f1bf005661
eliminated odd type constraint for read_const (see also 79c1d2bbe5a9);
 wenzelm parents: 
55954diff
changeset | 557 | in (Free (x, infer_type ctxt (x, dummyT)), reports) end | 
| 55954 | 558 | | (_, SOME d) => | 
| 559 | let | |
| 560 | val T = Consts.type_scheme consts d handle TYPE (msg, _, _) => err msg; | |
| 55959 
c3b458435f4f
more decisive commitment to get_free vs. the_const;
 wenzelm parents: 
55956diff
changeset | 561 | val reports = ps | 
| 
c3b458435f4f
more decisive commitment to get_free vs. the_const;
 wenzelm parents: 
55956diff
changeset | 562 | |> filter (Context_Position.is_reported ctxt) | 
| 
c3b458435f4f
more decisive commitment to get_free vs. the_const;
 wenzelm parents: 
55956diff
changeset | 563 | |> map (fn pos => (pos, Name_Space.markup (Consts.space_of consts) d)); | 
| 55950 
3bb5c7179234
clarified treatment of consts -- prefer value-oriented reports;
 wenzelm parents: 
55949diff
changeset | 564 | in (Const (d, T), reports) end | 
| 55959 
c3b458435f4f
more decisive commitment to get_free vs. the_const;
 wenzelm parents: 
55956diff
changeset | 565 | | _ => Consts.check_const (Context.Proof ctxt) consts (c, ps)); | 
| 55842 | 566 | val _ = | 
| 55954 | 567 | (case (strict, t) of | 
| 568 | (true, Const (d, _)) => | |
| 569 | (ignore (Consts.the_const consts d) handle TYPE (msg, _, _) => err msg) | |
| 570 | | _ => ()); | |
| 55950 
3bb5c7179234
clarified treatment of consts -- prefer value-oriented reports;
 wenzelm parents: 
55949diff
changeset | 571 | in (t, reports) end; | 
| 55842 | 572 | |
| 55955 
e8f1bf005661
eliminated odd type constraint for read_const (see also 79c1d2bbe5a9);
 wenzelm parents: 
55954diff
changeset | 573 | fun read_const ctxt flags text = | 
| 55950 
3bb5c7179234
clarified treatment of consts -- prefer value-oriented reports;
 wenzelm parents: 
55949diff
changeset | 574 | let | 
| 59795 | 575 | val source = Syntax.read_input text; | 
| 59066 | 576 | val (t, reports) = check_const ctxt flags (Input.source_content source, [Input.pos_of source]); | 
| 55950 
3bb5c7179234
clarified treatment of consts -- prefer value-oriented reports;
 wenzelm parents: 
55949diff
changeset | 577 | val _ = Position.reports reports; | 
| 
3bb5c7179234
clarified treatment of consts -- prefer value-oriented reports;
 wenzelm parents: 
55949diff
changeset | 578 | in t end; | 
| 25328 | 579 | |
| 580 | ||
| 46922 
3717f3878714
source positions for locale and class expressions;
 wenzelm parents: 
46849diff
changeset | 581 | (* type arities *) | 
| 
3717f3878714
source positions for locale and class expressions;
 wenzelm parents: 
46849diff
changeset | 582 | |
| 
3717f3878714
source positions for locale and class expressions;
 wenzelm parents: 
46849diff
changeset | 583 | local | 
| 
3717f3878714
source positions for locale and class expressions;
 wenzelm parents: 
46849diff
changeset | 584 | |
| 
3717f3878714
source positions for locale and class expressions;
 wenzelm parents: 
46849diff
changeset | 585 | fun prep_arity prep_tycon prep_sort ctxt (t, Ss, S) = | 
| 
3717f3878714
source positions for locale and class expressions;
 wenzelm parents: 
46849diff
changeset | 586 | let val arity = (prep_tycon ctxt t, map (prep_sort ctxt) Ss, prep_sort ctxt S) | 
| 61262 
7bd1eb4b056e
tuned signature: eliminated pointless type Context.pretty;
 wenzelm parents: 
61261diff
changeset | 587 | in Type.add_arity (Context.Proof ctxt) arity (tsig_of ctxt); arity end; | 
| 46922 
3717f3878714
source positions for locale and class expressions;
 wenzelm parents: 
46849diff
changeset | 588 | |
| 
3717f3878714
source positions for locale and class expressions;
 wenzelm parents: 
46849diff
changeset | 589 | in | 
| 
3717f3878714
source positions for locale and class expressions;
 wenzelm parents: 
46849diff
changeset | 590 | |
| 
3717f3878714
source positions for locale and class expressions;
 wenzelm parents: 
46849diff
changeset | 591 | val read_arity = | 
| 56002 | 592 |   prep_arity ((#1 o dest_Type) oo read_type_name {proper = true, strict = true}) Syntax.read_sort;
 | 
| 47005 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 593 | |
| 46922 
3717f3878714
source positions for locale and class expressions;
 wenzelm parents: 
46849diff
changeset | 594 | val cert_arity = prep_arity (K I) (Type.cert_sort o tsig_of); | 
| 
3717f3878714
source positions for locale and class expressions;
 wenzelm parents: 
46849diff
changeset | 595 | |
| 
3717f3878714
source positions for locale and class expressions;
 wenzelm parents: 
46849diff
changeset | 596 | end; | 
| 
3717f3878714
source positions for locale and class expressions;
 wenzelm parents: 
46849diff
changeset | 597 | |
| 
3717f3878714
source positions for locale and class expressions;
 wenzelm parents: 
46849diff
changeset | 598 | |
| 24684 | 599 | (* read_term *) | 
| 600 | ||
| 601 | fun read_term_mode mode ctxt = Syntax.read_term (set_mode mode ctxt); | |
| 602 | ||
| 603 | val read_term_pattern = read_term_mode mode_pattern; | |
| 604 | val read_term_schematic = read_term_mode mode_schematic; | |
| 605 | val read_term_abbrev = read_term_mode mode_abbrev; | |
| 606 | ||
| 607 | ||
| 19001 | 608 | (* local abbreviations *) | 
| 5819 | 609 | |
| 24501 | 610 | local | 
| 611 | ||
| 61262 
7bd1eb4b056e
tuned signature: eliminated pointless type Context.pretty;
 wenzelm parents: 
61261diff
changeset | 612 | fun certify_consts ctxt = | 
| 
7bd1eb4b056e
tuned signature: eliminated pointless type Context.pretty;
 wenzelm parents: 
61261diff
changeset | 613 | Consts.certify (Context.Proof ctxt) (tsig_of ctxt) | 
| 
7bd1eb4b056e
tuned signature: eliminated pointless type Context.pretty;
 wenzelm parents: 
61261diff
changeset | 614 | (not (abbrev_mode ctxt)) (consts_of ctxt); | 
| 19001 | 615 | |
| 38979 
60dbf0b3f6c7
prefer regular print functions over slightly low-level Term.string_of_vname;
 wenzelm parents: 
38756diff
changeset | 616 | fun expand_binds ctxt = | 
| 
60dbf0b3f6c7
prefer regular print functions over slightly low-level Term.string_of_vname;
 wenzelm parents: 
38756diff
changeset | 617 | let | 
| 
60dbf0b3f6c7
prefer regular print functions over slightly low-level Term.string_of_vname;
 wenzelm parents: 
38756diff
changeset | 618 |     val Mode {pattern, schematic, ...} = get_mode ctxt;
 | 
| 5819 | 619 | |
| 38979 
60dbf0b3f6c7
prefer regular print functions over slightly low-level Term.string_of_vname;
 wenzelm parents: 
38756diff
changeset | 620 | fun reject_schematic (t as Var _) = | 
| 
60dbf0b3f6c7
prefer regular print functions over slightly low-level Term.string_of_vname;
 wenzelm parents: 
38756diff
changeset | 621 |           error ("Unbound schematic variable: " ^ Syntax.string_of_term ctxt t)
 | 
| 
60dbf0b3f6c7
prefer regular print functions over slightly low-level Term.string_of_vname;
 wenzelm parents: 
38756diff
changeset | 622 | | reject_schematic (Abs (_, _, t)) = reject_schematic t | 
| 
60dbf0b3f6c7
prefer regular print functions over slightly low-level Term.string_of_vname;
 wenzelm parents: 
38756diff
changeset | 623 | | reject_schematic (t $ u) = (reject_schematic t; reject_schematic u) | 
| 
60dbf0b3f6c7
prefer regular print functions over slightly low-level Term.string_of_vname;
 wenzelm parents: 
38756diff
changeset | 624 | | reject_schematic _ = (); | 
| 
60dbf0b3f6c7
prefer regular print functions over slightly low-level Term.string_of_vname;
 wenzelm parents: 
38756diff
changeset | 625 | in | 
| 24495 | 626 | if pattern then I | 
| 627 | else Variable.expand_binds ctxt #> (if schematic then I else tap reject_schematic) | |
| 628 | end; | |
| 5819 | 629 | |
| 24501 | 630 | in | 
| 631 | ||
| 632 | fun expand_abbrevs ctxt = certify_consts ctxt #> expand_binds ctxt; | |
| 633 | ||
| 634 | end; | |
| 635 | ||
| 64556 | 636 | val show_abbrevs_raw = Config.declare ("show_abbrevs", \<^here>) (fn _ => Config.Bool true);
 | 
| 40879 
ca132ef44944
configuration option "show_abbrevs" supersedes print mode "no_abbrevs", with inverted meaning;
 wenzelm parents: 
39557diff
changeset | 637 | val show_abbrevs = Config.bool show_abbrevs_raw; | 
| 5819 | 638 | |
| 24922 | 639 | fun contract_abbrevs ctxt t = | 
| 640 | let | |
| 641 | val thy = theory_of ctxt; | |
| 642 | val consts = consts_of ctxt; | |
| 643 |     val Mode {abbrev, ...} = get_mode ctxt;
 | |
| 30566 
9643f54c4184
reverted abbreviations: improved performance via Item_Net.T;
 wenzelm parents: 
30473diff
changeset | 644 | val retrieve = Consts.retrieve_abbrevs consts (print_mode_value () @ [""]); | 
| 
9643f54c4184
reverted abbreviations: improved performance via Item_Net.T;
 wenzelm parents: 
30473diff
changeset | 645 | fun match_abbrev u = Option.map #1 (get_first (Pattern.match_rew thy u) (retrieve u)); | 
| 24922 | 646 | in | 
| 40879 
ca132ef44944
configuration option "show_abbrevs" supersedes print mode "no_abbrevs", with inverted meaning;
 wenzelm parents: 
39557diff
changeset | 647 | if abbrev orelse not (Config.get ctxt show_abbrevs) orelse not (can Term.type_of t) then t | 
| 35211 
5d2fe4e09354
Use top-down rewriting to contract abbreviations.
 berghofe parents: 
35141diff
changeset | 648 | else Pattern.rewrite_term_top thy [] [match_abbrev] t | 
| 24922 | 649 | end; | 
| 650 | ||
| 651 | ||
| 24518 | 652 | (* patterns *) | 
| 653 | ||
| 32003 | 654 | fun prepare_patternT ctxt T = | 
| 655 | let | |
| 656 |     val Mode {pattern, schematic, ...} = get_mode ctxt;
 | |
| 657 | val _ = | |
| 658 | pattern orelse schematic orelse | |
| 659 | T |> Term.exists_subtype | |
| 38979 
60dbf0b3f6c7
prefer regular print functions over slightly low-level Term.string_of_vname;
 wenzelm parents: 
38756diff
changeset | 660 | (fn T as TVar (xi, _) => | 
| 37145 
01aa36932739
renamed structure TypeInfer to Type_Infer, keeping the old name as legacy alias for some time;
 wenzelm parents: 
36610diff
changeset | 661 | not (Type_Infer.is_param xi) andalso | 
| 38979 
60dbf0b3f6c7
prefer regular print functions over slightly low-level Term.string_of_vname;
 wenzelm parents: 
38756diff
changeset | 662 |               error ("Illegal schematic type variable: " ^ Syntax.string_of_typ ctxt T)
 | 
| 32003 | 663 | | _ => false) | 
| 664 | in T end; | |
| 24518 | 665 | |
| 22712 | 666 | |
| 24505 | 667 | local | 
| 6550 | 668 | |
| 56438 | 669 | val dummies = | 
| 64556 | 670 |   Config.bool (Config.declare ("Proof_Context.dummies", \<^here>) (K (Config.Bool false)));
 | 
| 27259 | 671 | |
| 672 | fun check_dummies ctxt t = | |
| 39508 
dfacdb01e1ec
simplified some internal flags using Config.T instead of full-blown Proof_Data;
 wenzelm parents: 
39507diff
changeset | 673 | if Config.get ctxt dummies then t | 
| 27259 | 674 | else Term.no_dummy_patterns t handle TERM _ => error "Illegal dummy pattern(s) in term"; | 
| 675 | ||
| 24767 | 676 | fun prepare_dummies ts = #1 (fold_map Term.replace_dummy_patterns ts 1); | 
| 6762 | 677 | |
| 27259 | 678 | in | 
| 6550 | 679 | |
| 39508 
dfacdb01e1ec
simplified some internal flags using Config.T instead of full-blown Proof_Data;
 wenzelm parents: 
39507diff
changeset | 680 | val allow_dummies = Config.put dummies true; | 
| 24505 | 681 | |
| 24684 | 682 | fun prepare_patterns ctxt = | 
| 24518 | 683 |   let val Mode {pattern, ...} = get_mode ctxt in
 | 
| 62958 
b41c1cb5e251
Type_Infer.object_logic controls improvement of type inference result;
 wenzelm parents: 
62773diff
changeset | 684 | Type_Infer.fixate ctxt pattern #> | 
| 24767 | 685 | pattern ? Variable.polymorphic ctxt #> | 
| 24684 | 686 | (map o Term.map_types) (prepare_patternT ctxt) #> | 
| 27259 | 687 | (if pattern then prepare_dummies else map (check_dummies ctxt)) | 
| 24505 | 688 | end; | 
| 689 | ||
| 690 | end; | |
| 691 | ||
| 6550 | 692 | |
| 42250 
cc5ac538f991
eliminated odd object-oriented type_context/term_context;
 wenzelm parents: 
42242diff
changeset | 693 | (* sort constraints *) | 
| 27286 | 694 | |
| 49674 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 695 | local | 
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 696 | |
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 697 | fun prepare_sorts_env ctxt tys = | 
| 27286 | 698 | let | 
| 35669 
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
 wenzelm parents: 
35616diff
changeset | 699 | val tsig = tsig_of ctxt; | 
| 45453 | 700 | val defaultS = Type.defaultS tsig; | 
| 27286 | 701 | |
| 53673 
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
 wenzelm parents: 
53380diff
changeset | 702 |     val dummy_var = ("'_dummy_", ~1);
 | 
| 
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
 wenzelm parents: 
53380diff
changeset | 703 | |
| 49685 
4341e4d86872
allow position constraints to coexist with 0 or 1 sort constraints;
 wenzelm parents: 
49674diff
changeset | 704 | fun constraint (xi, raw_S) env = | 
| 
4341e4d86872
allow position constraints to coexist with 0 or 1 sort constraints;
 wenzelm parents: 
49674diff
changeset | 705 | let val (ps, S) = Term_Position.decode_positionS raw_S in | 
| 53673 
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
 wenzelm parents: 
53380diff
changeset | 706 | if xi = dummy_var orelse S = dummyS then env | 
| 49685 
4341e4d86872
allow position constraints to coexist with 0 or 1 sort constraints;
 wenzelm parents: 
49674diff
changeset | 707 | else | 
| 
4341e4d86872
allow position constraints to coexist with 0 or 1 sort constraints;
 wenzelm parents: 
49674diff
changeset | 708 | Vartab.insert (op =) (xi, Type.minimize_sort tsig S) env | 
| 
4341e4d86872
allow position constraints to coexist with 0 or 1 sort constraints;
 wenzelm parents: 
49674diff
changeset | 709 | handle Vartab.DUP _ => | 
| 
4341e4d86872
allow position constraints to coexist with 0 or 1 sort constraints;
 wenzelm parents: 
49674diff
changeset | 710 |               error ("Inconsistent sort constraints for type variable " ^
 | 
| 49691 | 711 | quote (Term.string_of_vname' xi) ^ Position.here_list ps) | 
| 49685 
4341e4d86872
allow position constraints to coexist with 0 or 1 sort constraints;
 wenzelm parents: 
49674diff
changeset | 712 | end; | 
| 
4341e4d86872
allow position constraints to coexist with 0 or 1 sort constraints;
 wenzelm parents: 
49674diff
changeset | 713 | |
| 45453 | 714 | val env = | 
| 715 | (fold o fold_atyps) | |
| 716 | (fn TFree (x, S) => constraint ((x, ~1), S) | |
| 717 | | TVar v => constraint v | |
| 718 | | _ => I) tys Vartab.empty; | |
| 36152 | 719 | |
| 53673 
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
 wenzelm parents: 
53380diff
changeset | 720 | fun get_sort xi raw_S = | 
| 
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
 wenzelm parents: 
53380diff
changeset | 721 | if xi = dummy_var then | 
| 
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
 wenzelm parents: 
53380diff
changeset | 722 | Type.minimize_sort tsig (#2 (Term_Position.decode_positionS raw_S)) | 
| 
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
 wenzelm parents: 
53380diff
changeset | 723 | else | 
| 
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
 wenzelm parents: 
53380diff
changeset | 724 | (case (Vartab.lookup env xi, Variable.def_sort ctxt xi) of | 
| 
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
 wenzelm parents: 
53380diff
changeset | 725 | (NONE, NONE) => defaultS | 
| 
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
 wenzelm parents: 
53380diff
changeset | 726 | | (NONE, SOME S) => S | 
| 
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
 wenzelm parents: 
53380diff
changeset | 727 | | (SOME S, NONE) => S | 
| 
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
 wenzelm parents: 
53380diff
changeset | 728 | | (SOME S, SOME S') => | 
| 
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
 wenzelm parents: 
53380diff
changeset | 729 | if Type.eq_sort tsig (S, S') then S' | 
| 
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
 wenzelm parents: 
53380diff
changeset | 730 | else | 
| 
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
 wenzelm parents: 
53380diff
changeset | 731 |               error ("Sort constraint " ^ Syntax.string_of_sort ctxt S ^
 | 
| 
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
 wenzelm parents: 
53380diff
changeset | 732 | " inconsistent with default " ^ Syntax.string_of_sort ctxt S' ^ | 
| 
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
 wenzelm parents: 
53380diff
changeset | 733 | " for type variable " ^ quote (Term.string_of_vname' xi))); | 
| 49674 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 734 | |
| 49685 
4341e4d86872
allow position constraints to coexist with 0 or 1 sort constraints;
 wenzelm parents: 
49674diff
changeset | 735 | fun add_report S pos reports = | 
| 
4341e4d86872
allow position constraints to coexist with 0 or 1 sort constraints;
 wenzelm parents: 
49674diff
changeset | 736 | if Position.is_reported pos andalso not (AList.defined (op =) reports pos) then | 
| 50201 
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
 wenzelm parents: 
50126diff
changeset | 737 | (pos, Position.reported_text pos Markup.sorting (Syntax.string_of_sort ctxt S)) :: reports | 
| 49685 
4341e4d86872
allow position constraints to coexist with 0 or 1 sort constraints;
 wenzelm parents: 
49674diff
changeset | 738 | else reports; | 
| 
4341e4d86872
allow position constraints to coexist with 0 or 1 sort constraints;
 wenzelm parents: 
49674diff
changeset | 739 | |
| 49691 | 740 | fun get_sort_reports xi raw_S = | 
| 741 | let | |
| 742 | val ps = #1 (Term_Position.decode_positionS raw_S); | |
| 53673 
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
 wenzelm parents: 
53380diff
changeset | 743 | val S = get_sort xi raw_S handle ERROR msg => error (msg ^ Position.here_list ps); | 
| 49691 | 744 | in fold (add_report S) ps end; | 
| 49674 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 745 | |
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 746 | val reports = | 
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 747 | (fold o fold_atyps) | 
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 748 | (fn T => | 
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 749 | if Term_Position.is_positionT T then I | 
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 750 | else | 
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 751 | (case T of | 
| 49691 | 752 | TFree (x, raw_S) => get_sort_reports (x, ~1) raw_S | 
| 753 | | TVar (xi, raw_S) => get_sort_reports xi raw_S | |
| 49674 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 754 | | _ => I)) tys []; | 
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 755 | |
| 56333 
38f1422ef473
support bulk messages consisting of small string segments, which are more healthy to the Poly/ML RTS and might prevent spurious GC crashes such as MTGCProcessMarkPointers::ScanAddressesInObject;
 wenzelm parents: 
56294diff
changeset | 756 | in (map #2 reports, get_sort) end; | 
| 27286 | 757 | |
| 49674 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 758 | fun replace_sortsT get_sort = | 
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 759 | map_atyps | 
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 760 | (fn T => | 
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 761 | if Term_Position.is_positionT T then T | 
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 762 | else | 
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 763 | (case T of | 
| 53673 
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
 wenzelm parents: 
53380diff
changeset | 764 | TFree (x, raw_S) => TFree (x, get_sort (x, ~1) raw_S) | 
| 
bcfd16f65014
treat all dummy type variables separately (in contrast to fca432074fb2);
 wenzelm parents: 
53380diff
changeset | 765 | | TVar (xi, raw_S) => TVar (xi, get_sort xi raw_S) | 
| 49674 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 766 | | _ => T)); | 
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 767 | |
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 768 | in | 
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 769 | |
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 770 | fun prepare_sortsT ctxt tys = | 
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 771 | let val (sorting_report, get_sort) = prepare_sorts_env ctxt tys | 
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 772 | in (sorting_report, map (replace_sortsT get_sort) tys) end; | 
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 773 | |
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 774 | fun prepare_sorts ctxt tms = | 
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 775 | let | 
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 776 | val tys = rev ((fold o fold_types) cons tms []); | 
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 777 | val (sorting_report, get_sort) = prepare_sorts_env ctxt tys; | 
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 778 | in (sorting_report, (map o map_types) (replace_sortsT get_sort) tms) end; | 
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 779 | |
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 780 | fun check_tfree ctxt v = | 
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 781 | let | 
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 782 | val (sorting_report, [TFree a]) = prepare_sortsT ctxt [TFree v]; | 
| 56294 
85911b8a6868
prefer Context_Position where a context is available;
 wenzelm parents: 
56202diff
changeset | 783 | val _ = if Context_Position.is_visible ctxt then Output.report sorting_report else (); | 
| 49674 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 784 | in a end; | 
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 785 | |
| 
dbadb4d03cbc
report sort assignment of visible type variables;
 wenzelm parents: 
48992diff
changeset | 786 | end; | 
| 36152 | 787 | |
| 5819 | 788 | |
| 789 | (* certify terms *) | |
| 790 | ||
| 10554 | 791 | local | 
| 792 | ||
| 24684 | 793 | fun gen_cert prop ctxt t = | 
| 794 | t | |
| 795 | |> expand_abbrevs ctxt | |
| 42383 
0ae4ad40d7b5
simplified pretty printing context, which is only required for certain kernel operations;
 wenzelm parents: 
42381diff
changeset | 796 | |> (fn t' => | 
| 61262 
7bd1eb4b056e
tuned signature: eliminated pointless type Context.pretty;
 wenzelm parents: 
61261diff
changeset | 797 | #1 (Sign.certify' prop (Context.Proof ctxt) false (consts_of ctxt) (theory_of ctxt) t') | 
| 42383 
0ae4ad40d7b5
simplified pretty printing context, which is only required for certain kernel operations;
 wenzelm parents: 
42381diff
changeset | 798 | handle TYPE (msg, _, _) => error msg | TERM (msg, _) => error msg); | 
| 16501 | 799 | |
| 10554 | 800 | in | 
| 8096 | 801 | |
| 24684 | 802 | val cert_term = gen_cert false; | 
| 803 | val cert_prop = gen_cert true; | |
| 10554 | 804 | |
| 805 | end; | |
| 5819 | 806 | |
| 807 | ||
| 42405 
13ecdb3057d8
split Type_Infer into early and late part, after Proof_Context;
 wenzelm parents: 
42402diff
changeset | 808 | (* check/uncheck *) | 
| 22701 | 809 | |
| 35616 
b342390d296f
provide ProofContext.def_type depending on "pattern" mode;
 wenzelm parents: 
35429diff
changeset | 810 | fun def_type ctxt = | 
| 
b342390d296f
provide ProofContext.def_type depending on "pattern" mode;
 wenzelm parents: 
35429diff
changeset | 811 |   let val Mode {pattern, ...} = get_mode ctxt
 | 
| 
b342390d296f
provide ProofContext.def_type depending on "pattern" mode;
 wenzelm parents: 
35429diff
changeset | 812 | in Variable.def_type ctxt pattern end; | 
| 
b342390d296f
provide ProofContext.def_type depending on "pattern" mode;
 wenzelm parents: 
35429diff
changeset | 813 | |
| 24518 | 814 | fun standard_typ_check ctxt = | 
| 45429 | 815 | map (cert_typ_mode (Type.get_mode ctxt) ctxt #> prepare_patternT ctxt); | 
| 24922 | 816 | |
| 45429 | 817 | val standard_term_check_finish = prepare_patterns; | 
| 24518 | 818 | |
| 45429 | 819 | fun standard_term_uncheck ctxt = map (contract_abbrevs ctxt); | 
| 22701 | 820 | |
| 821 | ||
| 9553 | 822 | |
| 21610 | 823 | (** export results **) | 
| 21531 | 824 | |
| 20310 | 825 | fun common_export is_goal inner outer = | 
| 826 | map (Assumption.export is_goal inner outer) #> | |
| 827 | Variable.export inner outer; | |
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 828 | |
| 20310 | 829 | val goal_export = common_export true; | 
| 830 | val export = common_export false; | |
| 12704 | 831 | |
| 21531 | 832 | fun export_morphism inner outer = | 
| 833 | Assumption.export_morphism inner outer $> | |
| 834 | Variable.export_morphism inner outer; | |
| 835 | ||
| 28396 | 836 | fun norm_export_morphism inner outer = | 
| 837 | export_morphism inner outer $> | |
| 54883 
dd04a8b654fc
proper context for norm_hhf and derived operations;
 wenzelm parents: 
54742diff
changeset | 838 | Morphism.thm_morphism "Proof_Context.norm_export" (Goal.norm_result outer); | 
| 28396 | 839 | |
| 21531 | 840 | |
| 15758 
07e382399a96
binds/thms: do not store options, but delete from table;
 wenzelm parents: 
15750diff
changeset | 841 | |
| 30757 
2d2076300185
replaced add_binds(_i) by bind_terms -- internal version only;
 wenzelm parents: 
30723diff
changeset | 842 | (** term bindings **) | 
| 5819 | 843 | |
| 8096 | 844 | (* simult_matches *) | 
| 845 | ||
| 19867 | 846 | fun simult_matches ctxt (t, pats) = | 
| 58950 
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
 wenzelm parents: 
58668diff
changeset | 847 | (case Seq.pull (Unify.matchers (Context.Proof ctxt) (map (rpair t) pats)) of | 
| 19867 | 848 | NONE => error "Pattern match failed!" | 
| 32032 | 849 | | SOME (env, _) => Vartab.fold (fn (v, (_, t)) => cons (v, t)) (Envir.term_env env) []); | 
| 8096 | 850 | |
| 851 | ||
| 30757 
2d2076300185
replaced add_binds(_i) by bind_terms -- internal version only;
 wenzelm parents: 
30723diff
changeset | 852 | (* auto_bind *) | 
| 10810 | 853 | |
| 60408 
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
 wenzelm parents: 
60407diff
changeset | 854 | fun auto_bind f props ctxt = fold Variable.maybe_bind_term (f ctxt props) ctxt; | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 855 | |
| 33386 | 856 | val auto_bind_goal = auto_bind Auto_Bind.goal; | 
| 857 | val auto_bind_facts = auto_bind Auto_Bind.facts; | |
| 7925 | 858 | |
| 5819 | 859 | |
| 60408 
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
 wenzelm parents: 
60407diff
changeset | 860 | (* bind terms (non-schematic) *) | 
| 
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
 wenzelm parents: 
60407diff
changeset | 861 | |
| 
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
 wenzelm parents: 
60407diff
changeset | 862 | fun cert_maybe_bind_term (xi, t) ctxt = | 
| 
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
 wenzelm parents: 
60407diff
changeset | 863 | ctxt | 
| 
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
 wenzelm parents: 
60407diff
changeset | 864 | |> Variable.maybe_bind_term (xi, Option.map (cert_term (set_mode mode_default ctxt)) t); | 
| 
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
 wenzelm parents: 
60407diff
changeset | 865 | |
| 
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
 wenzelm parents: 
60407diff
changeset | 866 | val cert_bind_term = cert_maybe_bind_term o apsnd SOME; | 
| 
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
 wenzelm parents: 
60407diff
changeset | 867 | |
| 
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
 wenzelm parents: 
60407diff
changeset | 868 | |
| 60377 | 869 | (* match_bind *) | 
| 5819 | 870 | |
| 8096 | 871 | local | 
| 872 | ||
| 24684 | 873 | fun gen_bind prep_terms gen raw_binds ctxt = | 
| 5819 | 874 | let | 
| 24684 | 875 | fun prep_bind (raw_pats, t) ctxt1 = | 
| 876 | let | |
| 877 | val T = Term.fastype_of t; | |
| 878 | val ctxt2 = Variable.declare_term t ctxt1; | |
| 879 | val pats = prep_terms (set_mode mode_pattern ctxt2) T raw_pats; | |
| 880 | val binds = simult_matches ctxt2 (t, pats); | |
| 881 | in (binds, ctxt2) end; | |
| 7670 | 882 | |
| 24686 | 883 | val ts = prep_terms ctxt dummyT (map snd raw_binds); | 
| 884 | val (binds, ctxt') = apfst flat (fold_map prep_bind (map fst raw_binds ~~ ts) ctxt); | |
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 885 | val binds' = | 
| 19916 
3bbb9cc5d4f1
export: simultaneous facts, refer to Variable.export;
 wenzelm parents: 
19897diff
changeset | 886 | if gen then map #1 binds ~~ Variable.exportT_terms ctxt' ctxt (map #2 binds) | 
| 8616 
90d2fed59be1
support Hindley-Milner polymorphisms in binds and facts;
 wenzelm parents: 
8462diff
changeset | 887 | else binds; | 
| 18310 | 888 | val ctxt'' = | 
| 19897 
fe661eb3b0e7
ProofContext: moved variable operations to struct Variable;
 wenzelm parents: 
19882diff
changeset | 889 | tap (Variable.warn_extra_tfrees ctxt) | 
| 18310 | 890 | (if gen then | 
| 60408 
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
 wenzelm parents: 
60407diff
changeset | 891 | ctxt (*sic!*) | 
| 
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
 wenzelm parents: 
60407diff
changeset | 892 | |> fold Variable.declare_term (map #2 binds') | 
| 
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
 wenzelm parents: 
60407diff
changeset | 893 | |> fold cert_bind_term binds' | 
| 
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
 wenzelm parents: 
60407diff
changeset | 894 | else ctxt' |> fold cert_bind_term binds'); | 
| 18310 | 895 | in (ts, ctxt'') end; | 
| 8096 | 896 | |
| 897 | in | |
| 5935 | 898 | |
| 24684 | 899 | fun read_terms ctxt T = | 
| 39288 | 900 | map (Syntax.parse_term ctxt #> Type.constraint T) #> Syntax.check_terms ctxt; | 
| 24684 | 901 | |
| 60377 | 902 | val match_bind = gen_bind (fn ctxt => fn _ => map (cert_term ctxt)); | 
| 903 | val match_bind_cmd = gen_bind read_terms; | |
| 8096 | 904 | |
| 905 | end; | |
| 5935 | 906 | |
| 907 | ||
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 908 | (* propositions with patterns *) | 
| 5935 | 909 | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 910 | local | 
| 8096 | 911 | |
| 60388 | 912 | fun prep_propp prep_props ctxt raw_args = | 
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 913 | let | 
| 60386 | 914 | val props = prep_props ctxt (maps (map fst) raw_args); | 
| 60388 | 915 | val props_ctxt = fold Variable.declare_term props ctxt; | 
| 916 | val patss = maps (map (prep_props (set_mode mode_pattern props_ctxt) o snd)) raw_args; | |
| 5935 | 917 | |
| 60387 
76359ff1090f
more careful treatment of term bindings in 'obtain' proof body;
 wenzelm parents: 
60386diff
changeset | 918 | val propps = unflat raw_args (props ~~ patss); | 
| 60388 | 919 | val binds = (maps o maps) (simult_matches props_ctxt) propps; | 
| 920 | in (map (map fst) propps, binds) end; | |
| 8096 | 921 | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 922 | in | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 923 | |
| 60388 | 924 | val cert_propp = prep_propp (map o cert_prop); | 
| 925 | val read_propp = prep_propp Syntax.read_props; | |
| 6789 | 926 | |
| 10465 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 927 | end; | 
| 
4aa6f8b5cdc4
added read_terms, read_props (simulataneous type-inference);
 wenzelm parents: 
10381diff
changeset | 928 | |
| 6789 | 929 | |
| 5819 | 930 | |
| 931 | (** theorems **) | |
| 932 | ||
| 18042 | 933 | (* fact_tac *) | 
| 934 | ||
| 52223 
5bb6ae8acb87
tuned signature -- more explicit flags for low-level Thm.bicompose;
 wenzelm parents: 
52156diff
changeset | 935 | local | 
| 
5bb6ae8acb87
tuned signature -- more explicit flags for low-level Thm.bicompose;
 wenzelm parents: 
52156diff
changeset | 936 | |
| 58950 
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
 wenzelm parents: 
58668diff
changeset | 937 | fun comp_hhf_tac ctxt th i st = | 
| 
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
 wenzelm parents: 
58668diff
changeset | 938 |   PRIMSEQ (Thm.bicompose (SOME ctxt) {flatten = true, match = false, incremented = true}
 | 
| 60367 | 939 | (false, Drule.lift_all ctxt (Thm.cprem_of st i) th, 0) i) st; | 
| 52223 
5bb6ae8acb87
tuned signature -- more explicit flags for low-level Thm.bicompose;
 wenzelm parents: 
52156diff
changeset | 940 | |
| 58950 
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
 wenzelm parents: 
58668diff
changeset | 941 | fun comp_incr_tac _ [] _ = no_tac | 
| 
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
 wenzelm parents: 
58668diff
changeset | 942 | | comp_incr_tac ctxt (th :: ths) i = | 
| 
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
 wenzelm parents: 
58668diff
changeset | 943 | (fn st => comp_hhf_tac ctxt (Drule.incr_indexes st th) i st) APPEND | 
| 
d07464875dd4
optional proof context for unify operations, for the sake of proper local options;
 wenzelm parents: 
58668diff
changeset | 944 | comp_incr_tac ctxt ths i; | 
| 52223 
5bb6ae8acb87
tuned signature -- more explicit flags for low-level Thm.bicompose;
 wenzelm parents: 
52156diff
changeset | 945 | |
| 60489 | 946 | val vacuous_facts = [Drule.termI]; | 
| 947 | ||
| 52223 
5bb6ae8acb87
tuned signature -- more explicit flags for low-level Thm.bicompose;
 wenzelm parents: 
52156diff
changeset | 948 | in | 
| 18042 | 949 | |
| 27867 | 950 | fun potential_facts ctxt prop = | 
| 60489 | 951 | let | 
| 952 | val body = Term.strip_all_body prop; | |
| 63337 | 953 | val vacuous = | 
| 954 | filter (fn th => Term.could_unify (body, Thm.concl_of th)) vacuous_facts | |
| 955 | |> map (rpair Position.none); | |
| 60489 | 956 | in Facts.could_unify (facts_of ctxt) body @ vacuous end; | 
| 27867 | 957 | |
| 63337 | 958 | fun fact_tac ctxt facts = Goal.norm_hhf_tac ctxt THEN' comp_incr_tac ctxt facts; | 
| 959 | ||
| 960 | fun some_fact_tac ctxt = | |
| 961 | SUBGOAL (fn (goal, i) => fact_tac ctxt (map #1 (potential_facts ctxt goal)) i); | |
| 18042 | 962 | |
| 52223 
5bb6ae8acb87
tuned signature -- more explicit flags for low-level Thm.bicompose;
 wenzelm parents: 
52156diff
changeset | 963 | end; | 
| 
5bb6ae8acb87
tuned signature -- more explicit flags for low-level Thm.bicompose;
 wenzelm parents: 
52156diff
changeset | 964 | |
| 18042 | 965 | |
| 62078 
76399b8fde4d
more systematic treatment of dynamic facts, when forming closure;
 wenzelm parents: 
61902diff
changeset | 966 | (* lookup facts *) | 
| 5819 | 967 | |
| 61902 | 968 | fun lookup_fact ctxt name = | 
| 969 | let | |
| 970 | val context = Context.Proof ctxt; | |
| 971 | val thy = Proof_Context.theory_of ctxt; | |
| 972 | in | |
| 973 | (case Facts.lookup context (facts_of ctxt) name of | |
| 974 | NONE => Facts.lookup context (Global_Theory.facts_of thy) name | |
| 975 | | some => some) | |
| 976 | end; | |
| 977 | ||
| 62078 
76399b8fde4d
more systematic treatment of dynamic facts, when forming closure;
 wenzelm parents: 
61902diff
changeset | 978 | |
| 
76399b8fde4d
more systematic treatment of dynamic facts, when forming closure;
 wenzelm parents: 
61902diff
changeset | 979 | (* retrieve facts *) | 
| 
76399b8fde4d
more systematic treatment of dynamic facts, when forming closure;
 wenzelm parents: 
61902diff
changeset | 980 | |
| 
76399b8fde4d
more systematic treatment of dynamic facts, when forming closure;
 wenzelm parents: 
61902diff
changeset | 981 | val dynamic_facts_dummy = | 
| 64556 | 982 |   Config.bool (Config.declare ("dynamic_facts_dummy_", \<^here>) (fn _ => Config.Bool false));
 | 
| 62078 
76399b8fde4d
more systematic treatment of dynamic facts, when forming closure;
 wenzelm parents: 
61902diff
changeset | 983 | |
| 26361 | 984 | local | 
| 985 | ||
| 56141 
c06202417c4a
back to a form of hybrid facts, to reduce performance impact of ed92ce2ac88e;
 wenzelm parents: 
56140diff
changeset | 986 | fun retrieve_global context = | 
| 
c06202417c4a
back to a form of hybrid facts, to reduce performance impact of ed92ce2ac88e;
 wenzelm parents: 
56140diff
changeset | 987 | Facts.retrieve context (Global_Theory.facts_of (Context.theory_of context)); | 
| 
c06202417c4a
back to a form of hybrid facts, to reduce performance impact of ed92ce2ac88e;
 wenzelm parents: 
56140diff
changeset | 988 | |
| 56156 
47015872e795
clarified retrieve_generic: local error takes precedence, which is relevant for completion;
 wenzelm parents: 
56155diff
changeset | 989 | fun retrieve_generic (context as Context.Proof ctxt) arg = | 
| 
47015872e795
clarified retrieve_generic: local error takes precedence, which is relevant for completion;
 wenzelm parents: 
56155diff
changeset | 990 | (Facts.retrieve context (facts_of ctxt) arg handle ERROR local_msg => | 
| 
47015872e795
clarified retrieve_generic: local error takes precedence, which is relevant for completion;
 wenzelm parents: 
56155diff
changeset | 991 | (retrieve_global context arg handle ERROR _ => error local_msg)) | 
| 56141 
c06202417c4a
back to a form of hybrid facts, to reduce performance impact of ed92ce2ac88e;
 wenzelm parents: 
56140diff
changeset | 992 | | retrieve_generic context arg = retrieve_global context arg; | 
| 
c06202417c4a
back to a form of hybrid facts, to reduce performance impact of ed92ce2ac88e;
 wenzelm parents: 
56140diff
changeset | 993 | |
| 
c06202417c4a
back to a form of hybrid facts, to reduce performance impact of ed92ce2ac88e;
 wenzelm parents: 
56140diff
changeset | 994 | fun retrieve pick context (Facts.Fact s) = | 
| 16501 | 995 | let | 
| 56140 
ed92ce2ac88e
just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
 wenzelm parents: 
56139diff
changeset | 996 | val ctxt = Context.the_proof context; | 
| 59795 | 997 | val pos = Syntax.read_input_pos s; | 
| 42502 | 998 | val prop = | 
| 999 | Syntax.read_prop (ctxt |> set_mode mode_default |> allow_dummies) s | |
| 24511 
69d270cc7e4f
removed obsolete read/cert variations (cf. Syntax.read/check);
 wenzelm parents: 
24505diff
changeset | 1000 | |> singleton (Variable.polymorphic ctxt); | 
| 63337 | 1001 | fun err ps msg = | 
| 1002 | error (msg ^ Position.here_list (pos :: ps) ^ ":\n" ^ Syntax.string_of_term ctxt prop); | |
| 27867 | 1003 | |
| 42502 | 1004 | val (prop', _) = Term.replace_dummy_patterns prop (Variable.maxidx_of ctxt + 1); | 
| 63337 | 1005 | fun prove th = Goal.prove ctxt [] [] prop' (K (ALLGOALS (fact_tac ctxt [th]))); | 
| 1006 | val results = map_filter (try (apfst prove)) (potential_facts ctxt prop'); | |
| 1007 | val (thm, thm_pos) = | |
| 1008 | (case distinct (eq_fst Thm.eq_thm_prop) results of | |
| 1009 | [res] => res | |
| 1010 | | [] => err [] "Failed to retrieve literal fact" | |
| 1011 | | dups => err (distinct (op =) (map #2 dups)) "Ambiguous specification of literal fact"); | |
| 1012 | ||
| 1013 | val markup = | |
| 63542 | 1014 | Markup.entity Markup.literal_factN "" | 
| 63337 | 1015 | |> Markup.properties (Position.def_properties_of thm_pos); | 
| 1016 | val _ = Context_Position.report_generic context pos markup; | |
| 1017 |       in pick true ("", thm_pos) [thm] end
 | |
| 57942 
e5bec882fdd0
more informative Token.Fact: retain name of dynamic fact (without selection);
 wenzelm parents: 
57928diff
changeset | 1018 | | retrieve pick context (Facts.Named ((xname, pos), sel)) = | 
| 18042 | 1019 | let | 
| 56140 
ed92ce2ac88e
just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
 wenzelm parents: 
56139diff
changeset | 1020 | val thy = Context.theory_of context; | 
| 63609 | 1021 |         fun immediate thms = {name = xname, dynamic = false, thms = map (Thm.transfer thy) thms};
 | 
| 63255 | 1022 |         val {name, dynamic, thms} =
 | 
| 56140 
ed92ce2ac88e
just one cumulative Proof_Context.facts, with uniform retrieval (including PIDE markup, completion etc.);
 wenzelm parents: 
56139diff
changeset | 1023 | (case xname of | 
| 63609 | 1024 | "" => immediate [Drule.dummy_thm] | 
| 1025 | | "_" => immediate [Drule.asm_rl] | |
| 1026 | | "nothing" => immediate [] | |
| 56141 
c06202417c4a
back to a form of hybrid facts, to reduce performance impact of ed92ce2ac88e;
 wenzelm parents: 
56140diff
changeset | 1027 | | _ => retrieve_generic context (xname, pos)); | 
| 62078 
76399b8fde4d
more systematic treatment of dynamic facts, when forming closure;
 wenzelm parents: 
61902diff
changeset | 1028 | val thms' = | 
| 63255 | 1029 | if dynamic andalso Config.get_generic context dynamic_facts_dummy | 
| 62078 
76399b8fde4d
more systematic treatment of dynamic facts, when forming closure;
 wenzelm parents: 
61902diff
changeset | 1030 | then [Drule.free_dummy_thm] | 
| 
76399b8fde4d
more systematic treatment of dynamic facts, when forming closure;
 wenzelm parents: 
61902diff
changeset | 1031 | else Facts.select (Facts.Named ((name, pos), sel)) thms; | 
| 63255 | 1032 | in pick (dynamic andalso is_none sel) (name, pos) thms' end; | 
| 5819 | 1033 | |
| 26361 | 1034 | in | 
| 26346 
17debd2fff8e
simplified get_thm(s): back to plain name argument;
 wenzelm parents: 
26336diff
changeset | 1035 | |
| 57942 
e5bec882fdd0
more informative Token.Fact: retain name of dynamic fact (without selection);
 wenzelm parents: 
57928diff
changeset | 1036 | val get_fact_generic = | 
| 63255 | 1037 | retrieve (fn dynamic => fn (name, _) => fn thms => | 
| 1038 | (if dynamic then SOME name else NONE, thms)); | |
| 57942 
e5bec882fdd0
more informative Token.Fact: retain name of dynamic fact (without selection);
 wenzelm parents: 
57928diff
changeset | 1039 | |
| 
e5bec882fdd0
more informative Token.Fact: retain name of dynamic fact (without selection);
 wenzelm parents: 
57928diff
changeset | 1040 | val get_fact = retrieve (K (K I)) o Context.Proof; | 
| 
e5bec882fdd0
more informative Token.Fact: retain name of dynamic fact (without selection);
 wenzelm parents: 
57928diff
changeset | 1041 | val get_fact_single = retrieve (K Facts.the_single) o Context.Proof; | 
| 26346 
17debd2fff8e
simplified get_thm(s): back to plain name argument;
 wenzelm parents: 
26336diff
changeset | 1042 | |
| 26361 | 1043 | fun get_thms ctxt = get_fact ctxt o Facts.named; | 
| 1044 | fun get_thm ctxt = get_fact_single ctxt o Facts.named; | |
| 1045 | ||
| 1046 | end; | |
| 5819 | 1047 | |
| 1048 | ||
| 63083 | 1049 | (* inner statement mode *) | 
| 1050 | ||
| 1051 | val inner_stmt = | |
| 64556 | 1052 |   Config.bool (Config.declare ("inner_stmt", \<^here>) (K (Config.Bool false)));
 | 
| 63083 | 1053 | |
| 1054 | fun is_stmt ctxt = Config.get ctxt inner_stmt; | |
| 1055 | val set_stmt = Config.put inner_stmt; | |
| 1056 | val restore_stmt = set_stmt o is_stmt; | |
| 1057 | ||
| 1058 | ||
| 26284 | 1059 | (* facts *) | 
| 5819 | 1060 | |
| 61811 
1530a0f19539
added Proof_Context.add_thms_dynamic, which is potentially useful for Eisbach;
 wenzelm parents: 
61268diff
changeset | 1061 | fun add_thms_dynamic arg ctxt = | 
| 
1530a0f19539
added Proof_Context.add_thms_dynamic, which is potentially useful for Eisbach;
 wenzelm parents: 
61268diff
changeset | 1062 | ctxt |> map_facts_result (Facts.add_dynamic (Context.Proof ctxt) arg); | 
| 
1530a0f19539
added Proof_Context.add_thms_dynamic, which is potentially useful for Eisbach;
 wenzelm parents: 
61268diff
changeset | 1063 | |
| 28082 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 1064 | local | 
| 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 1065 | |
| 28965 | 1066 | fun update_thms _ (b, NONE) ctxt = ctxt |> map_facts (Facts.del (full_name ctxt b)) | 
| 49747 | 1067 | | update_thms flags (b, SOME ths) ctxt = ctxt |> map_facts | 
| 1068 | (Facts.add_static (Context.Proof ctxt) flags (b, ths) #> snd); | |
| 5819 | 1069 | |
| 30761 
ac7570d80c3d
renamed ProofContext.note_thmss_i to ProofContext.note_thmss, eliminated obsolete external version;
 wenzelm parents: 
30758diff
changeset | 1070 | in | 
| 
ac7570d80c3d
renamed ProofContext.note_thmss_i to ProofContext.note_thmss, eliminated obsolete external version;
 wenzelm parents: 
30758diff
changeset | 1071 | |
| 46775 
6287653e63ec
canonical argument order for attribute application;
 wenzelm parents: 
45666diff
changeset | 1072 | fun note_thmss kind = fold_map (fn ((b, more_atts), raw_facts) => fn ctxt => | 
| 5819 | 1073 | let | 
| 28965 | 1074 | val name = full_name ctxt b; | 
| 39557 
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
 wenzelm parents: 
39508diff
changeset | 1075 | val facts = Global_Theory.name_thmss false name raw_facts; | 
| 46775 
6287653e63ec
canonical argument order for attribute application;
 wenzelm parents: 
45666diff
changeset | 1076 | fun app (ths, atts) = | 
| 
6287653e63ec
canonical argument order for attribute application;
 wenzelm parents: 
45666diff
changeset | 1077 | fold_map (Thm.proof_attributes (surround (Thm.kind kind) (atts @ more_atts))) ths; | 
| 21443 
cc5095d57da4
added stmt mode, which affects naming/indexing of local facts;
 wenzelm parents: 
21370diff
changeset | 1078 | val (res, ctxt') = fold_map app facts ctxt; | 
| 39557 
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
 wenzelm parents: 
39508diff
changeset | 1079 | val thms = Global_Theory.name_thms false false name (flat res); | 
| 63083 | 1080 | val index = is_stmt ctxt; | 
| 1081 |   in ((name, thms), ctxt' |> update_thms {strict = false, index = index} (b, SOME thms)) end);
 | |
| 12711 | 1082 | |
| 49747 | 1083 | fun put_thms index thms ctxt = ctxt | 
| 47005 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 1084 | |> map_naming (K Name_Space.local_naming) | 
| 33383 | 1085 | |> Context_Position.set_visible false | 
| 49747 | 1086 |   |> update_thms {strict = false, index = index} (apfst Binding.name thms)
 | 
| 33383 | 1087 | |> Context_Position.restore_visible ctxt | 
| 28417 | 1088 | |> restore_naming ctxt; | 
| 28082 
37350f301128
explicit type Name.binding for higher-specification elements;
 wenzelm parents: 
28017diff
changeset | 1089 | |
| 12711 | 1090 | end; | 
| 9196 | 1091 | |
| 5819 | 1092 | |
| 1093 | ||
| 35680 | 1094 | (** basic logical entities **) | 
| 17360 
fa1f262dbc4e
added add_view, export_view (supercedes adhoc view arguments);
 wenzelm parents: 
17221diff
changeset | 1095 | |
| 8096 | 1096 | (* variables *) | 
| 1097 | ||
| 19897 
fe661eb3b0e7
ProofContext: moved variable operations to struct Variable;
 wenzelm parents: 
19882diff
changeset | 1098 | fun declare_var (x, opt_T, mx) ctxt = | 
| 62959 
19c2a58623ed
back to static Mixfix.default_constraint without any special tricks (reverting e6443edaebff);
 wenzelm parents: 
62958diff
changeset | 1099 | let val T = (case opt_T of SOME T => T | NONE => Mixfix.default_constraint mx) | 
| 62768 | 1100 | in (T, ctxt |> Variable.declare_constraints (Free (x, T))) end; | 
| 19897 
fe661eb3b0e7
ProofContext: moved variable operations to struct Variable;
 wenzelm parents: 
19882diff
changeset | 1101 | |
| 62767 
d6b0d35b3aed
relevant check_mixfix happens further at the bottom, to avoid duplicate reports via Specification.prepare;
 wenzelm parents: 
62078diff
changeset | 1102 | fun add_syntax vars ctxt = | 
| 
d6b0d35b3aed
relevant check_mixfix happens further at the bottom, to avoid duplicate reports via Specification.prepare;
 wenzelm parents: 
62078diff
changeset | 1103 | map_syntax_idents (Local_Syntax.add_syntax ctxt (map (pair Local_Syntax.Fixed) vars)) ctxt; | 
| 
d6b0d35b3aed
relevant check_mixfix happens further at the bottom, to avoid duplicate reports via Specification.prepare;
 wenzelm parents: 
62078diff
changeset | 1104 | |
| 57486 
2131b6633529
check 'case' variable bindings as for 'fix', which means internal names are rejected as usual;
 wenzelm parents: 
57415diff
changeset | 1105 | fun check_var internal b = | 
| 
2131b6633529
check 'case' variable bindings as for 'fix', which means internal names are rejected as usual;
 wenzelm parents: 
57415diff
changeset | 1106 | let | 
| 
2131b6633529
check 'case' variable bindings as for 'fix', which means internal names are rejected as usual;
 wenzelm parents: 
57415diff
changeset | 1107 | val x = Variable.check_name b; | 
| 
2131b6633529
check 'case' variable bindings as for 'fix', which means internal names are rejected as usual;
 wenzelm parents: 
57415diff
changeset | 1108 | val check = if internal then Name.reject_skolem else Name.reject_internal; | 
| 
2131b6633529
check 'case' variable bindings as for 'fix', which means internal names are rejected as usual;
 wenzelm parents: 
57415diff
changeset | 1109 | val _ = | 
| 
2131b6633529
check 'case' variable bindings as for 'fix', which means internal names are rejected as usual;
 wenzelm parents: 
57415diff
changeset | 1110 | if can check (x, []) andalso Symbol_Pos.is_identifier x then () | 
| 
2131b6633529
check 'case' variable bindings as for 'fix', which means internal names are rejected as usual;
 wenzelm parents: 
57415diff
changeset | 1111 |       else error ("Bad name: " ^ Binding.print b);
 | 
| 
2131b6633529
check 'case' variable bindings as for 'fix', which means internal names are rejected as usual;
 wenzelm parents: 
57415diff
changeset | 1112 | in x end; | 
| 
2131b6633529
check 'case' variable bindings as for 'fix', which means internal names are rejected as usual;
 wenzelm parents: 
57415diff
changeset | 1113 | |
| 10381 | 1114 | local | 
| 1115 | ||
| 62768 | 1116 | fun check_mixfix ctxt (b, T, mx) = | 
| 62767 
d6b0d35b3aed
relevant check_mixfix happens further at the bottom, to avoid duplicate reports via Specification.prepare;
 wenzelm parents: 
62078diff
changeset | 1117 | let | 
| 
d6b0d35b3aed
relevant check_mixfix happens further at the bottom, to avoid duplicate reports via Specification.prepare;
 wenzelm parents: 
62078diff
changeset | 1118 | val ([x], ctxt') = Variable.add_fixes_binding [Binding.reset_pos b] ctxt; | 
| 
d6b0d35b3aed
relevant check_mixfix happens further at the bottom, to avoid duplicate reports via Specification.prepare;
 wenzelm parents: 
62078diff
changeset | 1119 | val mx' = Mixfix.reset_pos mx; | 
| 
d6b0d35b3aed
relevant check_mixfix happens further at the bottom, to avoid duplicate reports via Specification.prepare;
 wenzelm parents: 
62078diff
changeset | 1120 | val _ = add_syntax [(x, T, if Context_Position.is_visible ctxt then mx else mx')] ctxt'; | 
| 
d6b0d35b3aed
relevant check_mixfix happens further at the bottom, to avoid duplicate reports via Specification.prepare;
 wenzelm parents: 
62078diff
changeset | 1121 | in mx' end; | 
| 
d6b0d35b3aed
relevant check_mixfix happens further at the bottom, to avoid duplicate reports via Specification.prepare;
 wenzelm parents: 
62078diff
changeset | 1122 | |
| 60379 | 1123 | fun prep_var prep_typ internal (b, raw_T, mx) ctxt = | 
| 1124 | let | |
| 1125 | val x = check_var internal b; | |
| 1126 | fun cond_tvars T = | |
| 1127 | if internal then T | |
| 1128 | else Type.no_tvars T handle TYPE (msg, _, _) => error msg; | |
| 60468 | 1129 | val opt_T = Option.map (cond_tvars o prep_typ ctxt) raw_T; | 
| 62768 | 1130 | val (T, ctxt') = ctxt |> declare_var (x, opt_T, mx); | 
| 1131 | val mx' = if Mixfix.is_empty mx then mx else check_mixfix ctxt' (b, T, mx); | |
| 1132 | in ((b, SOME T, mx'), ctxt') end; | |
| 8096 | 1133 | |
| 10381 | 1134 | in | 
| 1135 | ||
| 60379 | 1136 | val read_var = prep_var Syntax.read_typ false; | 
| 60468 | 1137 | val cert_var = prep_var cert_typ true; | 
| 8096 | 1138 | |
| 10381 | 1139 | end; | 
| 1140 | ||
| 8096 | 1141 | |
| 21744 | 1142 | (* notation *) | 
| 1143 | ||
| 24949 | 1144 | local | 
| 1145 | ||
| 35429 
afa8cf9e63d8
authentic syntax for classes and type constructors;
 wenzelm parents: 
35412diff
changeset | 1146 | fun type_syntax (Type (c, args), mx) = | 
| 42290 
b1f544c84040
discontinued special treatment of structure Lexicon;
 wenzelm parents: 
42287diff
changeset | 1147 | SOME (Local_Syntax.Type, (Lexicon.mark_type c, Mixfix.make_type (length args), mx)) | 
| 35412 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 wenzelm parents: 
35399diff
changeset | 1148 | | type_syntax _ = NONE; | 
| 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 wenzelm parents: 
35399diff
changeset | 1149 | |
| 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 wenzelm parents: 
35399diff
changeset | 1150 | fun const_syntax _ (Free (x, T), mx) = SOME (Local_Syntax.Fixed, (x, T, mx)) | 
| 24949 | 1151 | | const_syntax ctxt (Const (c, _), mx) = | 
| 35255 | 1152 | (case try (Consts.type_scheme (consts_of ctxt)) c of | 
| 42290 
b1f544c84040
discontinued special treatment of structure Lexicon;
 wenzelm parents: 
42287diff
changeset | 1153 | SOME T => SOME (Local_Syntax.Const, (Lexicon.mark_const c, T, mx)) | 
| 35255 | 1154 | | NONE => NONE) | 
| 24949 | 1155 | | const_syntax _ _ = NONE; | 
| 1156 | ||
| 35412 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 wenzelm parents: 
35399diff
changeset | 1157 | fun gen_notation syntax add mode args ctxt = | 
| 59152 
66e6c539a36d
more frugal Local_Syntax.init -- maintain idents within context;
 wenzelm parents: 
59066diff
changeset | 1158 | ctxt |> map_syntax_idents | 
| 
66e6c539a36d
more frugal Local_Syntax.init -- maintain idents within context;
 wenzelm parents: 
59066diff
changeset | 1159 | (Local_Syntax.update_modesyntax ctxt add mode (map_filter (syntax ctxt) args)); | 
| 35412 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 wenzelm parents: 
35399diff
changeset | 1160 | |
| 24949 | 1161 | in | 
| 21744 | 1162 | |
| 35412 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 wenzelm parents: 
35399diff
changeset | 1163 | val type_notation = gen_notation (K type_syntax); | 
| 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 wenzelm parents: 
35399diff
changeset | 1164 | val notation = gen_notation const_syntax; | 
| 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 wenzelm parents: 
35399diff
changeset | 1165 | |
| 47247 | 1166 | fun generic_type_notation add mode args phi = | 
| 35412 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 wenzelm parents: 
35399diff
changeset | 1167 | let | 
| 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 wenzelm parents: 
35399diff
changeset | 1168 | val args' = args |> map_filter (fn (T, mx) => | 
| 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 wenzelm parents: 
35399diff
changeset | 1169 | let | 
| 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 wenzelm parents: 
35399diff
changeset | 1170 | val T' = Morphism.typ phi T; | 
| 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 wenzelm parents: 
35399diff
changeset | 1171 | val similar = (case (T, T') of (Type (c, _), Type (c', _)) => c = c' | _ => false); | 
| 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 wenzelm parents: 
35399diff
changeset | 1172 | in if similar then SOME (T', mx) else NONE end); | 
| 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 wenzelm parents: 
35399diff
changeset | 1173 | in Context.mapping (Sign.type_notation add mode args') (type_notation add mode args') end; | 
| 24949 | 1174 | |
| 47247 | 1175 | fun generic_notation add mode args phi = | 
| 33537 
06c87d2c5b5a
locale_const/target_notation: uniform use of Term.aconv_untyped;
 wenzelm parents: 
33519diff
changeset | 1176 | let | 
| 
06c87d2c5b5a
locale_const/target_notation: uniform use of Term.aconv_untyped;
 wenzelm parents: 
33519diff
changeset | 1177 | val args' = args |> map_filter (fn (t, mx) => | 
| 
06c87d2c5b5a
locale_const/target_notation: uniform use of Term.aconv_untyped;
 wenzelm parents: 
33519diff
changeset | 1178 | let val t' = Morphism.term phi t | 
| 
06c87d2c5b5a
locale_const/target_notation: uniform use of Term.aconv_untyped;
 wenzelm parents: 
33519diff
changeset | 1179 | in if Term.aconv_untyped (t, t') then SOME (t', mx) else NONE end); | 
| 24949 | 1180 | in Context.mapping (Sign.notation add mode args') (notation add mode args') end; | 
| 1181 | ||
| 35680 | 1182 | end; | 
| 35412 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 wenzelm parents: 
35399diff
changeset | 1183 | |
| 35680 | 1184 | |
| 1185 | (* aliases *) | |
| 1186 | ||
| 36450 | 1187 | fun class_alias b c ctxt = (map_tsig o apfst) (Type.class_alias (naming_of ctxt) b c) ctxt; | 
| 1188 | fun type_alias b c ctxt = (map_tsig o apfst) (Type.type_alias (naming_of ctxt) b c) ctxt; | |
| 35680 | 1189 | fun const_alias b c ctxt = (map_consts o apfst) (Consts.alias (naming_of ctxt) b c) ctxt; | 
| 57887 | 1190 | fun fact_alias b c ctxt = map_facts (Facts.alias (naming_of ctxt) b c) ctxt; | 
| 21744 | 1191 | |
| 1192 | ||
| 24767 | 1193 | (* local constants *) | 
| 1194 | ||
| 1195 | fun add_const_constraint (c, opt_T) ctxt = | |
| 1196 | let | |
| 1197 | fun prepT raw_T = | |
| 1198 | let val T = cert_typ ctxt raw_T | |
| 1199 | in cert_term ctxt (Const (c, T)); T end; | |
| 25039 | 1200 | in ctxt |> (map_consts o apfst) (Consts.constrain (c, Option.map prepT opt_T)) end; | 
| 19001 | 1201 | |
| 33173 
b8ca12f6681a
eliminated obsolete tags for types/consts -- now handled via name space, in strongly typed fashion;
 wenzelm parents: 
33165diff
changeset | 1202 | fun add_abbrev mode (b, raw_t) ctxt = | 
| 19001 | 1203 | let | 
| 24675 
2be1253a20d3
removed obsolete set_expand_abbrevs (superceded by mode_abbrev);
 wenzelm parents: 
24612diff
changeset | 1204 | val t0 = cert_term (ctxt |> set_mode mode_abbrev) raw_t | 
| 42381 
309ec68442c6
added Binding.print convenience, which includes quote already;
 wenzelm parents: 
42379diff
changeset | 1205 |       handle ERROR msg => cat_error msg ("in constant abbreviation " ^ Binding.print b);
 | 
| 20008 
8d9d770e1f06
add_abbrevs/polymorphic: Variable.exportT_terms avoids over-generalization;
 wenzelm parents: 
19916diff
changeset | 1206 | val [t] = Variable.exportT_terms (Variable.declare_term t0 ctxt) ctxt [t0]; | 
| 21807 
a59f083632a7
add_abbrev: removed Assumption.add_assms (danger of inconsistent naming);
 wenzelm parents: 
21803diff
changeset | 1207 | val ((lhs, rhs), consts') = consts_of ctxt | 
| 47005 
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
 wenzelm parents: 
47001diff
changeset | 1208 | |> Consts.abbreviate (Context.Proof ctxt) (tsig_of ctxt) mode (b, t); | 
| 19001 | 1209 | in | 
| 1210 | ctxt | |
| 25039 | 1211 | |> (map_consts o apfst) (K consts') | 
| 21803 | 1212 | |> Variable.declare_term rhs | 
| 1213 | |> pair (lhs, rhs) | |
| 21704 | 1214 | end; | 
| 19001 | 1215 | |
| 25052 | 1216 | fun revert_abbrev mode c = (map_consts o apfst) (Consts.revert_abbrev mode c); | 
| 1217 | ||
| 47275 | 1218 | fun generic_add_abbrev mode arg = | 
| 1219 | Context.mapping_result (Sign.add_abbrev mode arg) (add_abbrev mode arg); | |
| 1220 | ||
| 1221 | fun generic_revert_abbrev mode arg = | |
| 1222 | Context.mapping (Sign.revert_abbrev mode arg) (revert_abbrev mode arg); | |
| 1223 | ||
| 19001 | 1224 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1225 | (* fixes *) | 
| 5819 | 1226 | |
| 60469 | 1227 | local | 
| 1228 | ||
| 1229 | fun gen_fixes prep_var raw_vars ctxt = | |
| 1230 | let | |
| 1231 | val (vars, _) = fold_map prep_var raw_vars ctxt; | |
| 1232 | val (xs, ctxt') = Variable.add_fixes_binding (map #1 vars) ctxt; | |
| 62987 
dc8a8a7559e7
highlighting of entity def/ref positions wrt. cursor;
 wenzelm parents: 
62959diff
changeset | 1233 | val _ = | 
| 
dc8a8a7559e7
highlighting of entity def/ref positions wrt. cursor;
 wenzelm parents: 
62959diff
changeset | 1234 | Context_Position.reports ctxt' | 
| 
dc8a8a7559e7
highlighting of entity def/ref positions wrt. cursor;
 wenzelm parents: 
62959diff
changeset | 1235 | (flat (map2 (fn x => fn pos => | 
| 
dc8a8a7559e7
highlighting of entity def/ref positions wrt. cursor;
 wenzelm parents: 
62959diff
changeset | 1236 | [(pos, Variable.markup ctxt' x), (pos, Variable.markup_entity_def ctxt' x)]) | 
| 
dc8a8a7559e7
highlighting of entity def/ref positions wrt. cursor;
 wenzelm parents: 
62959diff
changeset | 1237 | xs (map (Binding.pos_of o #1) vars))); | 
| 62768 | 1238 | val vars' = map2 (fn x => fn (_, opt_T, mx) => (x, opt_T, mx)) xs vars; | 
| 1239 | val (Ts, ctxt'') = fold_map declare_var vars' ctxt'; | |
| 1240 | val vars'' = map2 (fn T => fn (x, _, mx) => (x, T, mx)) Ts vars'; | |
| 1241 | in (xs, add_syntax vars'' ctxt'') end; | |
| 5819 | 1242 | |
| 60469 | 1243 | in | 
| 1244 | ||
| 1245 | val add_fixes = gen_fixes cert_var; | |
| 1246 | val add_fixes_cmd = gen_fixes read_var; | |
| 1247 | ||
| 1248 | end; | |
| 1249 | ||
| 9291 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 1250 | |
| 
23705d14be8f
"_i" arguments now expected to have skolems already internalized;
 wenzelm parents: 
9274diff
changeset | 1251 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1252 | (** assumptions **) | 
| 18187 | 1253 | |
| 20209 | 1254 | local | 
| 1255 | ||
| 60388 | 1256 | fun gen_assms prep_propp exp args ctxt = | 
| 20209 | 1257 | let | 
| 60388 | 1258 | val (propss, binds) = prep_propp ctxt (map snd args); | 
| 1259 | val props = flat propss; | |
| 20234 
7e0693474bcd
added legacy_pretty_thm (with fall-back on ProtoPure.thy);
 wenzelm parents: 
20209diff
changeset | 1260 | in | 
| 60388 | 1261 | ctxt | 
| 1262 | |> fold Variable.declare_term props | |
| 1263 | |> tap (Variable.warn_extra_tfrees ctxt) | |
| 1264 | |> fold_burrow (Assumption.add_assms exp o map (Thm.cterm_of ctxt)) propss | |
| 1265 | |-> (fn premss => | |
| 1266 | auto_bind_facts props | |
| 60408 
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
 wenzelm parents: 
60407diff
changeset | 1267 | #> fold Variable.bind_term binds | 
| 60388 | 1268 | #> note_thmss "" (map fst args ~~ map (map (fn th => ([th], []))) premss)) | 
| 20234 
7e0693474bcd
added legacy_pretty_thm (with fall-back on ProtoPure.thy);
 wenzelm parents: 
20209diff
changeset | 1269 | end; | 
| 20209 | 1270 | |
| 1271 | in | |
| 1272 | ||
| 60388 | 1273 | val add_assms = gen_assms cert_propp; | 
| 1274 | val add_assms_cmd = gen_assms read_propp; | |
| 20209 | 1275 | |
| 1276 | end; | |
| 1277 | ||
| 1278 | ||
| 5819 | 1279 | |
| 8373 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 1280 | (** cases **) | 
| 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 1281 | |
| 63513 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1282 | fun dest_cases prev_ctxt ctxt = | 
| 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1283 | let | 
| 63515 | 1284 | val serial_of = #serial oo (Name_Space.the_entry o Name_Space.space_of_table); | 
| 63513 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1285 | val ignored = | 
| 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1286 | (case prev_ctxt of | 
| 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1287 | NONE => Inttab.empty | 
| 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1288 | | SOME ctxt0 => | 
| 63515 | 1289 | let val cases0 = cases_of ctxt0 in | 
| 1290 | Name_Space.fold_table (fn (a, _) => Inttab.insert_set (serial_of cases0 a)) | |
| 1291 | cases0 Inttab.empty | |
| 1292 | end); | |
| 1293 | val cases = cases_of ctxt; | |
| 63513 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1294 | in | 
| 63515 | 1295 | Name_Space.fold_table (fn (a, c) => | 
| 1296 | let val i = serial_of cases a | |
| 1297 | in not (Inttab.defined ignored i) ? cons (i, (a, c)) end) cases [] | |
| 63513 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1298 | |> sort (int_ord o apply2 #1) |> map #2 | 
| 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1299 | end; | 
| 53378 
07990ba8c0ea
cases: more position information and PIDE markup;
 wenzelm parents: 
52223diff
changeset | 1300 | |
| 16147 | 1301 | local | 
| 1302 | ||
| 60408 
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
 wenzelm parents: 
60407diff
changeset | 1303 | fun drop_schematic (b as (xi, SOME t)) = if Term.exists_subterm is_Var t then (xi, NONE) else b | 
| 
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
 wenzelm parents: 
60407diff
changeset | 1304 | | drop_schematic b = b; | 
| 
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
 wenzelm parents: 
60407diff
changeset | 1305 | |
| 63515 | 1306 | fun update_case _ _ ("", _) cases = cases
 | 
| 1307 | | update_case _ _ (name, NONE) cases = Name_Space.del_table name cases | |
| 1308 | | update_case context legacy (name, SOME c) cases = | |
| 53378 
07990ba8c0ea
cases: more position information and PIDE markup;
 wenzelm parents: 
52223diff
changeset | 1309 | let | 
| 60573 | 1310 | val binding = Binding.name name |> legacy ? Binding.concealed; | 
| 63515 | 1311 |         val (_, cases') = Name_Space.define context false (binding, (c, {legacy = legacy})) cases;
 | 
| 1312 | in cases' end; | |
| 18609 | 1313 | |
| 60573 | 1314 | fun update_cases' legacy args ctxt = | 
| 63515 | 1315 | let val context = Context.Proof ctxt |> Name_Space.map_naming (K Name_Space.global_naming); | 
| 1316 | in map_cases (fold (update_case context legacy) args) ctxt end; | |
| 60573 | 1317 | |
| 42501 
2b8c34f53388
eliminated slightly odd Proof_Context.bind_fixes;
 wenzelm parents: 
42496diff
changeset | 1318 | fun fix (b, T) ctxt = | 
| 
2b8c34f53388
eliminated slightly odd Proof_Context.bind_fixes;
 wenzelm parents: 
42496diff
changeset | 1319 | let val ([x], ctxt') = add_fixes [(b, SOME T, NoSyn)] ctxt | 
| 
2b8c34f53388
eliminated slightly odd Proof_Context.bind_fixes;
 wenzelm parents: 
42496diff
changeset | 1320 | in (Free (x, T), ctxt') end; | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1321 | |
| 16147 | 1322 | in | 
| 1323 | ||
| 60573 | 1324 | val update_cases = update_cases' false; | 
| 1325 | val update_cases_legacy = update_cases' true; | |
| 18609 | 1326 | |
| 1327 | fun case_result c ctxt = | |
| 1328 | let | |
| 33368 | 1329 |     val Rule_Cases.Case {fixes, ...} = c;
 | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1330 | val (ts, ctxt') = ctxt |> fold_map fix fixes; | 
| 33368 | 1331 |     val Rule_Cases.Case {assumes, binds, cases, ...} = Rule_Cases.apply ts c;
 | 
| 18609 | 1332 | in | 
| 1333 | ctxt' | |
| 60408 
1fd46ced2fa8
more uniform treatment of auto bindings vs. explicit user bindings;
 wenzelm parents: 
60407diff
changeset | 1334 | |> fold (cert_maybe_bind_term o drop_schematic) binds | 
| 60573 | 1335 | |> update_cases (map (apsnd SOME) cases) | 
| 18609 | 1336 | |> pair (assumes, (binds, cases)) | 
| 1337 | end; | |
| 1338 | ||
| 1339 | val apply_case = apfst fst oo case_result; | |
| 1340 | ||
| 60629 | 1341 | fun check_case ctxt internal (name, pos) param_specs = | 
| 53378 
07990ba8c0ea
cases: more position information and PIDE markup;
 wenzelm parents: 
52223diff
changeset | 1342 | let | 
| 63515 | 1343 |     val (_, (Rule_Cases.Case {fixes, assumes, binds, cases}, {legacy})) =
 | 
| 53378 
07990ba8c0ea
cases: more position information and PIDE markup;
 wenzelm parents: 
52223diff
changeset | 1344 | Name_Space.check (Context.Proof ctxt) (cases_of ctxt) (name, pos); | 
| 60581 | 1345 | val _ = | 
| 1346 | if legacy then | |
| 1347 |         legacy_feature ("Bad case " ^ quote name ^ Position.here pos ^
 | |
| 61168 | 1348 | " -- use proof method \"goal_cases\" instead") | 
| 60581 | 1349 | else (); | 
| 53378 
07990ba8c0ea
cases: more position information and PIDE markup;
 wenzelm parents: 
52223diff
changeset | 1350 | |
| 60629 | 1351 | val _ = List.app (fn NONE => () | SOME b => ignore (check_var internal b)) param_specs; | 
| 53378 
07990ba8c0ea
cases: more position information and PIDE markup;
 wenzelm parents: 
52223diff
changeset | 1352 | fun replace (opt_x :: xs) ((y, T) :: ys) = (the_default y opt_x, T) :: replace xs ys | 
| 
07990ba8c0ea
cases: more position information and PIDE markup;
 wenzelm parents: 
52223diff
changeset | 1353 | | replace [] ys = ys | 
| 
07990ba8c0ea
cases: more position information and PIDE markup;
 wenzelm parents: 
52223diff
changeset | 1354 | | replace (_ :: _) [] = | 
| 
07990ba8c0ea
cases: more position information and PIDE markup;
 wenzelm parents: 
52223diff
changeset | 1355 |           error ("Too many parameters for case " ^ quote name ^ Position.here pos);
 | 
| 60629 | 1356 | val fixes' = replace param_specs fixes; | 
| 53378 
07990ba8c0ea
cases: more position information and PIDE markup;
 wenzelm parents: 
52223diff
changeset | 1357 | val binds' = map drop_schematic binds; | 
| 
07990ba8c0ea
cases: more position information and PIDE markup;
 wenzelm parents: 
52223diff
changeset | 1358 | in | 
| 
07990ba8c0ea
cases: more position information and PIDE markup;
 wenzelm parents: 
52223diff
changeset | 1359 | if null (fold (Term.add_tvarsT o snd) fixes []) andalso | 
| 
07990ba8c0ea
cases: more position information and PIDE markup;
 wenzelm parents: 
52223diff
changeset | 1360 | null (fold (fold Term.add_vars o snd) assumes []) then | 
| 
07990ba8c0ea
cases: more position information and PIDE markup;
 wenzelm parents: 
52223diff
changeset | 1361 |         Rule_Cases.Case {fixes = fixes', assumes = assumes, binds = binds', cases = cases}
 | 
| 
07990ba8c0ea
cases: more position information and PIDE markup;
 wenzelm parents: 
52223diff
changeset | 1362 |     else error ("Illegal schematic variable(s) in case " ^ quote name ^ Position.here pos)
 | 
| 
07990ba8c0ea
cases: more position information and PIDE markup;
 wenzelm parents: 
52223diff
changeset | 1363 | end; | 
| 8373 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 1364 | |
| 16147 | 1365 | end; | 
| 8373 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 1366 | |
| 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 1367 | |
| 63057 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1368 | (* structured statements *) | 
| 63037 | 1369 | |
| 1370 | local | |
| 1371 | ||
| 63057 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1372 | fun export_binds ctxt' ctxt params binds = | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1373 | let | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1374 | val rhss = | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1375 | map (the_list o Option.map (Logic.close_term params) o snd) binds | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1376 | |> burrow (Variable.export_terms ctxt' ctxt) | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1377 | |> map (try the_single); | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1378 | in map fst binds ~~ rhss end; | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1379 | |
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1380 | fun prep_stmt prep_var prep_propp raw_vars raw_propps ctxt = | 
| 63037 | 1381 | let | 
| 63056 
9b95ae9ec671
defs are closed, which leads to proper auto_bind_facts;
 wenzelm parents: 
63037diff
changeset | 1382 | val (vars, vars_ctxt) = fold_map prep_var raw_vars ctxt; | 
| 63037 | 1383 | val xs = map (Variable.check_name o #1) vars; | 
| 63056 
9b95ae9ec671
defs are closed, which leads to proper auto_bind_facts;
 wenzelm parents: 
63037diff
changeset | 1384 | val (xs', fixes_ctxt) = add_fixes vars vars_ctxt; | 
| 63037 | 1385 | |
| 63056 
9b95ae9ec671
defs are closed, which leads to proper auto_bind_facts;
 wenzelm parents: 
63037diff
changeset | 1386 | val (propss, binds) = prep_propp fixes_ctxt raw_propps; | 
| 
9b95ae9ec671
defs are closed, which leads to proper auto_bind_facts;
 wenzelm parents: 
63037diff
changeset | 1387 | val (ps, params_ctxt) = fixes_ctxt | 
| 
9b95ae9ec671
defs are closed, which leads to proper auto_bind_facts;
 wenzelm parents: 
63037diff
changeset | 1388 | |> (fold o fold) Variable.declare_term propss | 
| 63037 | 1389 | |> fold_map inferred_param xs'; | 
| 63056 
9b95ae9ec671
defs are closed, which leads to proper auto_bind_facts;
 wenzelm parents: 
63037diff
changeset | 1390 | val params = xs ~~ map Free ps; | 
| 
9b95ae9ec671
defs are closed, which leads to proper auto_bind_facts;
 wenzelm parents: 
63037diff
changeset | 1391 | |
| 63037 | 1392 | val vars' = map2 (fn (b, _, mx) => fn (_, T) => (b, SOME T, mx)) vars ps; | 
| 63057 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1393 | val binds' = binds | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1394 | |> map (apsnd SOME) | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1395 | |> export_binds params_ctxt ctxt params | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1396 | |> map (apsnd the); | 
| 63037 | 1397 | |
| 63056 
9b95ae9ec671
defs are closed, which leads to proper auto_bind_facts;
 wenzelm parents: 
63037diff
changeset | 1398 | val _ = Variable.warn_extra_tfrees fixes_ctxt params_ctxt; | 
| 
9b95ae9ec671
defs are closed, which leads to proper auto_bind_facts;
 wenzelm parents: 
63037diff
changeset | 1399 | in ((vars' ~~ params, propss, binds, binds'), params_ctxt) end; | 
| 63037 | 1400 | |
| 63057 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1401 | fun prep_statement prep_var prep_propp raw_fixes raw_assumes raw_shows ctxt = | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1402 | let | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1403 | val ((fixes, (assumes, shows), binds), ctxt') = ctxt | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1404 | |> prep_stmt prep_var prep_propp raw_fixes (raw_assumes @ raw_shows) | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1405 | |-> (fn (vars, propss, binds, _) => | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1406 | fold Variable.bind_term binds #> | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1407 | pair (map #2 vars, chop (length raw_assumes) propss, binds)); | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1408 | val binds' = | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1409 | (Auto_Bind.facts ctxt' (flat shows) @ | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1410 | (case try List.last (flat shows) of | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1411 | NONE => [] | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1412 | | SOME prop => map (apsnd (SOME o Auto_Bind.abs_params prop)) binds)) | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1413 | |> export_binds ctxt' ctxt fixes; | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1414 | in ((fixes, assumes, shows, binds'), ctxt') end; | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1415 | |
| 63037 | 1416 | in | 
| 1417 | ||
| 63057 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1418 | val cert_stmt = prep_stmt cert_var cert_propp; | 
| 
50802acac277
more uniform operations for structured statements;
 wenzelm parents: 
63056diff
changeset | 1419 | val read_stmt = prep_stmt read_var read_propp; | 
| 63056 
9b95ae9ec671
defs are closed, which leads to proper auto_bind_facts;
 wenzelm parents: 
63037diff
changeset | 1420 | val cert_statement = prep_statement cert_var cert_propp; | 
| 
9b95ae9ec671
defs are closed, which leads to proper auto_bind_facts;
 wenzelm parents: 
63037diff
changeset | 1421 | val read_statement = prep_statement read_var read_propp; | 
| 63037 | 1422 | |
| 1423 | end; | |
| 1424 | ||
| 1425 | ||
| 8373 
e7237c8fe29e
handling of local contexts: print_cases, get_case, add_cases;
 wenzelm parents: 
8186diff
changeset | 1426 | |
| 10810 | 1427 | (** print context information **) | 
| 1428 | ||
| 12072 
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
 wenzelm parents: 
12066diff
changeset | 1429 | (* local syntax *) | 
| 
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
 wenzelm parents: 
12066diff
changeset | 1430 | |
| 12093 | 1431 | val print_syntax = Syntax.print_syntax o syn_of; | 
| 12072 
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
 wenzelm parents: 
12066diff
changeset | 1432 | |
| 
4281198fb8cd
local syntax: add_syntax, proper read/pretty functions;
 wenzelm parents: 
12066diff
changeset | 1433 | |
| 21728 | 1434 | (* abbreviations *) | 
| 18971 | 1435 | |
| 59917 
9830c944670f
more uniform "verbose" option to print name space;
 wenzelm parents: 
59896diff
changeset | 1436 | fun pretty_abbrevs verbose show_globals ctxt = | 
| 18971 | 1437 | let | 
| 56025 | 1438 | val space = const_space ctxt; | 
| 56062 | 1439 | val (constants, global_constants) = | 
| 59058 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
58950diff
changeset | 1440 | apply2 (#constants o Consts.dest) (#consts (rep_data ctxt)); | 
| 56062 | 1441 | val globals = Symtab.make global_constants; | 
| 21803 | 1442 | fun add_abbr (_, (_, NONE)) = I | 
| 25406 | 1443 | | add_abbr (c, (T, SOME t)) = | 
| 21728 | 1444 | if not show_globals andalso Symtab.defined globals c then I | 
| 1445 | else cons (c, Logic.mk_equals (Const (c, T), t)); | |
| 59917 
9830c944670f
more uniform "verbose" option to print name space;
 wenzelm parents: 
59896diff
changeset | 1446 | val abbrevs = Name_Space.markup_entries verbose ctxt space (fold add_abbr constants []); | 
| 18971 | 1447 | in | 
| 35141 | 1448 | if null abbrevs then [] | 
| 21728 | 1449 | else [Pretty.big_list "abbreviations:" (map (pretty_term_abbrev ctxt o #2) abbrevs)] | 
| 18971 | 1450 | end; | 
| 1451 | ||
| 59917 
9830c944670f
more uniform "verbose" option to print name space;
 wenzelm parents: 
59896diff
changeset | 1452 | fun print_abbrevs verbose = Pretty.writeln_chunks o pretty_abbrevs verbose true; | 
| 21728 | 1453 | |
| 18971 | 1454 | |
| 10810 | 1455 | (* term bindings *) | 
| 1456 | ||
| 57415 
e721124f1b1e
command 'print_term_bindings' supersedes 'print_binds';
 wenzelm parents: 
56867diff
changeset | 1457 | fun pretty_term_bindings ctxt = | 
| 10810 | 1458 | let | 
| 19897 
fe661eb3b0e7
ProofContext: moved variable operations to struct Variable;
 wenzelm parents: 
19882diff
changeset | 1459 | val binds = Variable.binds_of ctxt; | 
| 21728 | 1460 | fun prt_bind (xi, (T, t)) = pretty_term_abbrev ctxt (Logic.mk_equals (Var (xi, T), t)); | 
| 10810 | 1461 | in | 
| 35141 | 1462 | if Vartab.is_empty binds then [] | 
| 15758 
07e382399a96
binds/thms: do not store options, but delete from table;
 wenzelm parents: 
15750diff
changeset | 1463 | else [Pretty.big_list "term bindings:" (map prt_bind (Vartab.dest binds))] | 
| 10810 | 1464 | end; | 
| 1465 | ||
| 1466 | ||
| 56155 | 1467 | (* local facts *) | 
| 10810 | 1468 | |
| 59917 
9830c944670f
more uniform "verbose" option to print name space;
 wenzelm parents: 
59896diff
changeset | 1469 | fun pretty_local_facts verbose ctxt = | 
| 20012 | 1470 | let | 
| 56155 | 1471 | val facts = facts_of ctxt; | 
| 63337 | 1472 | val props = map #1 (Facts.props facts); | 
| 56155 | 1473 | val local_facts = | 
| 35141 | 1474 |       (if null props then [] else [("<unnamed>", props)]) @
 | 
| 56158 
c2c6d560e7b2
more explicit treatment of verbose mode, which includes concealed entries;
 wenzelm parents: 
56156diff
changeset | 1475 | Facts.dest_static verbose [Global_Theory.facts_of (theory_of ctxt)] facts; | 
| 20012 | 1476 | in | 
| 56155 | 1477 | if null local_facts then [] | 
| 1478 | else | |
| 1479 | [Pretty.big_list "local facts:" | |
| 60924 
610794dff23c
tuned signature, in accordance to sortBy in Scala;
 wenzelm parents: 
60799diff
changeset | 1480 | (map #1 (sort_by (#1 o #2) (map (`(pretty_fact ctxt)) local_facts)))] | 
| 20012 | 1481 | end; | 
| 10810 | 1482 | |
| 59917 
9830c944670f
more uniform "verbose" option to print name space;
 wenzelm parents: 
59896diff
changeset | 1483 | fun print_local_facts verbose ctxt = | 
| 
9830c944670f
more uniform "verbose" option to print name space;
 wenzelm parents: 
59896diff
changeset | 1484 | Pretty.writeln_chunks (pretty_local_facts verbose ctxt); | 
| 10810 | 1485 | |
| 1486 | ||
| 63513 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1487 | (* named local contexts *) | 
| 10810 | 1488 | |
| 26722 | 1489 | local | 
| 1490 | ||
| 1491 | fun pretty_case (name, (fixes, ((asms, (lets, cs)), ctxt))) = | |
| 10810 | 1492 | let | 
| 64398 
5076725247fa
more robust printing of names in the context of outer syntax;
 wenzelm parents: 
63640diff
changeset | 1493 | val prt_name = pretty_name ctxt; | 
| 24922 | 1494 | val prt_term = Syntax.pretty_term ctxt; | 
| 12057 | 1495 | |
| 10810 | 1496 | fun prt_let (xi, t) = Pretty.block | 
| 10818 | 1497 | [Pretty.quote (prt_term (Var (xi, Term.fastype_of t))), Pretty.str " =", Pretty.brk 1, | 
| 10810 | 1498 | Pretty.quote (prt_term t)]; | 
| 1499 | ||
| 60565 | 1500 | fun prt_asm (a, ts) = | 
| 60242 
3a8501876dba
tuned output -- avoid empty quites and extra breaks;
 wenzelm parents: 
59990diff
changeset | 1501 | Pretty.block (Pretty.breaks | 
| 64398 
5076725247fa
more robust printing of names in the context of outer syntax;
 wenzelm parents: 
63640diff
changeset | 1502 | ((if a = "" then [] else [prt_name a, Pretty.str ":"]) @ | 
| 60242 
3a8501876dba
tuned output -- avoid empty quites and extra breaks;
 wenzelm parents: 
59990diff
changeset | 1503 | map (Pretty.quote o prt_term) ts)); | 
| 13425 
119ae829ad9b
support for split assumptions in cases (hyps vs. prems);
 wenzelm parents: 
13415diff
changeset | 1504 | |
| 10810 | 1505 | fun prt_sect _ _ _ [] = [] | 
| 56041 | 1506 | | prt_sect head sep prt xs = | 
| 1507 | [Pretty.block (Pretty.breaks (head :: | |
| 35141 | 1508 | flat (separate sep (map (single o prt) xs))))]; | 
| 26722 | 1509 | in | 
| 1510 | Pretty.block (Pretty.fbreaks | |
| 64398 
5076725247fa
more robust printing of names in the context of outer syntax;
 wenzelm parents: 
63640diff
changeset | 1511 | (prt_name name :: Pretty.str ":" :: | 
| 
5076725247fa
more robust printing of names in the context of outer syntax;
 wenzelm parents: 
63640diff
changeset | 1512 | prt_sect (Pretty.keyword1 "fix") [] (prt_name o Binding.name_of o fst) fixes @ | 
| 56041 | 1513 | prt_sect (Pretty.keyword1 "let") [Pretty.keyword2 "and"] prt_let | 
| 19482 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19422diff
changeset | 1514 | (map_filter (fn (xi, SOME t) => SOME (xi, t) | _ => NONE) lets) @ | 
| 13425 
119ae829ad9b
support for split assumptions in cases (hyps vs. prems);
 wenzelm parents: 
13415diff
changeset | 1515 | (if forall (null o #2) asms then [] | 
| 56041 | 1516 | else prt_sect (Pretty.keyword1 "assume") [Pretty.keyword2 "and"] prt_asm asms) @ | 
| 64398 
5076725247fa
more robust printing of names in the context of outer syntax;
 wenzelm parents: 
63640diff
changeset | 1517 | prt_sect (Pretty.str "subcases:") [] (prt_name o fst) cs)) | 
| 26722 | 1518 | end; | 
| 16540 | 1519 | |
| 26722 | 1520 | in | 
| 1521 | ||
| 1522 | fun pretty_cases ctxt = | |
| 1523 | let | |
| 60573 | 1524 |     fun mk_case (_, (_, {legacy = true})) = NONE
 | 
| 1525 |       | mk_case (name, (c as Rule_Cases.Case {fixes, ...}, {legacy = false})) =
 | |
| 53378 
07990ba8c0ea
cases: more position information and PIDE markup;
 wenzelm parents: 
52223diff
changeset | 1526 | SOME (name, (fixes, case_result c ctxt)); | 
| 63513 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1527 | val cases = dest_cases NONE ctxt |> map_filter mk_case; | 
| 10810 | 1528 | in | 
| 35141 | 1529 | if null cases then [] | 
| 26722 | 1530 | else [Pretty.big_list "cases:" (map pretty_case cases)] | 
| 10810 | 1531 | end; | 
| 1532 | ||
| 26722 | 1533 | end; | 
| 1534 | ||
| 63513 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1535 | fun print_cases_proof ctxt0 ctxt = | 
| 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1536 | let | 
| 63640 | 1537 | val print_name = Token.print_name (Thy_Header.get_keywords' ctxt); | 
| 1538 | ||
| 63514 | 1539 | fun trim_name x = if Name.is_internal x then Name.clean x else "_"; | 
| 1540 | val trim_names = map trim_name #> take_suffix (equal "_") #> #1; | |
| 1541 | ||
| 1542 | fun print_case name xs = | |
| 1543 | (case trim_names xs of | |
| 63640 | 1544 | [] => print_name name | 
| 1545 |       | xs' => enclose "(" ")" (space_implode " " (map print_name (name :: xs'))));
 | |
| 63514 | 1546 | |
| 1547 | fun is_case x t = | |
| 1548 | x = Rule_Cases.case_conclN andalso not (Term.exists_subterm Term.is_Var t); | |
| 63513 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1549 | |
| 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1550 |     fun print_proof (name, (Rule_Cases.Case {fixes, binds, ...}, {legacy})) =
 | 
| 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1551 | if legacy then NONE | 
| 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1552 | else | 
| 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1553 | let | 
| 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1554 | val concl = | 
| 63514 | 1555 | if exists (fn ((x, _), SOME t) => is_case x t | _ => false) binds | 
| 1556 | then Rule_Cases.case_conclN else Auto_Bind.thesisN; | |
| 63513 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1557 | in | 
| 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1558 | SOME (cat_lines | 
| 63514 | 1559 | [" case " ^ print_case name (map (Binding.name_of o #1) fixes), | 
| 63513 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1560 | " then show ?" ^ concl ^ " sorry"]) | 
| 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1561 | end; | 
| 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1562 | in | 
| 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1563 | (case map_filter print_proof (dest_cases (SOME ctxt0) ctxt) of | 
| 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1564 | [] => "" | 
| 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1565 | | proofs => | 
| 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1566 | "Proof outline with cases:\n" ^ | 
| 63518 | 1567 | Active.sendback_markup_command (space_implode "\nnext\n" proofs ^ "\nqed")) | 
| 63513 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1568 | end; | 
| 
9f8d06f23c09
information about proof outline with cases (sendback);
 wenzelm parents: 
63509diff
changeset | 1569 | |
| 10810 | 1570 | |
| 12057 | 1571 | (* core context *) | 
| 10810 | 1572 | |
| 56438 | 1573 | val debug = | 
| 64556 | 1574 |   Config.bool (Config.declare ("Proof_Context.debug", \<^here>) (K (Config.Bool false)));
 | 
| 56438 | 1575 | |
| 1576 | val verbose = | |
| 64556 | 1577 |   Config.bool (Config.declare ("Proof_Context.verbose", \<^here>) (K (Config.Bool false)));
 | 
| 10810 | 1578 | |
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1579 | fun pretty_ctxt ctxt = | 
| 42717 
0bbb56867091
proper configuration options Proof_Context.debug and Proof_Context.verbose;
 wenzelm parents: 
42502diff
changeset | 1580 | if not (Config.get ctxt debug) then [] | 
| 20310 | 1581 | else | 
| 1582 | let | |
| 24922 | 1583 | val prt_term = Syntax.pretty_term ctxt; | 
| 12057 | 1584 | |
| 20310 | 1585 | (*structures*) | 
| 59152 
66e6c539a36d
more frugal Local_Syntax.init -- maintain idents within context;
 wenzelm parents: 
59066diff
changeset | 1586 |       val {structs, ...} = Syntax_Trans.get_idents ctxt;
 | 
| 35139 | 1587 | val prt_structs = | 
| 1588 | if null structs then [] | |
| 20310 | 1589 | else [Pretty.block (Pretty.str "structures:" :: Pretty.brk 1 :: | 
| 1590 | Pretty.commas (map Pretty.str structs))]; | |
| 12093 | 1591 | |
| 20310 | 1592 | (*fixes*) | 
| 1593 | fun prt_fix (x, x') = | |
| 1594 | if x = x' then Pretty.str x | |
| 1595 | else Pretty.block [Pretty.str x, Pretty.str " =", Pretty.brk 1, prt_term (Syntax.free x')]; | |
| 1596 | val fixes = | |
| 55948 | 1597 | filter_out ((Name.is_internal orf member (op =) structs) o #1) | 
| 42488 
4638622bcaa1
reorganized fixes as specialized (global) name space;
 wenzelm parents: 
42469diff
changeset | 1598 | (Variable.dest_fixes ctxt); | 
| 35139 | 1599 | val prt_fixes = | 
| 1600 | if null fixes then [] | |
| 20310 | 1601 | else [Pretty.block (Pretty.str "fixed variables:" :: Pretty.brk 1 :: | 
| 1602 | Pretty.commas (map prt_fix fixes))]; | |
| 12057 | 1603 | |
| 60413 | 1604 | (*assumptions*) | 
| 1605 | val prt_assms = | |
| 51584 | 1606 | (case Assumption.all_prems_of ctxt of | 
| 1607 | [] => [] | |
| 60413 | 1608 |         | prems => [Pretty.big_list "assumptions:" [pretty_fact ctxt ("", prems)]]);
 | 
| 1609 | in prt_structs @ prt_fixes @ prt_assms end; | |
| 10810 | 1610 | |
| 1611 | ||
| 1612 | (* main context *) | |
| 1613 | ||
| 16540 | 1614 | fun pretty_context ctxt = | 
| 10810 | 1615 | let | 
| 42717 
0bbb56867091
proper configuration options Proof_Context.debug and Proof_Context.verbose;
 wenzelm parents: 
42502diff
changeset | 1616 | val verbose = Config.get ctxt verbose; | 
| 
0bbb56867091
proper configuration options Proof_Context.debug and Proof_Context.verbose;
 wenzelm parents: 
42502diff
changeset | 1617 | fun verb f x = if verbose then f (x ()) else []; | 
| 35141 | 1618 | |
| 24922 | 1619 | val prt_term = Syntax.pretty_term ctxt; | 
| 1620 | val prt_typ = Syntax.pretty_typ ctxt; | |
| 1621 | val prt_sort = Syntax.pretty_sort ctxt; | |
| 10810 | 1622 | |
| 1623 | (*theory*) | |
| 12057 | 1624 | val pretty_thy = Pretty.block | 
| 17384 | 1625 | [Pretty.str "theory:", Pretty.brk 1, Context.pretty_thy (theory_of ctxt)]; | 
| 10810 | 1626 | |
| 1627 | (*defaults*) | |
| 1628 | fun prt_atom prt prtT (x, X) = Pretty.block | |
| 1629 | [prt x, Pretty.str " ::", Pretty.brk 1, prtT X]; | |
| 1630 | ||
| 1631 | fun prt_var (x, ~1) = prt_term (Syntax.free x) | |
| 1632 | | prt_var xi = prt_term (Syntax.var xi); | |
| 1633 | ||
| 1634 | fun prt_varT (x, ~1) = prt_typ (TFree (x, [])) | |
| 1635 | | prt_varT xi = prt_typ (TVar (xi, [])); | |
| 1636 | ||
| 1637 | val prt_defT = prt_atom prt_var prt_typ; | |
| 1638 | val prt_defS = prt_atom prt_varT prt_sort; | |
| 16540 | 1639 | |
| 20163 | 1640 | val (types, sorts) = Variable.constraints_of ctxt; | 
| 10810 | 1641 | in | 
| 18609 | 1642 | verb single (K pretty_thy) @ | 
| 18672 
ac1a048ca7dd
uniform handling of fixes: read/cert_vars, add_fixes(_i), body flag;
 wenzelm parents: 
18619diff
changeset | 1643 | pretty_ctxt ctxt @ | 
| 59917 
9830c944670f
more uniform "verbose" option to print name space;
 wenzelm parents: 
59896diff
changeset | 1644 | verb (pretty_abbrevs true false) (K ctxt) @ | 
| 57415 
e721124f1b1e
command 'print_term_bindings' supersedes 'print_binds';
 wenzelm parents: 
56867diff
changeset | 1645 | verb pretty_term_bindings (K ctxt) @ | 
| 59917 
9830c944670f
more uniform "verbose" option to print name space;
 wenzelm parents: 
59896diff
changeset | 1646 | verb (pretty_local_facts true) (K ctxt) @ | 
| 10810 | 1647 | verb pretty_cases (K ctxt) @ | 
| 18609 | 1648 | verb single (fn () => Pretty.big_list "type constraints:" (map prt_defT (Vartab.dest types))) @ | 
| 20163 | 1649 | verb single (fn () => Pretty.big_list "default sorts:" (map prt_defS (Vartab.dest sorts))) | 
| 10810 | 1650 | end; | 
| 1651 | ||
| 5819 | 1652 | end; | 
| 35429 
afa8cf9e63d8
authentic syntax for classes and type constructors;
 wenzelm parents: 
35412diff
changeset | 1653 | |
| 42360 | 1654 | val show_abbrevs = Proof_Context.show_abbrevs; |