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