src/Pure/proofterm.ML
author paulson <lp15@cam.ac.uk>
Thu, 22 Aug 2024 22:26:28 +0100
changeset 80736 c8bcb14fcfa8
parent 80608 0b8922e351a3
permissions -rw-r--r--
Partial tidying of old proofs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
     1
(*  Title:      Pure/proofterm.ML
11540
23794728cdb7 fixed header;
wenzelm
parents: 11519
diff changeset
     2
    Author:     Stefan Berghofer, TU Muenchen
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
     3
11540
23794728cdb7 fixed header;
wenzelm
parents: 11519
diff changeset
     4
LF style proof terms.
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
     5
*)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
     6
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
     7
infix 8 % %% %>;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
     8
70578
7bb2bbb3ccd6 tuned signature;
wenzelm
parents: 70577
diff changeset
     9
signature PROOFTERM =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    10
sig
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
    11
  type thm_header =
80590
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
    12
    {serial: serial, command_pos: Position.T, theory_name: string, thm_name: Thm_Name.P,
70538
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
    13
      prop: term, types: typ list option}
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
    14
  type thm_body
70587
wenzelm
parents: 70586
diff changeset
    15
  type thm_node
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    16
  datatype proof =
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    17
     MinProof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    18
   | PBound of int
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    19
   | Abst of string * typ option * proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    20
   | AbsP of string * term option * proof
63857
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
    21
   | % of proof * term option
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
    22
   | %% of proof * proof
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    23
   | Hyp of term
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    24
   | PAxm of string * term * typ list option
71777
3875815f5967 clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
wenzelm
parents: 71533
diff changeset
    25
   | PClass of typ * class
70834
614ca81fa28e clarified oracle_proof;
wenzelm
parents: 70833
diff changeset
    26
   | Oracle of string * term * typ list option
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
    27
   | PThm of thm_header * thm_body
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    28
  and proof_body = PBody of
77867
686a7d71ed7b backout e3fe192fa4a8;
wenzelm
parents: 77866
diff changeset
    29
    {oracles: ((string * Position.T) * term option) Ord_List.T,
77866
3bd1aa2f3517 backout 61f652dd955a;
wenzelm
parents: 77865
diff changeset
    30
     thms: (serial * thm_node) Ord_List.T,
79263
bf2e724ff57e clarified signature;
wenzelm
parents: 79262
diff changeset
    31
     zboxes: ZTerm.zboxes,
79220
f9d972b464c1 clarified signature: fewer tuples;
wenzelm
parents: 79219
diff changeset
    32
     zproof: zproof,
f9d972b464c1 clarified signature: fewer tuples;
wenzelm
parents: 79219
diff changeset
    33
     proof: proof}
77867
686a7d71ed7b backout e3fe192fa4a8;
wenzelm
parents: 77866
diff changeset
    34
  type oracle = (string * Position.T) * term option
70590
8214aa5d5650 tuned signature;
wenzelm
parents: 70589
diff changeset
    35
  type thm = serial * thm_node
70976
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
    36
  exception MIN_PROOF of unit
79220
f9d972b464c1 clarified signature: fewer tuples;
wenzelm
parents: 79219
diff changeset
    37
  val zproof_of: proof_body -> zproof
32094
89b9210c7506 prefer simultaneous join -- for improved scheduling;
wenzelm
parents: 32057
diff changeset
    38
  val proof_of: proof_body -> proof
70587
wenzelm
parents: 70586
diff changeset
    39
  val join_proof: proof_body future -> proof
79220
f9d972b464c1 clarified signature: fewer tuples;
wenzelm
parents: 79219
diff changeset
    40
  val map_proof_of: (proof -> proof) -> proof_body -> proof_body
80590
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
    41
  val thm_header: serial -> Position.T -> string -> Thm_Name.P -> term -> typ list option ->
70538
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
    42
    thm_header
70501
23c4f264250c tuned signature;
wenzelm
parents: 70500
diff changeset
    43
  val thm_body: proof_body -> thm_body
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
    44
  val thm_body_proof_raw: thm_body -> proof
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
    45
  val thm_body_proof_open: thm_body -> proof
70595
2ae7e33c950f clarified thm_id vs. thm_node/thm: retain theory_name;
wenzelm
parents: 70593
diff changeset
    46
  val thm_node_theory_name: thm_node -> string
80295
8a9588ffc133 more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents: 80288
diff changeset
    47
  val thm_node_name: thm_node -> Thm_Name.T
64573
e6aee01da22d tuned signature -- more abstract type thm_node;
wenzelm
parents: 64572
diff changeset
    48
  val thm_node_prop: thm_node -> term
e6aee01da22d tuned signature -- more abstract type thm_node;
wenzelm
parents: 64572
diff changeset
    49
  val thm_node_body: thm_node -> proof_body future
77866
3bd1aa2f3517 backout 61f652dd955a;
wenzelm
parents: 77865
diff changeset
    50
  val thm_node_thms: thm_node -> thm list
3bd1aa2f3517 backout 61f652dd955a;
wenzelm
parents: 77865
diff changeset
    51
  val join_thms: thm list -> proof_body list
70590
8214aa5d5650 tuned signature;
wenzelm
parents: 70589
diff changeset
    52
  val make_thm: thm_header -> thm_body -> thm
30711
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
    53
  val fold_proof_atoms: bool -> (proof -> 'a -> 'a) -> proof list -> 'a -> 'a
70413
913b4afb6ac2 more explicit type proof_serial;
wenzelm
parents: 70412
diff changeset
    54
  val fold_body_thms:
80295
8a9588ffc133 more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents: 80288
diff changeset
    55
    ({serial: serial, thm_name: Thm_Name.T, prop: term, body: proof_body} -> 'a -> 'a) ->
64572
cec07f7249cd tuned signature;
wenzelm
parents: 64568
diff changeset
    56
    proof_body list -> 'a -> 'a
77867
686a7d71ed7b backout e3fe192fa4a8;
wenzelm
parents: 77866
diff changeset
    57
  val oracle_ord: oracle ord
77866
3bd1aa2f3517 backout 61f652dd955a;
wenzelm
parents: 77865
diff changeset
    58
  val thm_ord: thm ord
77874
wenzelm
parents: 77869
diff changeset
    59
  val union_oracles: oracle Ord_List.T -> oracle Ord_List.T -> oracle Ord_List.T
77867
686a7d71ed7b backout e3fe192fa4a8;
wenzelm
parents: 77866
diff changeset
    60
  val unions_oracles: oracle Ord_List.T list -> oracle Ord_List.T
77874
wenzelm
parents: 77869
diff changeset
    61
  val union_thms: thm Ord_List.T -> thm Ord_List.T -> thm Ord_List.T
77866
3bd1aa2f3517 backout 61f652dd955a;
wenzelm
parents: 77865
diff changeset
    62
  val unions_thms: thm Ord_List.T list -> thm Ord_List.T
79220
f9d972b464c1 clarified signature: fewer tuples;
wenzelm
parents: 79219
diff changeset
    63
  val no_proof_body: zproof -> proof -> proof_body
70916
4c15217d6266 clarified signature: name of standard_proof is authentic, otherwise empty;
wenzelm
parents: 70915
diff changeset
    64
  val no_thm_names: proof -> proof
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
    65
  val no_thm_proofs: proof -> proof
70440
03cfef16ddb4 more diagnostic operations;
wenzelm
parents: 70439
diff changeset
    66
  val no_body_proofs: proof -> proof
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
    67
80586
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
    68
  val proof_to_zproof: theory -> proof -> zproof
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
    69
  val encode_standard_term: theory -> term XML.Encode.T
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
    70
  val encode_standard_proof: theory -> proof XML.Encode.T
80585
9c6cfac291f4 clarified signature;
wenzelm
parents: 80566
diff changeset
    71
  val encode: theory -> proof XML.Encode.T
9c6cfac291f4 clarified signature;
wenzelm
parents: 80566
diff changeset
    72
  val encode_body: theory -> proof_body XML.Encode.T
9c6cfac291f4 clarified signature;
wenzelm
parents: 80566
diff changeset
    73
  val decode: theory -> proof XML.Decode.T
9c6cfac291f4 clarified signature;
wenzelm
parents: 80566
diff changeset
    74
  val decode_body: theory -> proof_body XML.Decode.T
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    75
70587
wenzelm
parents: 70586
diff changeset
    76
  val %> : proof * term -> proof
wenzelm
parents: 70586
diff changeset
    77
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
    78
  (*primitive operations*)
79222
wenzelm
parents: 79220
diff changeset
    79
  val zproof_enabled: int -> bool
79113
5109e4b2a292 pro-forma support for optional zproof: no proper content yet;
wenzelm
parents: 79112
diff changeset
    80
  val proof_enabled: int -> bool
79219
8b371e684acf clarified signature: more explicit get_proofs_level with bounds check;
wenzelm
parents: 79217
diff changeset
    81
  val oracle_enabled: int -> bool
8b371e684acf clarified signature: more explicit get_proofs_level with bounds check;
wenzelm
parents: 79217
diff changeset
    82
  val get_proofs_level: unit -> int
70587
wenzelm
parents: 70586
diff changeset
    83
  val proofs: int Unsynchronized.ref
79113
5109e4b2a292 pro-forma support for optional zproof: no proper content yet;
wenzelm
parents: 79112
diff changeset
    84
  val any_proofs_enabled: unit -> bool
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    85
  val proof_combt: proof * term list -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    86
  val proof_combt': proof * term option list -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    87
  val proof_combP: proof * proof list -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    88
  val strip_combt: proof -> proof * term option list
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    89
  val strip_combP: proof -> proof * proof list
79441
eb142693255f clarified signature;
wenzelm
parents: 79440
diff changeset
    90
  val any_head_of: proof -> proof
eb142693255f clarified signature;
wenzelm
parents: 79440
diff changeset
    91
  val term_head_of: proof -> proof
eb142693255f clarified signature;
wenzelm
parents: 79440
diff changeset
    92
  val proof_head_of: proof -> proof
79442
a7241e5db601 tuned source structure;
wenzelm
parents: 79441
diff changeset
    93
  val compact_proof: proof -> bool
70830
8f050cc0ec50 clarified signature;
wenzelm
parents: 70829
diff changeset
    94
  val strip_thm_body: proof_body -> proof_body
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
    95
  val map_proof_same: term Same.operation -> typ Same.operation
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
    96
    -> (typ * class -> proof) -> proof Same.operation
36620
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36619
diff changeset
    97
  val map_proof_terms_same: term Same.operation -> typ Same.operation -> proof Same.operation
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36619
diff changeset
    98
  val map_proof_types_same: typ Same.operation -> proof Same.operation
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    99
  val map_proof_terms: (term -> term) -> (typ -> typ) -> proof -> proof
36620
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36619
diff changeset
   100
  val map_proof_types: (typ -> typ) -> proof -> proof
70843
cc987440d776 more compact XML: separate environment for free variables;
wenzelm
parents: 70839
diff changeset
   101
  val fold_proof_terms: (term -> 'a -> 'a) -> proof -> 'a -> 'a
cc987440d776 more compact XML: separate environment for free variables;
wenzelm
parents: 70839
diff changeset
   102
  val fold_proof_terms_types: (term -> 'a -> 'a) -> (typ -> 'a -> 'a) -> proof -> 'a -> 'a
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   103
  val maxidx_proof: proof -> int -> int
70417
eb6ff14767cd tuned signature;
wenzelm
parents: 70416
diff changeset
   104
  val change_types: typ list option -> proof -> proof
79197
ad98105148e5 clarified signature;
wenzelm
parents: 79196
diff changeset
   105
  val abstract_over: term -> proof -> proof
79175
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
   106
  val incr_bv_same: int -> int -> int -> int -> proof Same.operation
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
   107
  val incr_bv: int -> int -> int -> int -> proof -> proof
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
   108
  val incr_boundvars: int -> int -> proof -> proof
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   109
  val prf_loose_bvar1: proof -> int -> bool
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   110
  val prf_loose_Pbvar1: proof -> int -> bool
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   111
  val prf_add_loose_bnos: int -> int -> proof -> int list * int list -> int list * int list
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   112
  val norm_proof: Envir.env -> proof -> proof
79164
23a611444c99 clarified signature;
wenzelm
parents: 79151
diff changeset
   113
  val norm_proof_remove_types: Envir.env -> proof -> proof
79167
4fb0723dc5fc clarified signature;
wenzelm
parents: 79166
diff changeset
   114
  val subst_bounds: term list -> proof -> proof
4fb0723dc5fc clarified signature;
wenzelm
parents: 79166
diff changeset
   115
  val subst_pbounds: proof list -> proof -> proof
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   116
  val freeze_thaw_prf: proof -> proof * (proof -> proof)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   117
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   118
  (*proof terms for specific inference rules*)
70824
7000868c6098 clarified modules;
wenzelm
parents: 70823
diff changeset
   119
  val trivial_proof: proof
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   120
  val implies_intr_proof: term -> proof -> proof
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
   121
  val implies_intr_proof': term -> proof -> proof
70814
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
   122
  val forall_intr_proof: string * term -> typ option -> proof -> proof
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
   123
  val forall_intr_proof': term -> proof -> proof
79135
db2dc7634d62 more zproofs;
wenzelm
parents: 79134
diff changeset
   124
  val varifyT_proof: ((string * sort) * (indexname * sort)) list -> proof -> proof
36619
deadcd0ec431 renamed Proofterm.freezeT to Proofterm.legacy_freezeT (cf. 88756a5a92fc);
wenzelm
parents: 35851
diff changeset
   125
  val legacy_freezeT: term -> proof -> proof
70822
22e2f5acc0b4 more accurate treatment of propositions within proof terms, but these are ultimately ignored for performance reasons;
wenzelm
parents: 70815
diff changeset
   126
  val rotate_proof: term list -> term -> (string * typ) list -> term list -> int -> proof -> proof
36742
6f8bbe9ca8a2 tuned signature;
wenzelm
parents: 36741
diff changeset
   127
  val permute_prems_proof: term list -> int -> int -> proof -> proof
74266
612b7e0d6721 clarified signature;
wenzelm
parents: 74235
diff changeset
   128
  val generalize_proof: Names.set * Names.set -> int -> term -> proof -> proof
612b7e0d6721 clarified signature;
wenzelm
parents: 74235
diff changeset
   129
  val instantiate: typ TVars.table * term Vars.table -> proof -> proof
79227
a8db9ee24d5e clarified signature;
wenzelm
parents: 79225
diff changeset
   130
  val lift_proof: term -> int -> term list -> proof -> proof
32027
9dd548810ed1 tuned incr_indexes;
wenzelm
parents: 32024
diff changeset
   131
  val incr_indexes: int -> proof -> proof
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   132
  val assumption_proof: term list -> term -> int -> proof -> proof
79241
a49bdb686545 clarified modules;
wenzelm
parents: 79240
diff changeset
   133
  val bicompose_proof: Envir.env -> int -> bool -> term list -> term list -> term option ->
79240
9cb8053d720e clarified signature;
wenzelm
parents: 79233
diff changeset
   134
    term list -> int -> int -> proof -> proof -> proof
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   135
  val reflexive_axm: proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   136
  val symmetric_axm: proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   137
  val transitive_axm: proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   138
  val equal_intr_axm: proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   139
  val equal_elim_axm: proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   140
  val abstract_rule_axm: proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   141
  val combination_axm: proof
70814
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
   142
  val reflexive_proof: proof
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
   143
  val symmetric_proof: proof -> proof
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
   144
  val transitive_proof: typ -> term -> proof -> proof -> proof
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
   145
  val equal_intr_proof: term -> term -> proof -> proof -> proof
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
   146
  val equal_elim_proof: term -> term -> proof -> proof -> proof
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
   147
  val abstract_rule_proof: string * term -> proof -> proof
70908
3828a57e537d tuned signature;
wenzelm
parents: 70898
diff changeset
   148
  val combination_proof: term -> term -> term -> term -> proof -> proof -> proof
79112
fd9de06c0ecf clarified signature: follow Term.could_unify;
wenzelm
parents: 78764
diff changeset
   149
  val could_unify: proof * proof -> bool
79405
f4fdf5eebcac pro-forma support for ZTerm.sorts_zproof;
wenzelm
parents: 79404
diff changeset
   150
  type sorts_proof = (class * class -> proof) * (string * class list list * class -> proof)
f4fdf5eebcac pro-forma support for ZTerm.sorts_zproof;
wenzelm
parents: 79404
diff changeset
   151
  val of_sort_proof: Sorts.algebra -> sorts_proof -> (typ * class -> proof) -> typ * sort -> proof list
79410
719563e4816a tuned signature;
wenzelm
parents: 79409
diff changeset
   152
  val axiom_proof: string -> term -> proof
70834
614ca81fa28e clarified oracle_proof;
wenzelm
parents: 70833
diff changeset
   153
  val oracle_proof: string -> term -> proof
63623
1a38142e1172 tuned signature;
wenzelm
parents: 62897
diff changeset
   154
  val shrink_proof: proof -> proof
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   155
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   156
  (*rewriting on proof terms*)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   157
  val add_prf_rrule: proof * proof -> theory -> theory
52487
48bc24467008 backout dedd7952a62c: static "proofs" value within theory prevents later inferencing with different configuration;
wenzelm
parents: 52470
diff changeset
   158
  val add_prf_rproc: (typ list -> term option list -> proof -> (proof * proof) option) -> theory -> theory
70848
fbba2075f823 support preprocessing of exported proofs;
wenzelm
parents: 70844
diff changeset
   159
  val set_preproc: (theory -> proof -> proof) -> theory -> theory
71010
be689b7d81fd clarified signature -- more options;
wenzelm
parents: 71003
diff changeset
   160
  val apply_preproc: theory -> proof -> proof
70978
a1c137961c12 tuned signature;
wenzelm
parents: 70976
diff changeset
   161
  val forall_intr_variables_term: term -> term
a1c137961c12 tuned signature;
wenzelm
parents: 70976
diff changeset
   162
  val forall_intr_variables: term -> proof -> proof
33722
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 33522
diff changeset
   163
  val no_skel: proof
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 33522
diff changeset
   164
  val normal_skel: proof
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   165
  val rewrite_proof: theory -> (proof * proof) list *
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
   166
    (typ list -> term option list -> proof -> (proof * proof) option) list -> proof -> proof
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   167
  val rewrite_proof_notypes: (proof * proof) list *
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
   168
    (typ list -> term option list -> proof -> (proof * proof) option) list -> proof -> proof
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   169
  val rew_proof: theory -> proof -> proof
36877
7699f7fafde7 added Proofterm.get_name variants according to krauss/schropp;
wenzelm
parents: 36742
diff changeset
   170
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
   171
  val reconstruct_proof: theory -> term -> proof -> proof
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
   172
  val prop_of': term list -> proof -> term
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
   173
  val prop_of: proof -> term
80590
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   174
  val expand_name_empty: thm_header -> Thm_Name.P option
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   175
  val expand_proof: theory -> (thm_header -> Thm_Name.P option) -> proof -> proof
70400
65bbef66e2ec clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents: 70399
diff changeset
   176
70604
8088cf2576f3 more compact: avoid pointless PThm rudiments;
wenzelm
parents: 70603
diff changeset
   177
  val export_enabled: unit -> bool
70983
52a62342c9ce clarified signature;
wenzelm
parents: 70982
diff changeset
   178
  val export_standard_enabled: unit -> bool
70984
5e98925f86ed clarified signature (again);
wenzelm
parents: 70983
diff changeset
   179
  val export_proof_boxes_required: theory -> bool
71018
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
   180
  val export_proof_boxes: proof_body list -> unit
36877
7699f7fafde7 added Proofterm.get_name variants according to krauss/schropp;
wenzelm
parents: 36742
diff changeset
   181
  val fulfill_norm_proof: theory -> (serial * proof_body) list -> proof_body -> proof_body
80295
8a9588ffc133 more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents: 80288
diff changeset
   182
  val thm_proof: theory -> sorts_proof -> Thm_Name.P -> sort list -> term list ->
79425
0875c87b4a4b clarified signature;
wenzelm
parents: 79424
diff changeset
   183
    term -> (serial * proof_body future) list -> proof_body -> proof_body
0875c87b4a4b clarified signature;
wenzelm
parents: 79424
diff changeset
   184
  val unconstrain_thm_proof: theory -> sorts_proof -> sort list ->
0875c87b4a4b clarified signature;
wenzelm
parents: 79424
diff changeset
   185
    term -> (serial * proof_body future) list -> proof_body -> term * proof_body
77869
1156aa9db7f5 backout 4a174bea55e2;
wenzelm
parents: 77867
diff changeset
   186
  val get_identity: sort list -> term list -> term -> proof ->
80590
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   187
    {serial: serial, theory_name: string, thm_name: Thm_Name.P} option
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   188
  val get_approximative_name: sort list -> term list -> term -> proof -> Thm_Name.P
70577
ed651a58afe4 back to uniform serial (reverting 913b4afb6ac2): this allows to treat derivation id like name space entity id;
wenzelm
parents: 70573
diff changeset
   189
  type thm_id = {serial: serial, theory_name: string}
70895
2a318149b01b proof boxes based on proof digest (not proof term): thus it works with prune_proofs;
wenzelm
parents: 70892
diff changeset
   190
  val make_thm_id: serial * string -> thm_id
70915
bd4d37edfee4 clarified expand_proof/expand_name: allow more detailed control via thm_header;
wenzelm
parents: 70909
diff changeset
   191
  val thm_header_id: thm_header -> thm_id
70595
2ae7e33c950f clarified thm_id vs. thm_node/thm: retain theory_name;
wenzelm
parents: 70593
diff changeset
   192
  val thm_id: thm -> thm_id
77869
1156aa9db7f5 backout 4a174bea55e2;
wenzelm
parents: 77867
diff changeset
   193
  val get_id: sort list -> term list -> term -> proof -> thm_id option
70979
7abe5abb4c05 more detailed proof term output;
wenzelm
parents: 70978
diff changeset
   194
  val this_id: thm_id option -> thm_id -> bool
70976
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
   195
  val proof_boxes: {excluded: thm_id -> bool, included: thm_id -> bool} ->
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
   196
    proof list -> (thm_header * proof) list  (*exception MIN_PROOF*)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   197
end
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   198
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   199
structure Proofterm : PROOFTERM =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   200
struct
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   201
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   202
(** datatype proof **)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   203
80592
839c4f8742f9 more predictable proof id;
wenzelm
parents: 80590
diff changeset
   204
val proof_serial = Counter.make ();
839c4f8742f9 more predictable proof id;
wenzelm
parents: 80590
diff changeset
   205
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   206
type thm_header =
80590
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   207
  {serial: serial, command_pos: Position.T, theory_name: string, thm_name: Thm_Name.P,
70538
fc9ba6fe367f clarified PThm: theory_name simplifies retrieval from exports;
wenzelm
parents: 70534
diff changeset
   208
    prop: term, types: typ list option};
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   209
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   210
datatype proof =
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   211
   MinProof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   212
 | PBound of int
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   213
 | Abst of string * typ option * proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   214
 | AbsP of string * term option * proof
12497
ec6ba9e6eef3 type_env;
wenzelm
parents: 12311
diff changeset
   215
 | op % of proof * term option
ec6ba9e6eef3 type_env;
wenzelm
parents: 12311
diff changeset
   216
 | op %% of proof * proof
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   217
 | Hyp of term
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   218
 | PAxm of string * term * typ list option
71777
3875815f5967 clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
wenzelm
parents: 71533
diff changeset
   219
 | PClass of typ * class
70834
614ca81fa28e clarified oracle_proof;
wenzelm
parents: 70833
diff changeset
   220
 | Oracle of string * term * typ list option
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   221
 | PThm of thm_header * thm_body
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   222
and proof_body = PBody of
77867
686a7d71ed7b backout e3fe192fa4a8;
wenzelm
parents: 77866
diff changeset
   223
  {oracles: ((string * Position.T) * term option) Ord_List.T,
77866
3bd1aa2f3517 backout 61f652dd955a;
wenzelm
parents: 77865
diff changeset
   224
   thms: (serial * thm_node) Ord_List.T,
79263
bf2e724ff57e clarified signature;
wenzelm
parents: 79262
diff changeset
   225
   zboxes: ZTerm.zboxes,
79220
f9d972b464c1 clarified signature: fewer tuples;
wenzelm
parents: 79219
diff changeset
   226
   zproof: zproof,
f9d972b464c1 clarified signature: fewer tuples;
wenzelm
parents: 79219
diff changeset
   227
   proof: proof}
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   228
and thm_body =
71018
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
   229
  Thm_Body of {open_proof: proof -> proof, body: proof_body future}
64574
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   230
and thm_node =
80295
8a9588ffc133 more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents: 80288
diff changeset
   231
  Thm_Node of {theory_name: string, thm_name: Thm_Name.T, prop: term,
71018
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
   232
    body: proof_body future, export: unit lazy, consolidate: unit lazy};
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   233
77867
686a7d71ed7b backout e3fe192fa4a8;
wenzelm
parents: 77866
diff changeset
   234
type oracle = (string * Position.T) * term option;
686a7d71ed7b backout e3fe192fa4a8;
wenzelm
parents: 77866
diff changeset
   235
val oracle_ord: oracle ord =
686a7d71ed7b backout e3fe192fa4a8;
wenzelm
parents: 77866
diff changeset
   236
  prod_ord (prod_ord fast_string_ord Position.ord) (option_ord Term_Ord.fast_term_ord);
686a7d71ed7b backout e3fe192fa4a8;
wenzelm
parents: 77866
diff changeset
   237
70590
8214aa5d5650 tuned signature;
wenzelm
parents: 70589
diff changeset
   238
type thm = serial * thm_node;
77866
3bd1aa2f3517 backout 61f652dd955a;
wenzelm
parents: 77865
diff changeset
   239
val thm_ord: thm ord = fn ((i, _), (j, _)) => int_ord (j, i);
28815
80bb72a0f577 proof_body/pthm: removed redundant types field;
wenzelm
parents: 28812
diff changeset
   240
70587
wenzelm
parents: 70586
diff changeset
   241
70976
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
   242
exception MIN_PROOF of unit;
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
   243
79220
f9d972b464c1 clarified signature: fewer tuples;
wenzelm
parents: 79219
diff changeset
   244
fun proof_of (PBody {proof, ...}) = proof;
f9d972b464c1 clarified signature: fewer tuples;
wenzelm
parents: 79219
diff changeset
   245
fun zproof_of (PBody {zproof, ...}) = zproof;
32094
89b9210c7506 prefer simultaneous join -- for improved scheduling;
wenzelm
parents: 32057
diff changeset
   246
val join_proof = Future.join #> proof_of;
17017
fa8e32209734 - Tuned handling of oracles
berghofe
parents: 16983
diff changeset
   247
79220
f9d972b464c1 clarified signature: fewer tuples;
wenzelm
parents: 79219
diff changeset
   248
fun map_proof_of f (PBody {oracles, thms, zboxes, zproof, proof}) =
f9d972b464c1 clarified signature: fewer tuples;
wenzelm
parents: 79219
diff changeset
   249
  PBody {oracles = oracles, thms = thms, zboxes = zboxes, zproof = zproof, proof = f proof};
f9d972b464c1 clarified signature: fewer tuples;
wenzelm
parents: 79219
diff changeset
   250
79333
56b604882d0b more thorough treatment of zproof vs. proof: avoid accidental storage of large structures;
wenzelm
parents: 79332
diff changeset
   251
fun no_proof (PBody {oracles, thms, zboxes, zproof, ...}) =
56b604882d0b more thorough treatment of zproof vs. proof: avoid accidental storage of large structures;
wenzelm
parents: 79332
diff changeset
   252
  PBody {oracles = oracles, thms = thms, zboxes = zboxes, zproof = zproof, proof = MinProof};
70396
425c5f9bc61a support export_proofs, prune_proofs;
wenzelm
parents: 70395
diff changeset
   253
80590
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   254
fun thm_header serial command_pos theory_name thm_name prop types : thm_header =
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   255
  {serial = serial, command_pos = command_pos, theory_name = theory_name, thm_name = thm_name,
80295
8a9588ffc133 more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents: 80288
diff changeset
   256
    prop = prop, types = types};
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   257
71018
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
   258
fun thm_body body = Thm_Body {open_proof = I, body = Future.value body};
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   259
fun thm_body_proof_raw (Thm_Body {body, ...}) = join_proof body;
70502
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
   260
fun thm_body_proof_open (Thm_Body {open_proof, body, ...}) = open_proof (join_proof body);
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   261
64574
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   262
fun rep_thm_node (Thm_Node args) = args;
70595
2ae7e33c950f clarified thm_id vs. thm_node/thm: retain theory_name;
wenzelm
parents: 70593
diff changeset
   263
val thm_node_theory_name = #theory_name o rep_thm_node;
80295
8a9588ffc133 more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents: 80288
diff changeset
   264
val thm_node_name = #thm_name o rep_thm_node;
64574
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   265
val thm_node_prop = #prop o rep_thm_node;
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   266
val thm_node_body = #body o rep_thm_node;
70595
2ae7e33c950f clarified thm_id vs. thm_node/thm: retain theory_name;
wenzelm
parents: 70593
diff changeset
   267
val thm_node_thms = thm_node_body #> Future.join #> (fn PBody {thms, ...} => thms);
71018
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
   268
val thm_node_export = #export o rep_thm_node;
64574
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   269
val thm_node_consolidate = #consolidate o rep_thm_node;
64573
e6aee01da22d tuned signature -- more abstract type thm_node;
wenzelm
parents: 64572
diff changeset
   270
77866
3bd1aa2f3517 backout 61f652dd955a;
wenzelm
parents: 77865
diff changeset
   271
fun join_thms (thms: thm list) =
3bd1aa2f3517 backout 61f652dd955a;
wenzelm
parents: 77865
diff changeset
   272
  Future.joins (map (thm_node_body o #2) thms);
64574
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   273
71018
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
   274
val consolidate_bodies =
77866
3bd1aa2f3517 backout 61f652dd955a;
wenzelm
parents: 77865
diff changeset
   275
  maps (fn PBody {thms, ...} => map (thm_node_consolidate o #2) thms)
67669
ad8ca85f13e2 tuned: more parallel;
wenzelm
parents: 66168
diff changeset
   276
  #> Lazy.consolidate #> map Lazy.force #> ignore;
64574
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   277
80295
8a9588ffc133 more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents: 80288
diff changeset
   278
fun make_thm_node theory_name thm_name prop body export =
71018
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
   279
  let
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
   280
    val consolidate =
66167
1bd268ab885c more informative task_statistics;
wenzelm
parents: 65446
diff changeset
   281
      Lazy.lazy_name "Proofterm.make_thm_node" (fn () =>
71022
6504ea98623c uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
wenzelm
parents: 71018
diff changeset
   282
        let val PBody {thms, ...} = Future.join body
71018
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
   283
        in consolidate_bodies (join_thms thms) end);
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
   284
  in
80295
8a9588ffc133 more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents: 80288
diff changeset
   285
    Thm_Node {theory_name = theory_name, thm_name = thm_name, prop = prop, body = body,
71018
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
   286
      export = export, consolidate = consolidate}
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
   287
  end;
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
   288
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
   289
val no_export = Lazy.value ();
44333
cc53ce50f738 reverted to join_bodies/join_proofs based on fold_body_thms to regain performance (escpecially of HOL-Proofs) -- see also aa9c1e9ef2ce and 4e2abb045eac;
wenzelm
parents: 44332
diff changeset
   290
80590
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   291
fun make_thm
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   292
    ({serial, theory_name, thm_name = (thm_name, _), prop, ...}: thm_header)
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   293
    (Thm_Body {body, ...}) =
80295
8a9588ffc133 more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents: 80288
diff changeset
   294
  (serial, make_thm_node theory_name thm_name prop body no_export);
70589
00b67aaa4010 clarified modules;
wenzelm
parents: 70588
diff changeset
   295
17017
fa8e32209734 - Tuned handling of oracles
berghofe
parents: 16983
diff changeset
   296
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   297
(* proof atoms *)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   298
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   299
fun fold_proof_atoms all f =
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   300
  let
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   301
    fun app (Abst (_, _, prf)) = app prf
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   302
      | app (AbsP (_, _, prf)) = app prf
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   303
      | app (prf % _) = app prf
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   304
      | app (prf1 %% prf2) = app prf1 #> app prf2
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   305
      | app (prf as PThm ({serial = i, ...}, Thm_Body {body, ...})) = (fn (x, seen) =>
77820
15edec78869c performance tuning: replace Table() by Set();
wenzelm
parents: 77730
diff changeset
   306
          if Intset.member seen i then (x, seen)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   307
          else
28815
80bb72a0f577 proof_body/pthm: removed redundant types field;
wenzelm
parents: 28812
diff changeset
   308
            let val (x', seen') =
77820
15edec78869c performance tuning: replace Table() by Set();
wenzelm
parents: 77730
diff changeset
   309
              (if all then app (join_proof body) else I) (x, Intset.insert i seen)
28815
80bb72a0f577 proof_body/pthm: removed redundant types field;
wenzelm
parents: 28812
diff changeset
   310
            in (f prf x', seen') end)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   311
      | app prf = (fn (x, seen) => (f prf x, seen));
77820
15edec78869c performance tuning: replace Table() by Set();
wenzelm
parents: 77730
diff changeset
   312
  in fn prfs => fn x => #1 (fold app prfs (x, Intset.empty)) end;
19357
dade85a75c9f Added alternative version of thms_of_proof that does not recursively
berghofe
parents: 19304
diff changeset
   313
30711
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   314
fun fold_body_thms f =
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   315
  let
32726
a900d3cd47cc fold_body_thms: pass pthm identifier;
wenzelm
parents: 32711
diff changeset
   316
    fun app (PBody {thms, ...}) =
77866
3bd1aa2f3517 backout 61f652dd955a;
wenzelm
parents: 77865
diff changeset
   317
      tap join_thms thms |> fold (fn (i, thm_node) => fn (x, seen) =>
77820
15edec78869c performance tuning: replace Table() by Set();
wenzelm
parents: 77730
diff changeset
   318
        if Intset.member seen i then (x, seen)
32094
89b9210c7506 prefer simultaneous join -- for improved scheduling;
wenzelm
parents: 32057
diff changeset
   319
        else
89b9210c7506 prefer simultaneous join -- for improved scheduling;
wenzelm
parents: 32057
diff changeset
   320
          let
80295
8a9588ffc133 more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents: 80288
diff changeset
   321
            val thm_name = thm_node_name thm_node;
64574
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   322
            val prop = thm_node_prop thm_node;
1134e4d5e5b7 consolidate nested thms with persistent result, for improved performance;
wenzelm
parents: 64573
diff changeset
   323
            val body = Future.join (thm_node_body thm_node);
77820
15edec78869c performance tuning: replace Table() by Set();
wenzelm
parents: 77730
diff changeset
   324
            val (x', seen') = app body (x, Intset.insert i seen);
80295
8a9588ffc133 more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents: 80288
diff changeset
   325
          in (f {serial = i, thm_name = thm_name, prop = prop, body = body} x', seen') end);
77820
15edec78869c performance tuning: replace Table() by Set();
wenzelm
parents: 77730
diff changeset
   326
  in fn bodies => fn x => #1 (fold app bodies (x, Intset.empty)) end;
30711
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   327
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   328
28815
80bb72a0f577 proof_body/pthm: removed redundant types field;
wenzelm
parents: 28812
diff changeset
   329
(* proof body *)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   330
77874
wenzelm
parents: 77869
diff changeset
   331
val union_oracles = Ord_List.union oracle_ord;
77867
686a7d71ed7b backout e3fe192fa4a8;
wenzelm
parents: 77866
diff changeset
   332
val unions_oracles = Ord_List.unions oracle_ord;
77874
wenzelm
parents: 77869
diff changeset
   333
wenzelm
parents: 77869
diff changeset
   334
val union_thms = Ord_List.union thm_ord;
77866
3bd1aa2f3517 backout 61f652dd955a;
wenzelm
parents: 77865
diff changeset
   335
val unions_thms = Ord_List.unions thm_ord;
3bd1aa2f3517 backout 61f652dd955a;
wenzelm
parents: 77865
diff changeset
   336
79220
f9d972b464c1 clarified signature: fewer tuples;
wenzelm
parents: 79219
diff changeset
   337
fun no_proof_body zproof proof =
79279
d9a7ee1bd070 minor performance tuning: more concise union;
wenzelm
parents: 79267
diff changeset
   338
  PBody {oracles = [], thms = [], zboxes = [], zproof = zproof, proof = proof};
80560
960b866b1117 tuned signature;
wenzelm
parents: 80311
diff changeset
   339
val no_thm_body = thm_body (no_proof_body ZNop MinProof);
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   340
70916
4c15217d6266 clarified signature: name of standard_proof is authentic, otherwise empty;
wenzelm
parents: 70915
diff changeset
   341
fun no_thm_names (Abst (x, T, prf)) = Abst (x, T, no_thm_names prf)
4c15217d6266 clarified signature: name of standard_proof is authentic, otherwise empty;
wenzelm
parents: 70915
diff changeset
   342
  | no_thm_names (AbsP (x, t, prf)) = AbsP (x, t, no_thm_names prf)
4c15217d6266 clarified signature: name of standard_proof is authentic, otherwise empty;
wenzelm
parents: 70915
diff changeset
   343
  | no_thm_names (prf % t) = no_thm_names prf % t
4c15217d6266 clarified signature: name of standard_proof is authentic, otherwise empty;
wenzelm
parents: 70915
diff changeset
   344
  | no_thm_names (prf1 %% prf2) = no_thm_names prf1 %% no_thm_names prf2
80590
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   345
  | no_thm_names (PThm ({serial, command_pos, theory_name, thm_name = _, prop, types}, thm_body)) =
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   346
      PThm (thm_header serial command_pos theory_name Thm_Name.none prop types, thm_body)
70916
4c15217d6266 clarified signature: name of standard_proof is authentic, otherwise empty;
wenzelm
parents: 70915
diff changeset
   347
  | no_thm_names a = a;
4c15217d6266 clarified signature: name of standard_proof is authentic, otherwise empty;
wenzelm
parents: 70915
diff changeset
   348
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   349
fun no_thm_proofs (Abst (x, T, prf)) = Abst (x, T, no_thm_proofs prf)
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   350
  | no_thm_proofs (AbsP (x, t, prf)) = AbsP (x, t, no_thm_proofs prf)
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   351
  | no_thm_proofs (prf % t) = no_thm_proofs prf % t
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   352
  | no_thm_proofs (prf1 %% prf2) = no_thm_proofs prf1 %% no_thm_proofs prf2
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   353
  | no_thm_proofs (PThm (header, _)) = PThm (header, no_thm_body)
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   354
  | no_thm_proofs a = a;
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   355
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   356
fun no_body_proofs (Abst (x, T, prf)) = Abst (x, T, no_body_proofs prf)
70440
03cfef16ddb4 more diagnostic operations;
wenzelm
parents: 70439
diff changeset
   357
  | no_body_proofs (AbsP (x, t, prf)) = AbsP (x, t, no_body_proofs prf)
03cfef16ddb4 more diagnostic operations;
wenzelm
parents: 70439
diff changeset
   358
  | no_body_proofs (prf % t) = no_body_proofs prf % t
03cfef16ddb4 more diagnostic operations;
wenzelm
parents: 70439
diff changeset
   359
  | no_body_proofs (prf1 %% prf2) = no_body_proofs prf1 %% no_body_proofs prf2
71018
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
   360
  | no_body_proofs (PThm (header, Thm_Body {open_proof, body})) =
70502
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
   361
      let
79220
f9d972b464c1 clarified signature: fewer tuples;
wenzelm
parents: 79219
diff changeset
   362
        val PBody {zproof, proof, ...} = Future.join body;
f9d972b464c1 clarified signature: fewer tuples;
wenzelm
parents: 79219
diff changeset
   363
        val body' = Future.value (no_proof_body zproof proof);
71018
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
   364
        val thm_body' = Thm_Body {open_proof = open_proof, body = body'};
70502
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
   365
      in PThm (header, thm_body') end
70440
03cfef16ddb4 more diagnostic operations;
wenzelm
parents: 70439
diff changeset
   366
  | no_body_proofs a = a;
03cfef16ddb4 more diagnostic operations;
wenzelm
parents: 70439
diff changeset
   367
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   368
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   369
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   370
(** XML data representation **)
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   371
80586
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   372
(* encode as zterm/zproof *)
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   373
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   374
fun proof_to_zproof thy =
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   375
  let
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   376
    val {ztyp, zterm} = ZTerm.zterm_cache thy;
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   377
    val ztvar = ztyp #> (fn ZTVar v => v);
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   378
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   379
    fun zproof_const name prop typargs =
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   380
      let
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   381
        val vs = rev ((fold_types o fold_atyps) (insert (op =) o ztvar) prop []);
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   382
        val Ts = map ztyp typargs
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   383
      in ZConstp ((name, zterm prop), (ZTVars.make (vs ~~ Ts), ZVars.empty)) end;
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   384
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   385
    fun zproof MinProof = ZNop
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   386
      | zproof (PBound i) = ZBoundp i
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   387
      | zproof (Abst (a, SOME T, p)) = ZAbst (a, ztyp T, zproof p)
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   388
      | zproof (AbsP (a, SOME t, p)) = ZAbsp (a, zterm t, zproof p)
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   389
      | zproof (p % SOME t) = ZAppt (zproof p, zterm t)
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   390
      | zproof (p %% q) = ZAppp (zproof p, zproof q)
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   391
      | zproof (Hyp t) = ZHyp (zterm t)
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   392
      | zproof (PAxm (a, prop, SOME Ts)) = zproof_const (ZAxiom a) prop Ts
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   393
      | zproof (PClass (T, c)) = OFCLASSp (ztyp T, c)
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   394
      | zproof (Oracle (a, prop, SOME Ts)) = zproof_const (ZOracle a) prop Ts
80604
wenzelm
parents: 80597
diff changeset
   395
      | zproof (PThm ({serial, theory_name, thm_name, prop, types = SOME Ts, ...}, _)) =
80590
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   396
          let val proof_name =
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   397
            ZThm {theory_name = theory_name, thm_name = thm_name, serial = serial};
80586
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   398
          in zproof_const proof_name prop Ts end;
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   399
  in zproof end;
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   400
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   401
fun encode_standard_term thy = ZTerm.zterm_of thy #> ZTerm.encode_zterm {typed_vars = false};
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   402
fun encode_standard_proof thy = proof_to_zproof thy #> ZTerm.encode_zproof {typed_vars = false};
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   403
b8733a141c26 uniform export via ztyp/zterm/zproof;
wenzelm
parents: 80585
diff changeset
   404
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   405
(* encode *)
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   406
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   407
local
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   408
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   409
open XML.Encode Term_XML.Encode;
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   410
70784
799437173553 Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents: 70604
diff changeset
   411
fun proof consts prf = prf |> variant
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   412
 [fn MinProof => ([], []),
70844
f95a85446a24 more compact XML;
wenzelm
parents: 70843
diff changeset
   413
  fn PBound a => ([], int a),
70784
799437173553 Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents: 70604
diff changeset
   414
  fn Abst (a, b, c) => ([a], pair (option typ) (proof consts) (b, c)),
799437173553 Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents: 70604
diff changeset
   415
  fn AbsP (a, b, c) => ([a], pair (option (term consts)) (proof consts) (b, c)),
799437173553 Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents: 70604
diff changeset
   416
  fn a % b => ([], pair (proof consts) (option (term consts)) (a, b)),
799437173553 Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents: 70604
diff changeset
   417
  fn a %% b => ([], pair (proof consts) (proof consts) (a, b)),
799437173553 Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents: 70604
diff changeset
   418
  fn Hyp a => ([], term consts a),
799437173553 Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents: 70604
diff changeset
   419
  fn PAxm (a, b, c) => ([a], pair (term consts) (option (list typ)) (b, c)),
71777
3875815f5967 clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
wenzelm
parents: 71533
diff changeset
   420
  fn PClass (a, b) => ([b], typ a),
70834
614ca81fa28e clarified oracle_proof;
wenzelm
parents: 70833
diff changeset
   421
  fn Oracle (a, b, c) => ([a], pair (term consts) (option (list typ)) (b, c)),
80590
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   422
  fn PThm ({serial, command_pos, theory_name, thm_name, prop, types}, Thm_Body {open_proof, body, ...}) =>
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   423
      ([int_atom serial, theory_name],
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   424
        pair (properties o Position.properties_of)
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   425
          (pair Thm_Name.encode_pos
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   426
            (pair (term consts)
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   427
              (pair (option (list typ)) (proof_body consts))))
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   428
        (command_pos, (thm_name, (prop, (types, map_proof_of open_proof (Future.join body))))))]
79220
f9d972b464c1 clarified signature: fewer tuples;
wenzelm
parents: 79219
diff changeset
   429
and proof_body consts (PBody {oracles, thms, zboxes = _, zproof = _, proof = prf}) =
71465
910a081cca74 more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
wenzelm
parents: 71022
diff changeset
   430
  triple (list (pair (pair string (properties o Position.properties_of))
77867
686a7d71ed7b backout e3fe192fa4a8;
wenzelm
parents: 77866
diff changeset
   431
      (option (term consts)))) (list (thm consts)) (proof consts) (oracles, thms, prf)
70784
799437173553 Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents: 70604
diff changeset
   432
and thm consts (a, thm_node) =
80311
31df11a23d6e clarified signature: more explicit operations;
wenzelm
parents: 80299
diff changeset
   433
  pair int (pair string (pair Thm_Name.encode (pair (term consts) (proof_body consts))))
70595
2ae7e33c950f clarified thm_id vs. thm_node/thm: retain theory_name;
wenzelm
parents: 70593
diff changeset
   434
    (a, (thm_node_theory_name thm_node, (thm_node_name thm_node, (thm_node_prop thm_node,
2ae7e33c950f clarified thm_id vs. thm_node/thm: retain theory_name;
wenzelm
parents: 70593
diff changeset
   435
      (Future.join (thm_node_body thm_node))))));
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   436
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   437
in
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   438
80585
9c6cfac291f4 clarified signature;
wenzelm
parents: 80566
diff changeset
   439
val encode = proof o Sign.consts_of;
9c6cfac291f4 clarified signature;
wenzelm
parents: 80566
diff changeset
   440
val encode_body = proof_body o Sign.consts_of;
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   441
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   442
end;
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   443
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   444
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   445
(* decode *)
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   446
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   447
local
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   448
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   449
open XML.Decode Term_XML.Decode;
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   450
70784
799437173553 Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents: 70604
diff changeset
   451
fun proof consts prf = prf |> variant
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   452
 [fn ([], []) => MinProof,
70844
f95a85446a24 more compact XML;
wenzelm
parents: 70843
diff changeset
   453
  fn ([], a) => PBound (int a),
70784
799437173553 Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents: 70604
diff changeset
   454
  fn ([a], b) => let val (c, d) = pair (option typ) (proof consts) b in Abst (a, c, d) end,
799437173553 Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents: 70604
diff changeset
   455
  fn ([a], b) => let val (c, d) = pair (option (term consts)) (proof consts) b in AbsP (a, c, d) end,
799437173553 Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents: 70604
diff changeset
   456
  fn ([], a) => op % (pair (proof consts) (option (term consts)) a),
799437173553 Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents: 70604
diff changeset
   457
  fn ([], a) => op %% (pair (proof consts) (proof consts) a),
799437173553 Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents: 70604
diff changeset
   458
  fn ([], a) => Hyp (term consts a),
799437173553 Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents: 70604
diff changeset
   459
  fn ([a], b) => let val (c, d) = pair (term consts) (option (list typ)) b in PAxm (a, c, d) end,
71777
3875815f5967 clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
wenzelm
parents: 71533
diff changeset
   460
  fn ([b], a) => PClass (typ a, b),
70834
614ca81fa28e clarified oracle_proof;
wenzelm
parents: 70833
diff changeset
   461
  fn ([a], b) => let val (c, d) = pair (term consts) (option (list typ)) b in Oracle (a, c, d) end,
80590
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   462
  fn ([ser, theory_name], b) =>
70497
8a19b92ec3d6 more positions;
wenzelm
parents: 70495
diff changeset
   463
    let
80590
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   464
      val ((command_pos, (thm_name, (prop, (types, body))))) =
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   465
        pair (Position.of_properties o properties)
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   466
          (pair Thm_Name.decode_pos
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   467
            (pair (term consts) (pair (option (list typ)) (proof_body consts)))) b;
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   468
      val header = thm_header (int_atom ser) command_pos theory_name thm_name prop types;
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   469
    in PThm (header, thm_body body) end]
70784
799437173553 Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents: 70604
diff changeset
   470
and proof_body consts x =
799437173553 Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents: 70604
diff changeset
   471
  let
799437173553 Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents: 70604
diff changeset
   472
    val (a, b, c) =
71465
910a081cca74 more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
wenzelm
parents: 71022
diff changeset
   473
      triple (list (pair (pair string (Position.of_properties o properties))
910a081cca74 more position information for oracles (e.g. "skip_proof" for 'sorry'), requires Proofterm.proofs := 1;
wenzelm
parents: 71022
diff changeset
   474
        (option (term consts)))) (list (thm consts)) (proof consts) x;
80560
960b866b1117 tuned signature;
wenzelm
parents: 80311
diff changeset
   475
  in PBody {oracles = a, thms = b, zboxes = [], zproof = ZNop, proof = c} end
70784
799437173553 Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents: 70604
diff changeset
   476
and thm consts x =
799437173553 Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents: 70604
diff changeset
   477
  let
799437173553 Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents: 70604
diff changeset
   478
    val (a, (b, (c, (d, e)))) =
80311
31df11a23d6e clarified signature: more explicit operations;
wenzelm
parents: 80299
diff changeset
   479
      pair int (pair string (pair Thm_Name.decode (pair (term consts) (proof_body consts)))) x
71018
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
   480
  in (a, make_thm_node b c d (Future.value e) no_export) end;
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   481
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   482
in
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   483
80585
9c6cfac291f4 clarified signature;
wenzelm
parents: 80566
diff changeset
   484
val decode = proof o Sign.consts_of;
9c6cfac291f4 clarified signature;
wenzelm
parents: 80566
diff changeset
   485
val decode_body = proof_body o Sign.consts_of;
52424
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   486
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   487
end;
77075c576d4c support for XML data representation of proof terms;
wenzelm
parents: 51700
diff changeset
   488
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   489
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   490
(** proof objects with different levels of detail **)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   491
79222
wenzelm
parents: 79220
diff changeset
   492
fun zproof_enabled proofs = proofs = 4 orelse proofs = 5 orelse proofs = 6;
79219
8b371e684acf clarified signature: more explicit get_proofs_level with bounds check;
wenzelm
parents: 79217
diff changeset
   493
fun proof_enabled proofs = proofs = 2 orelse proofs = 6;
8b371e684acf clarified signature: more explicit get_proofs_level with bounds check;
wenzelm
parents: 79217
diff changeset
   494
fun oracle_enabled proofs = not (proofs = 0 orelse proofs = 4);
79113
5109e4b2a292 pro-forma support for optional zproof: no proper content yet;
wenzelm
parents: 79112
diff changeset
   495
5109e4b2a292 pro-forma support for optional zproof: no proper content yet;
wenzelm
parents: 79112
diff changeset
   496
val proofs = Unsynchronized.ref 6;
5109e4b2a292 pro-forma support for optional zproof: no proper content yet;
wenzelm
parents: 79112
diff changeset
   497
79219
8b371e684acf clarified signature: more explicit get_proofs_level with bounds check;
wenzelm
parents: 79217
diff changeset
   498
fun get_proofs_level () =
8b371e684acf clarified signature: more explicit get_proofs_level with bounds check;
wenzelm
parents: 79217
diff changeset
   499
  let val proofs = ! proofs in
8b371e684acf clarified signature: more explicit get_proofs_level with bounds check;
wenzelm
parents: 79217
diff changeset
   500
    if 0 <= proofs andalso proofs <= 6 andalso proofs <> 3 then proofs
8b371e684acf clarified signature: more explicit get_proofs_level with bounds check;
wenzelm
parents: 79217
diff changeset
   501
    else error ("Illegal level of detail for proof objects: " ^ string_of_int proofs)
8b371e684acf clarified signature: more explicit get_proofs_level with bounds check;
wenzelm
parents: 79217
diff changeset
   502
  end;
8b371e684acf clarified signature: more explicit get_proofs_level with bounds check;
wenzelm
parents: 79217
diff changeset
   503
79113
5109e4b2a292 pro-forma support for optional zproof: no proper content yet;
wenzelm
parents: 79112
diff changeset
   504
fun any_proofs_enabled () =
79223
78d032205af4 more robust: proper Proofterm.get_proofs_level with bound check;
wenzelm
parents: 79222
diff changeset
   505
  let val proofs = get_proofs_level ()
79222
wenzelm
parents: 79220
diff changeset
   506
  in zproof_enabled proofs orelse proof_enabled proofs end;
70587
wenzelm
parents: 70586
diff changeset
   507
79440
wenzelm
parents: 79432
diff changeset
   508
fun (p %> t) = p % SOME t;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   509
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   510
val proof_combt = Library.foldl (op %>);
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   511
val proof_combt' = Library.foldl (op %);
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   512
val proof_combP = Library.foldl (op %%);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   513
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20853
diff changeset
   514
fun strip_combt prf =
79440
wenzelm
parents: 79432
diff changeset
   515
  let
wenzelm
parents: 79432
diff changeset
   516
    fun strip (p % t, ts) = strip (p, t :: ts)
wenzelm
parents: 79432
diff changeset
   517
      | strip res = res;
wenzelm
parents: 79432
diff changeset
   518
  in strip (prf, []) end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   519
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20853
diff changeset
   520
fun strip_combP prf =
79440
wenzelm
parents: 79432
diff changeset
   521
  let
wenzelm
parents: 79432
diff changeset
   522
    fun strip (p %% q, qs) = strip (p, q :: qs)
wenzelm
parents: 79432
diff changeset
   523
      | strip res = res;
wenzelm
parents: 79432
diff changeset
   524
  in strip (prf, []) end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   525
79441
eb142693255f clarified signature;
wenzelm
parents: 79440
diff changeset
   526
fun any_head_of (p %% _) = any_head_of p
eb142693255f clarified signature;
wenzelm
parents: 79440
diff changeset
   527
  | any_head_of (p % _) = any_head_of p
eb142693255f clarified signature;
wenzelm
parents: 79440
diff changeset
   528
  | any_head_of p = p;
eb142693255f clarified signature;
wenzelm
parents: 79440
diff changeset
   529
eb142693255f clarified signature;
wenzelm
parents: 79440
diff changeset
   530
fun term_head_of (p % _) = term_head_of p
eb142693255f clarified signature;
wenzelm
parents: 79440
diff changeset
   531
  | term_head_of p = p;
eb142693255f clarified signature;
wenzelm
parents: 79440
diff changeset
   532
eb142693255f clarified signature;
wenzelm
parents: 79440
diff changeset
   533
fun proof_head_of (p %% _) = proof_head_of p
eb142693255f clarified signature;
wenzelm
parents: 79440
diff changeset
   534
  | proof_head_of p = p;
eb142693255f clarified signature;
wenzelm
parents: 79440
diff changeset
   535
79442
a7241e5db601 tuned source structure;
wenzelm
parents: 79441
diff changeset
   536
val atomic_proof =
a7241e5db601 tuned source structure;
wenzelm
parents: 79441
diff changeset
   537
  (fn Abst _ => false | AbsP _ => false
a7241e5db601 tuned source structure;
wenzelm
parents: 79441
diff changeset
   538
    | op % _ => false | op %% _ => false
a7241e5db601 tuned source structure;
wenzelm
parents: 79441
diff changeset
   539
    | MinProof => false
a7241e5db601 tuned source structure;
wenzelm
parents: 79441
diff changeset
   540
    | _ => true);
a7241e5db601 tuned source structure;
wenzelm
parents: 79441
diff changeset
   541
a7241e5db601 tuned source structure;
wenzelm
parents: 79441
diff changeset
   542
fun compact_proof (p % _) = compact_proof p
a7241e5db601 tuned source structure;
wenzelm
parents: 79441
diff changeset
   543
  | compact_proof (p %% q) = atomic_proof q andalso compact_proof p
a7241e5db601 tuned source structure;
wenzelm
parents: 79441
diff changeset
   544
  | compact_proof p = atomic_proof p;
a7241e5db601 tuned source structure;
wenzelm
parents: 79441
diff changeset
   545
79220
f9d972b464c1 clarified signature: fewer tuples;
wenzelm
parents: 79219
diff changeset
   546
fun strip_thm_body (body as PBody {proof, ...}) =
79441
eb142693255f clarified signature;
wenzelm
parents: 79440
diff changeset
   547
  (case term_head_of (proof_head_of proof) of
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
   548
    PThm (_, Thm_Body {body = body', ...}) => Future.join body'
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   549
  | _ => body);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   550
70822
22e2f5acc0b4 more accurate treatment of propositions within proof terms, but these are ultimately ignored for performance reasons;
wenzelm
parents: 70815
diff changeset
   551
val mk_Abst = fold_rev (fn (x, _: typ) => fn prf => Abst (x, NONE, prf));
22e2f5acc0b4 more accurate treatment of propositions within proof terms, but these are ultimately ignored for performance reasons;
wenzelm
parents: 70815
diff changeset
   552
val mk_AbsP = fold_rev (fn _: term => fn prf => AbsP ("H", NONE, prf));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   553
36620
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36619
diff changeset
   554
fun map_proof_same term typ ofclass =
20000
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   555
  let
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   556
    val typs = Same.map typ;
20000
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   557
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   558
    fun proof (Abst (s, T, prf)) =
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   559
          (Abst (s, Same.map_option typ T, Same.commit proof prf)
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   560
            handle Same.SAME => Abst (s, T, proof prf))
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   561
      | proof (AbsP (s, t, prf)) =
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   562
          (AbsP (s, Same.map_option term t, Same.commit proof prf)
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   563
            handle Same.SAME => AbsP (s, t, proof prf))
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   564
      | proof (prf % t) =
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   565
          (proof prf % Same.commit (Same.map_option term) t
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   566
            handle Same.SAME => prf % Same.map_option term t)
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   567
      | proof (prf1 %% prf2) =
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   568
          (proof prf1 %% Same.commit proof prf2
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   569
            handle Same.SAME => prf1 %% proof prf2)
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   570
      | proof (PAxm (a, prop, SOME Ts)) = PAxm (a, prop, SOME (typs Ts))
79415
740ec03b0b71 tuned names;
wenzelm
parents: 79412
diff changeset
   571
      | proof (PClass C) = ofclass C
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   572
      | proof (Oracle (a, prop, SOME Ts)) = Oracle (a, prop, SOME (typs Ts))
80590
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   573
      | proof (PThm ({serial, command_pos, theory_name, thm_name, prop, types = SOME Ts}, thm_body)) =
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   574
          PThm (thm_header serial command_pos theory_name thm_name prop (SOME (typs Ts)), thm_body)
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   575
      | proof _ = raise Same.SAME;
36620
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36619
diff changeset
   576
  in proof end;
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36619
diff changeset
   577
71777
3875815f5967 clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
wenzelm
parents: 71533
diff changeset
   578
fun map_proof_terms_same term typ = map_proof_same term typ (fn (T, c) => PClass (typ T, c));
79409
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79407
diff changeset
   579
fun map_proof_types_same typ = map_proof_terms_same (Term.map_types_same typ) typ;
20000
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   580
79400
0824ca1f1da0 clarified modules;
wenzelm
parents: 79392
diff changeset
   581
fun map_proof_terms f g =
0824ca1f1da0 clarified modules;
wenzelm
parents: 79392
diff changeset
   582
  Same.commit (map_proof_terms_same (Same.function_eq (op =) f) (Same.function_eq (op =) g));
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   583
79400
0824ca1f1da0 clarified modules;
wenzelm
parents: 79392
diff changeset
   584
fun map_proof_types f =
0824ca1f1da0 clarified modules;
wenzelm
parents: 79392
diff changeset
   585
  Same.commit (map_proof_types_same (Same.function_eq (op =) f));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   586
70843
cc987440d776 more compact XML: separate environment for free variables;
wenzelm
parents: 70839
diff changeset
   587
fun fold_proof_terms f (Abst (_, _, prf)) = fold_proof_terms f prf
cc987440d776 more compact XML: separate environment for free variables;
wenzelm
parents: 70839
diff changeset
   588
  | fold_proof_terms f (AbsP (_, SOME t, prf)) = f t #> fold_proof_terms f prf
cc987440d776 more compact XML: separate environment for free variables;
wenzelm
parents: 70839
diff changeset
   589
  | fold_proof_terms f (AbsP (_, NONE, prf)) = fold_proof_terms f prf
cc987440d776 more compact XML: separate environment for free variables;
wenzelm
parents: 70839
diff changeset
   590
  | fold_proof_terms f (prf % SOME t) = fold_proof_terms f prf #> f t
cc987440d776 more compact XML: separate environment for free variables;
wenzelm
parents: 70839
diff changeset
   591
  | fold_proof_terms f (prf % NONE) = fold_proof_terms f prf
cc987440d776 more compact XML: separate environment for free variables;
wenzelm
parents: 70839
diff changeset
   592
  | fold_proof_terms f (prf1 %% prf2) = fold_proof_terms f prf1 #> fold_proof_terms f prf2
cc987440d776 more compact XML: separate environment for free variables;
wenzelm
parents: 70839
diff changeset
   593
  | fold_proof_terms _ _ = I;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   594
70843
cc987440d776 more compact XML: separate environment for free variables;
wenzelm
parents: 70839
diff changeset
   595
fun fold_proof_terms_types f g (Abst (_, SOME T, prf)) = g T #> fold_proof_terms_types f g prf
cc987440d776 more compact XML: separate environment for free variables;
wenzelm
parents: 70839
diff changeset
   596
  | fold_proof_terms_types f g (Abst (_, NONE, prf)) = fold_proof_terms_types f g prf
cc987440d776 more compact XML: separate environment for free variables;
wenzelm
parents: 70839
diff changeset
   597
  | fold_proof_terms_types f g (AbsP (_, SOME t, prf)) = f t #> fold_proof_terms_types f g prf
cc987440d776 more compact XML: separate environment for free variables;
wenzelm
parents: 70839
diff changeset
   598
  | fold_proof_terms_types f g (AbsP (_, NONE, prf)) = fold_proof_terms_types f g prf
cc987440d776 more compact XML: separate environment for free variables;
wenzelm
parents: 70839
diff changeset
   599
  | fold_proof_terms_types f g (prf % SOME t) = fold_proof_terms_types f g prf #> f t
cc987440d776 more compact XML: separate environment for free variables;
wenzelm
parents: 70839
diff changeset
   600
  | fold_proof_terms_types f g (prf % NONE) = fold_proof_terms_types f g prf
cc987440d776 more compact XML: separate environment for free variables;
wenzelm
parents: 70839
diff changeset
   601
  | fold_proof_terms_types f g (prf1 %% prf2) =
cc987440d776 more compact XML: separate environment for free variables;
wenzelm
parents: 70839
diff changeset
   602
      fold_proof_terms_types f g prf1 #> fold_proof_terms_types f g prf2
cc987440d776 more compact XML: separate environment for free variables;
wenzelm
parents: 70839
diff changeset
   603
  | fold_proof_terms_types _ g (PAxm (_, _, SOME Ts)) = fold g Ts
71777
3875815f5967 clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
wenzelm
parents: 71533
diff changeset
   604
  | fold_proof_terms_types _ g (PClass (T, _)) = g T
70843
cc987440d776 more compact XML: separate environment for free variables;
wenzelm
parents: 70839
diff changeset
   605
  | fold_proof_terms_types _ g (Oracle (_, _, SOME Ts)) = fold g Ts
cc987440d776 more compact XML: separate environment for free variables;
wenzelm
parents: 70839
diff changeset
   606
  | fold_proof_terms_types _ g (PThm ({types = SOME Ts, ...}, _)) = fold g Ts
cc987440d776 more compact XML: separate environment for free variables;
wenzelm
parents: 70839
diff changeset
   607
  | fold_proof_terms_types _ _ _ = I;
cc987440d776 more compact XML: separate environment for free variables;
wenzelm
parents: 70839
diff changeset
   608
cc987440d776 more compact XML: separate environment for free variables;
wenzelm
parents: 70839
diff changeset
   609
fun maxidx_proof prf = fold_proof_terms_types Term.maxidx_term Term.maxidx_typ prf;
12868
cdf338ef5fad New function maxidx_of_proof.
berghofe
parents: 12497
diff changeset
   610
70417
eb6ff14767cd tuned signature;
wenzelm
parents: 70416
diff changeset
   611
fun change_types types (PAxm (name, prop, _)) = PAxm (name, prop, types)
71777
3875815f5967 clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
wenzelm
parents: 71533
diff changeset
   612
  | change_types (SOME [T]) (PClass (_, c)) = PClass (T, c)
70417
eb6ff14767cd tuned signature;
wenzelm
parents: 70416
diff changeset
   613
  | change_types types (Oracle (name, prop, _)) = Oracle (name, prop, types)
80590
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   614
  | change_types types (PThm ({serial, command_pos, theory_name, thm_name, prop, types = _}, thm_body)) =
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   615
      PThm (thm_header serial command_pos theory_name thm_name prop types, thm_body)
70417
eb6ff14767cd tuned signature;
wenzelm
parents: 70416
diff changeset
   616
  | change_types _ prf = prf;
12907
27e6d344d724 New function change_type for changing type assignments of theorems,
berghofe
parents: 12890
diff changeset
   617
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   618
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20853
diff changeset
   619
(*Abstraction of a proof term over its occurrences of v,
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   620
    which must contain no loose bound variables.
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   621
  The resulting proof term is ready to become the body of an Abst.*)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   622
79197
ad98105148e5 clarified signature;
wenzelm
parents: 79196
diff changeset
   623
fun abstract_over v =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   624
  let
79196
wenzelm
parents: 79176
diff changeset
   625
    fun term lev u =
wenzelm
parents: 79176
diff changeset
   626
      if v aconv u then Bound lev
wenzelm
parents: 79176
diff changeset
   627
      else
wenzelm
parents: 79176
diff changeset
   628
        (case u of
wenzelm
parents: 79176
diff changeset
   629
           Abs (a, T, t) => Abs (a, T, term (lev + 1) t)
wenzelm
parents: 79176
diff changeset
   630
         | t $ u =>
wenzelm
parents: 79176
diff changeset
   631
            (term lev t $ Same.commit (term lev) u
wenzelm
parents: 79176
diff changeset
   632
              handle Same.SAME => t $ term lev u)
wenzelm
parents: 79176
diff changeset
   633
         | _ => raise Same.SAME);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   634
79196
wenzelm
parents: 79176
diff changeset
   635
    fun proof lev (AbsP (a, t, p)) =
wenzelm
parents: 79176
diff changeset
   636
          (AbsP (a, Same.map_option (term lev) t, Same.commit (proof lev) p)
wenzelm
parents: 79176
diff changeset
   637
           handle Same.SAME => AbsP (a, t, proof lev p))
wenzelm
parents: 79176
diff changeset
   638
      | proof lev (Abst (a, T, p)) = Abst (a, T, proof (lev + 1) p)
wenzelm
parents: 79176
diff changeset
   639
      | proof lev (p %% q) = (proof lev p %% Same.commit (proof lev) q
wenzelm
parents: 79176
diff changeset
   640
          handle Same.SAME => p %% proof lev q)
wenzelm
parents: 79176
diff changeset
   641
      | proof lev (p % t) =
wenzelm
parents: 79176
diff changeset
   642
          (proof lev p % Option.map (Same.commit (term lev)) t
wenzelm
parents: 79176
diff changeset
   643
            handle Same.SAME => p % Same.map_option (term lev) t)
wenzelm
parents: 79176
diff changeset
   644
      | proof _ _ = raise Same.SAME;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   645
79196
wenzelm
parents: 79176
diff changeset
   646
  in Same.commit (proof 0) end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   647
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   648
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   649
(*increments a proof term's non-local bound variables
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   650
  required when moving a proof term within abstractions
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   651
     inc is  increment for bound variables
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   652
     lev is  level at which a bound variable is considered 'loose'*)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   653
79175
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
   654
fun incr_bv_same incP inct =
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
   655
  if incP = 0 andalso inct = 0 then fn _ => fn _ => Same.same
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
   656
  else
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
   657
    let
79284
wenzelm
parents: 79282
diff changeset
   658
      val term = Term.incr_bv_same inct;
wenzelm
parents: 79282
diff changeset
   659
79175
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
   660
      fun proof Plev _ (PBound i) =
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
   661
            if i >= Plev then PBound (i + incP) else raise Same.SAME
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
   662
        | proof Plev tlev (AbsP (a, t, p)) =
79284
wenzelm
parents: 79282
diff changeset
   663
            (AbsP (a, Same.map_option (term tlev) t, Same.commit (proof (Plev + 1) tlev) p)
wenzelm
parents: 79282
diff changeset
   664
              handle Same.SAME => AbsP (a, t, proof (Plev + 1) tlev p))
79175
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
   665
        | proof Plev tlev (Abst (a, T, body)) =
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
   666
            Abst (a, T, proof Plev (tlev + 1) body)
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
   667
        | proof Plev tlev (p %% q) =
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
   668
            (proof Plev tlev p %% Same.commit (proof Plev tlev) q
79284
wenzelm
parents: 79282
diff changeset
   669
              handle Same.SAME => p %% proof Plev tlev q)
79175
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
   670
        | proof Plev tlev (p % t) =
79284
wenzelm
parents: 79282
diff changeset
   671
            (proof Plev tlev p % Option.map (Same.commit (term tlev)) t
wenzelm
parents: 79282
diff changeset
   672
              handle Same.SAME => p % Same.map_option (term tlev) t)
79175
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
   673
        | proof _ _ _ = raise Same.SAME;
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
   674
    in proof end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   675
79175
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
   676
fun incr_bv incP inct Plev tlev = Same.commit (incr_bv_same incP inct Plev tlev);
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
   677
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
   678
fun incr_boundvars incP inct = incr_bv incP inct 0 0;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   679
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   680
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   681
fun prf_loose_bvar1 (prf1 %% prf2) k = prf_loose_bvar1 prf1 k orelse prf_loose_bvar1 prf2 k
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   682
  | prf_loose_bvar1 (prf % SOME t) k = prf_loose_bvar1 prf k orelse loose_bvar1 (t, k)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   683
  | prf_loose_bvar1 (_ % NONE) _ = true
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   684
  | prf_loose_bvar1 (AbsP (_, SOME t, prf)) k = loose_bvar1 (t, k) orelse prf_loose_bvar1 prf k
63857
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
   685
  | prf_loose_bvar1 (AbsP (_, NONE, _)) _ = true
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   686
  | prf_loose_bvar1 (Abst (_, _, prf)) k = prf_loose_bvar1 prf (k+1)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   687
  | prf_loose_bvar1 _ _ = false;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   688
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   689
fun prf_loose_Pbvar1 (PBound i) k = i = k
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   690
  | prf_loose_Pbvar1 (prf1 %% prf2) k = prf_loose_Pbvar1 prf1 k orelse prf_loose_Pbvar1 prf2 k
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   691
  | prf_loose_Pbvar1 (prf % _) k = prf_loose_Pbvar1 prf k
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   692
  | prf_loose_Pbvar1 (AbsP (_, _, prf)) k = prf_loose_Pbvar1 prf (k+1)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   693
  | prf_loose_Pbvar1 (Abst (_, _, prf)) k = prf_loose_Pbvar1 prf k
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   694
  | prf_loose_Pbvar1 _ _ = false;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   695
63857
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
   696
fun prf_add_loose_bnos plev _ (PBound i) (is, js) =
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   697
      if i < plev then (is, js) else (insert (op =) (i-plev) is, js)
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   698
  | prf_add_loose_bnos plev tlev (prf1 %% prf2) p =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   699
      prf_add_loose_bnos plev tlev prf2
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   700
        (prf_add_loose_bnos plev tlev prf1 p)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   701
  | prf_add_loose_bnos plev tlev (prf % opt) (is, js) =
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
   702
      prf_add_loose_bnos plev tlev prf
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
   703
        (case opt of
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   704
          NONE => (is, insert (op =) ~1 js)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   705
        | SOME t => (is, add_loose_bnos (t, tlev, js)))
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   706
  | prf_add_loose_bnos plev tlev (AbsP (_, opt, prf)) (is, js) =
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
   707
      prf_add_loose_bnos (plev+1) tlev prf
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
   708
        (case opt of
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   709
          NONE => (is, insert (op =) ~1 js)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   710
        | SOME t => (is, add_loose_bnos (t, tlev, js)))
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   711
  | prf_add_loose_bnos plev tlev (Abst (_, _, prf)) p =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   712
      prf_add_loose_bnos plev (tlev+1) prf p
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   713
  | prf_add_loose_bnos _ _ _ _ = ([], []);
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   714
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   715
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   716
(* substitutions *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   717
74228
c22e5bdb207d more scalable operations;
wenzelm
parents: 74220
diff changeset
   718
local
c22e5bdb207d more scalable operations;
wenzelm
parents: 74220
diff changeset
   719
c22e5bdb207d more scalable operations;
wenzelm
parents: 74220
diff changeset
   720
fun conflicting_tvarsT envT =
c22e5bdb207d more scalable operations;
wenzelm
parents: 74220
diff changeset
   721
  Term.fold_atyps
c22e5bdb207d more scalable operations;
wenzelm
parents: 74220
diff changeset
   722
    (fn T => fn instT =>
c22e5bdb207d more scalable operations;
wenzelm
parents: 74220
diff changeset
   723
      (case T of
c22e5bdb207d more scalable operations;
wenzelm
parents: 74220
diff changeset
   724
        TVar (v as (_, S)) =>
74266
612b7e0d6721 clarified signature;
wenzelm
parents: 74235
diff changeset
   725
          if TVars.defined instT v orelse can (Type.lookup envT) v then instT
612b7e0d6721 clarified signature;
wenzelm
parents: 74235
diff changeset
   726
          else TVars.add (v, Logic.dummy_tfree S) instT
74228
c22e5bdb207d more scalable operations;
wenzelm
parents: 74220
diff changeset
   727
      | _ => instT));
18316
4b62e0cb3aa8 Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents: 18030
diff changeset
   728
74228
c22e5bdb207d more scalable operations;
wenzelm
parents: 74220
diff changeset
   729
fun conflicting_tvars env =
c22e5bdb207d more scalable operations;
wenzelm
parents: 74220
diff changeset
   730
  Term.fold_aterms
c22e5bdb207d more scalable operations;
wenzelm
parents: 74220
diff changeset
   731
    (fn t => fn inst =>
c22e5bdb207d more scalable operations;
wenzelm
parents: 74220
diff changeset
   732
      (case t of
c22e5bdb207d more scalable operations;
wenzelm
parents: 74220
diff changeset
   733
        Var (v as (_, T)) =>
74266
612b7e0d6721 clarified signature;
wenzelm
parents: 74235
diff changeset
   734
          if Vars.defined inst v orelse can (Envir.lookup env) v then inst
612b7e0d6721 clarified signature;
wenzelm
parents: 74235
diff changeset
   735
          else Vars.add (v, Free ("dummy", T)) inst
74228
c22e5bdb207d more scalable operations;
wenzelm
parents: 74220
diff changeset
   736
      | _ => inst));
c22e5bdb207d more scalable operations;
wenzelm
parents: 74220
diff changeset
   737
c22e5bdb207d more scalable operations;
wenzelm
parents: 74220
diff changeset
   738
fun del_conflicting_tvars envT ty =
74266
612b7e0d6721 clarified signature;
wenzelm
parents: 74235
diff changeset
   739
  Term_Subst.instantiateT (TVars.build (conflicting_tvarsT envT ty)) ty;
74228
c22e5bdb207d more scalable operations;
wenzelm
parents: 74220
diff changeset
   740
c22e5bdb207d more scalable operations;
wenzelm
parents: 74220
diff changeset
   741
fun del_conflicting_vars env tm =
74220
c49134ee16c1 more scalable data structure (but: rarely used many arguments);
wenzelm
parents: 74200
diff changeset
   742
  let
74232
1091880266e5 clarified signature;
wenzelm
parents: 74228
diff changeset
   743
    val instT =
74266
612b7e0d6721 clarified signature;
wenzelm
parents: 74235
diff changeset
   744
      TVars.build (tm |> Term.fold_types (conflicting_tvarsT (Envir.type_env env)));
612b7e0d6721 clarified signature;
wenzelm
parents: 74235
diff changeset
   745
    val inst = Vars.build (tm |> conflicting_tvars env);
74228
c22e5bdb207d more scalable operations;
wenzelm
parents: 74220
diff changeset
   746
  in Term_Subst.instantiate (instT, inst) tm end;
c22e5bdb207d more scalable operations;
wenzelm
parents: 74220
diff changeset
   747
c22e5bdb207d more scalable operations;
wenzelm
parents: 74220
diff changeset
   748
in
18316
4b62e0cb3aa8 Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents: 18030
diff changeset
   749
79203
031ac0ef064d tuned names;
wenzelm
parents: 79202
diff changeset
   750
fun norm_proof envir =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   751
  let
79203
031ac0ef064d tuned names;
wenzelm
parents: 79202
diff changeset
   752
    val tyenv = Envir.type_env envir;
18316
4b62e0cb3aa8 Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents: 18030
diff changeset
   753
    fun msg s = warning ("type conflict in norm_proof:\n" ^ s);
79203
031ac0ef064d tuned names;
wenzelm
parents: 79202
diff changeset
   754
    fun norm_term_same t = Envir.norm_term_same envir t handle TYPE (s, _, _) =>
031ac0ef064d tuned names;
wenzelm
parents: 79202
diff changeset
   755
      (msg s; Envir.norm_term_same envir (del_conflicting_vars envir t));
031ac0ef064d tuned names;
wenzelm
parents: 79202
diff changeset
   756
    fun norm_type_same T = Envir.norm_type_same tyenv T handle TYPE (s, _, _) =>
031ac0ef064d tuned names;
wenzelm
parents: 79202
diff changeset
   757
      (msg s; Envir.norm_type_same tyenv (del_conflicting_tvars tyenv T));
031ac0ef064d tuned names;
wenzelm
parents: 79202
diff changeset
   758
    fun norm_types_same Ts = Envir.norm_types_same tyenv Ts handle TYPE (s, _, _) =>
031ac0ef064d tuned names;
wenzelm
parents: 79202
diff changeset
   759
      (msg s;  Envir.norm_types_same tyenv (map (del_conflicting_tvars tyenv) Ts));
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   760
79203
031ac0ef064d tuned names;
wenzelm
parents: 79202
diff changeset
   761
    fun norm (Abst (a, T, p)) =
031ac0ef064d tuned names;
wenzelm
parents: 79202
diff changeset
   762
          (Abst (a, Same.map_option norm_type_same T, Same.commit norm p)
031ac0ef064d tuned names;
wenzelm
parents: 79202
diff changeset
   763
            handle Same.SAME => Abst (a, T, norm p))
031ac0ef064d tuned names;
wenzelm
parents: 79202
diff changeset
   764
      | norm (AbsP (a, t, p)) =
031ac0ef064d tuned names;
wenzelm
parents: 79202
diff changeset
   765
          (AbsP (a, Same.map_option norm_term_same t, Same.commit norm p)
031ac0ef064d tuned names;
wenzelm
parents: 79202
diff changeset
   766
            handle Same.SAME => AbsP (a, t, norm p))
031ac0ef064d tuned names;
wenzelm
parents: 79202
diff changeset
   767
      | norm (p % t) =
031ac0ef064d tuned names;
wenzelm
parents: 79202
diff changeset
   768
          (norm p % Option.map (Same.commit norm_term_same) t
031ac0ef064d tuned names;
wenzelm
parents: 79202
diff changeset
   769
            handle Same.SAME => p % Same.map_option norm_term_same t)
031ac0ef064d tuned names;
wenzelm
parents: 79202
diff changeset
   770
      | norm (p %% q) =
031ac0ef064d tuned names;
wenzelm
parents: 79202
diff changeset
   771
          (norm p %% Same.commit norm q
031ac0ef064d tuned names;
wenzelm
parents: 79202
diff changeset
   772
            handle Same.SAME => p %% norm q)
031ac0ef064d tuned names;
wenzelm
parents: 79202
diff changeset
   773
      | norm (PAxm (a, prop, Ts)) =
031ac0ef064d tuned names;
wenzelm
parents: 79202
diff changeset
   774
          PAxm (a, prop, Same.map_option norm_types_same Ts)
71777
3875815f5967 clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
wenzelm
parents: 71533
diff changeset
   775
      | norm (PClass (T, c)) =
79174
wenzelm
parents: 79173
diff changeset
   776
          PClass (norm_type_same T, c)
79203
031ac0ef064d tuned names;
wenzelm
parents: 79202
diff changeset
   777
      | norm (Oracle (a, prop, Ts)) =
031ac0ef064d tuned names;
wenzelm
parents: 79202
diff changeset
   778
          Oracle (a, prop, Same.map_option norm_types_same Ts)
80590
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
   779
      | norm (PThm ({serial = i, command_pos = p, theory_name, thm_name, prop = t, types = Ts}, thm_body)) =
80295
8a9588ffc133 more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents: 80288
diff changeset
   780
          PThm (thm_header i p theory_name thm_name t
79174
wenzelm
parents: 79173
diff changeset
   781
            (Same.map_option norm_types_same Ts), thm_body)
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   782
      | norm _ = raise Same.SAME;
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   783
  in Same.commit norm end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   784
74228
c22e5bdb207d more scalable operations;
wenzelm
parents: 74220
diff changeset
   785
end;
c22e5bdb207d more scalable operations;
wenzelm
parents: 74220
diff changeset
   786
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   787
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   788
(* remove some types in proof term (to save space) *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   789
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   790
fun remove_types (Abs (s, _, t)) = Abs (s, dummyT, remove_types t)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   791
  | remove_types (t $ u) = remove_types t $ remove_types u
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   792
  | remove_types (Const (s, _)) = Const (s, dummyT)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   793
  | remove_types t = t;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   794
32032
a6a6e8031c14 tuned/modernized Envir operations;
wenzelm
parents: 32027
diff changeset
   795
fun remove_types_env (Envir.Envir {maxidx, tenv, tyenv}) =
39020
ac0f24f850c9 replaced Table.map' by Table.map
haftmann
parents: 37297
diff changeset
   796
  Envir.Envir {maxidx = maxidx, tenv = Vartab.map (K (apsnd remove_types)) tenv, tyenv = tyenv};
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   797
79164
23a611444c99 clarified signature;
wenzelm
parents: 79151
diff changeset
   798
fun norm_proof_remove_types env prf = norm_proof (remove_types_env env) prf;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   799
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   800
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   801
(* substitution of bound variables *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   802
79167
4fb0723dc5fc clarified signature;
wenzelm
parents: 79166
diff changeset
   803
fun subst_bounds args prf =
79202
626d00cb4d9c tuned -- eliminate clones;
wenzelm
parents: 79197
diff changeset
   804
  if null args then prf
626d00cb4d9c tuned -- eliminate clones;
wenzelm
parents: 79197
diff changeset
   805
  else
626d00cb4d9c tuned -- eliminate clones;
wenzelm
parents: 79197
diff changeset
   806
    let
626d00cb4d9c tuned -- eliminate clones;
wenzelm
parents: 79197
diff changeset
   807
      val term = Term.subst_bounds_same args;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   808
79202
626d00cb4d9c tuned -- eliminate clones;
wenzelm
parents: 79197
diff changeset
   809
      fun proof lev (AbsP (a, t, p)) =
79280
db8ac864ab03 tuned whitespace;
wenzelm
parents: 79279
diff changeset
   810
            (AbsP (a, Same.map_option (term lev) t, Same.commit (proof lev) p)
db8ac864ab03 tuned whitespace;
wenzelm
parents: 79279
diff changeset
   811
              handle Same.SAME => AbsP (a, t, proof lev p))
79202
626d00cb4d9c tuned -- eliminate clones;
wenzelm
parents: 79197
diff changeset
   812
        | proof lev (Abst (a, T, p)) = Abst (a, T, proof (lev + 1) p)
79280
db8ac864ab03 tuned whitespace;
wenzelm
parents: 79279
diff changeset
   813
        | proof lev (p %% q) =
db8ac864ab03 tuned whitespace;
wenzelm
parents: 79279
diff changeset
   814
            (proof lev p %% Same.commit (proof lev) q
db8ac864ab03 tuned whitespace;
wenzelm
parents: 79279
diff changeset
   815
              handle Same.SAME => p %% proof lev q)
db8ac864ab03 tuned whitespace;
wenzelm
parents: 79279
diff changeset
   816
        | proof lev (p % t) =
db8ac864ab03 tuned whitespace;
wenzelm
parents: 79279
diff changeset
   817
            (proof lev p % Option.map (Same.commit (term lev)) t
db8ac864ab03 tuned whitespace;
wenzelm
parents: 79279
diff changeset
   818
              handle Same.SAME => p % Same.map_option (term lev) t)
79202
626d00cb4d9c tuned -- eliminate clones;
wenzelm
parents: 79197
diff changeset
   819
        | proof _ _ = raise Same.SAME;
626d00cb4d9c tuned -- eliminate clones;
wenzelm
parents: 79197
diff changeset
   820
    in Same.commit (proof 0) prf end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   821
79167
4fb0723dc5fc clarified signature;
wenzelm
parents: 79166
diff changeset
   822
fun subst_pbounds args prf =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   823
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   824
    val n = length args;
79168
f8cf6e1daa7a tuned: more standard names;
wenzelm
parents: 79167
diff changeset
   825
    fun proof Plev tlev (PBound i) =
79282
wenzelm
parents: 79280
diff changeset
   826
          if i < Plev then raise Same.SAME    (*var is locally bound*)
79176
wenzelm
parents: 79175
diff changeset
   827
          else if i - Plev < n then incr_boundvars Plev tlev (nth args (i - Plev))
79282
wenzelm
parents: 79280
diff changeset
   828
          else PBound (i - n)  (*loose: change it*)
79169
46b621cf8aa7 tuned whitespace;
wenzelm
parents: 79168
diff changeset
   829
      | proof Plev tlev (AbsP (a, t, p)) = AbsP (a, t, proof (Plev + 1) tlev p)
46b621cf8aa7 tuned whitespace;
wenzelm
parents: 79168
diff changeset
   830
      | proof Plev tlev (Abst (a, T, p)) = Abst (a, T, proof Plev (tlev + 1) p)
79280
db8ac864ab03 tuned whitespace;
wenzelm
parents: 79279
diff changeset
   831
      | proof Plev tlev (p %% q) =
db8ac864ab03 tuned whitespace;
wenzelm
parents: 79279
diff changeset
   832
          (proof Plev tlev p %% Same.commit (proof Plev tlev) q
db8ac864ab03 tuned whitespace;
wenzelm
parents: 79279
diff changeset
   833
            handle Same.SAME => p %% proof Plev tlev q)
79168
f8cf6e1daa7a tuned: more standard names;
wenzelm
parents: 79167
diff changeset
   834
      | proof Plev tlev (p % t) = proof Plev tlev p % t
79169
46b621cf8aa7 tuned whitespace;
wenzelm
parents: 79168
diff changeset
   835
      | proof _ _ _ = raise Same.SAME;
79168
f8cf6e1daa7a tuned: more standard names;
wenzelm
parents: 79167
diff changeset
   836
  in if null args then prf else Same.commit (proof 0 0) prf end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   837
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   838
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   839
(* freezing and thawing of variables in proof terms *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   840
44101
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   841
local
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   842
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   843
fun frzT names =
44101
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   844
  map_type_tvar (fn (ixn, S) => TFree (the (AList.lookup (op =) names ixn), S));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   845
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   846
fun thawT names =
44101
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   847
  map_type_tfree (fn (a, S) =>
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   848
    (case AList.lookup (op =) names a of
79412
1c758cd8d5b2 minor performance tuning: proper Same.operation;
wenzelm
parents: 79411
diff changeset
   849
      NONE => raise Same.SAME
44101
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   850
    | SOME ixn => TVar (ixn, S)));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   851
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   852
fun freeze names names' (t $ u) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   853
      freeze names names' t $ freeze names names' u
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   854
  | freeze names names' (Abs (s, T, t)) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   855
      Abs (s, frzT names' T, freeze names names' t)
63857
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
   856
  | freeze _ names' (Const (s, T)) = Const (s, frzT names' T)
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
   857
  | freeze _ names' (Free (s, T)) = Free (s, frzT names' T)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   858
  | freeze names names' (Var (ixn, T)) =
44101
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   859
      Free (the (AList.lookup (op =) names ixn), frzT names' T)
63857
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
   860
  | freeze _ _ t = t;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   861
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   862
fun thaw names names' (t $ u) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   863
      thaw names names' t $ thaw names names' u
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   864
  | thaw names names' (Abs (s, T, t)) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   865
      Abs (s, thawT names' T, thaw names names' t)
63857
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
   866
  | thaw _ names' (Const (s, T)) = Const (s, thawT names' T)
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20853
diff changeset
   867
  | thaw names names' (Free (s, T)) =
44101
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   868
      let val T' = thawT names' T in
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   869
        (case AList.lookup (op =) names s of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   870
          NONE => Free (s, T')
44101
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   871
        | SOME ixn => Var (ixn, T'))
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   872
      end
63857
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
   873
  | thaw _ names' (Var (ixn, T)) = Var (ixn, thawT names' T)
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
   874
  | thaw _ _ t = t;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   875
44101
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   876
in
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   877
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   878
fun freeze_thaw_prf prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   879
  let
70843
cc987440d776 more compact XML: separate environment for free variables;
wenzelm
parents: 70839
diff changeset
   880
    val (fs, Tfs, vs, Tvs) = fold_proof_terms_types
20147
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   881
      (fn t => fn (fs, Tfs, vs, Tvs) =>
29261
7ee78cc8ef2c freeze_thaw: canonical Term.add_XXX operations;
wenzelm
parents: 28971
diff changeset
   882
         (Term.add_free_names t fs, Term.add_tfree_names t Tfs,
7ee78cc8ef2c freeze_thaw: canonical Term.add_XXX operations;
wenzelm
parents: 28971
diff changeset
   883
          Term.add_var_names t vs, Term.add_tvar_names t Tvs))
20147
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   884
      (fn T => fn (fs, Tfs, vs, Tvs) =>
29261
7ee78cc8ef2c freeze_thaw: canonical Term.add_XXX operations;
wenzelm
parents: 28971
diff changeset
   885
         (fs, Term.add_tfree_namesT T Tfs,
7ee78cc8ef2c freeze_thaw: canonical Term.add_XXX operations;
wenzelm
parents: 28971
diff changeset
   886
          vs, Term.add_tvar_namesT T Tvs))
20147
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   887
      prf ([], [], [], []);
29261
7ee78cc8ef2c freeze_thaw: canonical Term.add_XXX operations;
wenzelm
parents: 28971
diff changeset
   888
    val names = vs ~~ Name.variant_list fs (map fst vs);
20071
8f3e1ddb50e6 replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents: 20000
diff changeset
   889
    val names' = Tvs ~~ Name.variant_list Tfs (map fst Tvs);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   890
    val rnames = map swap names;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   891
    val rnames' = map swap names';
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   892
  in
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   893
    (map_proof_terms (freeze names names') (frzT names') prf,
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   894
     map_proof_terms (thaw rnames rnames') (thawT rnames'))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   895
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   896
44101
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   897
end;
202d2f56560c misc tuning and clarification;
wenzelm
parents: 44100
diff changeset
   898
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   899
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   900
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   901
(** inference rules **)
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   902
70824
7000868c6098 clarified modules;
wenzelm
parents: 70823
diff changeset
   903
(* trivial implication *)
7000868c6098 clarified modules;
wenzelm
parents: 70823
diff changeset
   904
7000868c6098 clarified modules;
wenzelm
parents: 70823
diff changeset
   905
val trivial_proof = AbsP ("H", NONE, PBound 0);
7000868c6098 clarified modules;
wenzelm
parents: 70823
diff changeset
   906
7000868c6098 clarified modules;
wenzelm
parents: 70823
diff changeset
   907
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   908
(* implication introduction *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   909
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
   910
fun gen_implies_intr_proof f h prf =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   911
  let
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   912
    fun abshyp i (Hyp t) = if h aconv t then PBound i else raise Same.SAME
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   913
      | abshyp i (Abst (s, T, prf)) = Abst (s, T, abshyp i prf)
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   914
      | abshyp i (AbsP (s, t, prf)) = AbsP (s, t, abshyp (i + 1) prf)
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   915
      | abshyp i (prf % t) = abshyp i prf % t
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   916
      | abshyp i (prf1 %% prf2) =
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   917
          (abshyp i prf1 %% abshyph i prf2
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   918
            handle Same.SAME => prf1 %% abshyp i prf2)
32019
827a8ebb3b2c use structure Same;
wenzelm
parents: 31977
diff changeset
   919
      | abshyp _ _ = raise Same.SAME
32024
a5e7c8e60c85 tuned map_proof_terms_option;
wenzelm
parents: 32019
diff changeset
   920
    and abshyph i prf = (abshyp i prf handle Same.SAME => prf);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   921
  in
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
   922
    AbsP ("H", f h, abshyph 0 prf)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   923
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   924
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
   925
val implies_intr_proof = gen_implies_intr_proof (K NONE);
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
   926
val implies_intr_proof' = gen_implies_intr_proof SOME;
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
   927
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   928
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   929
(* forall introduction *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   930
79197
ad98105148e5 clarified signature;
wenzelm
parents: 79196
diff changeset
   931
fun forall_intr_proof (a, v) opt_T prf = Abst (a, opt_T, abstract_over v prf);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   932
70814
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
   933
fun forall_intr_proof' v prf =
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
   934
  let val (a, T) = (case v of Var ((a, _), T) => (a, T) | Free (a, T) => (a, T))
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
   935
  in forall_intr_proof (a, v) (SOME T) prf end;
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
   936
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   937
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   938
(* varify *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   939
79135
db2dc7634d62 more zproofs;
wenzelm
parents: 79134
diff changeset
   940
fun varifyT_proof names prf =
79137
4e738f2a97a8 minor performance tuning;
wenzelm
parents: 79135
diff changeset
   941
  if null names then prf
4e738f2a97a8 minor performance tuning;
wenzelm
parents: 79135
diff changeset
   942
  else
4e738f2a97a8 minor performance tuning;
wenzelm
parents: 79135
diff changeset
   943
    let
4e738f2a97a8 minor performance tuning;
wenzelm
parents: 79135
diff changeset
   944
      val tab = TFrees.make names;
4e738f2a97a8 minor performance tuning;
wenzelm
parents: 79135
diff changeset
   945
      val typ =
79409
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79407
diff changeset
   946
        Term.map_atyps_same
79137
4e738f2a97a8 minor performance tuning;
wenzelm
parents: 79135
diff changeset
   947
          (fn TFree v =>
4e738f2a97a8 minor performance tuning;
wenzelm
parents: 79135
diff changeset
   948
              (case TFrees.lookup tab v of
4e738f2a97a8 minor performance tuning;
wenzelm
parents: 79135
diff changeset
   949
                NONE => raise Same.SAME
4e738f2a97a8 minor performance tuning;
wenzelm
parents: 79135
diff changeset
   950
              | SOME w => TVar w)
4e738f2a97a8 minor performance tuning;
wenzelm
parents: 79135
diff changeset
   951
            | _ => raise Same.SAME);
4e738f2a97a8 minor performance tuning;
wenzelm
parents: 79135
diff changeset
   952
    in Same.commit (map_proof_types_same typ) prf end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   953
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   954
79151
bf51996ba8c6 clarified modules;
wenzelm
parents: 79137
diff changeset
   955
(* freeze *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   956
36619
deadcd0ec431 renamed Proofterm.freezeT to Proofterm.legacy_freezeT (cf. 88756a5a92fc);
wenzelm
parents: 35851
diff changeset
   957
fun legacy_freezeT t prf =
79151
bf51996ba8c6 clarified modules;
wenzelm
parents: 79137
diff changeset
   958
  (case Type.legacy_freezeT t of
bf51996ba8c6 clarified modules;
wenzelm
parents: 79137
diff changeset
   959
    NONE => prf
bf51996ba8c6 clarified modules;
wenzelm
parents: 79137
diff changeset
   960
  | SOME f =>
79412
1c758cd8d5b2 minor performance tuning: proper Same.operation;
wenzelm
parents: 79411
diff changeset
   961
      let val frzT = map_type_tvar (Same.function f)
79151
bf51996ba8c6 clarified modules;
wenzelm
parents: 79137
diff changeset
   962
      in map_proof_terms (map_types frzT) frzT prf end);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   963
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   964
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   965
(* rotate assumptions *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   966
70822
22e2f5acc0b4 more accurate treatment of propositions within proof terms, but these are ultimately ignored for performance reasons;
wenzelm
parents: 70815
diff changeset
   967
fun rotate_proof Bs Bi' params asms m prf =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   968
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   969
    val i = length asms;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   970
    val j = length Bs;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   971
  in
70822
22e2f5acc0b4 more accurate treatment of propositions within proof terms, but these are ultimately ignored for performance reasons;
wenzelm
parents: 70815
diff changeset
   972
    mk_AbsP (Bs @ [Bi']) (proof_combP (prf, map PBound
22e2f5acc0b4 more accurate treatment of propositions within proof terms, but these are ultimately ignored for performance reasons;
wenzelm
parents: 70815
diff changeset
   973
      (j downto 1) @ [mk_Abst params (mk_AbsP asms
22e2f5acc0b4 more accurate treatment of propositions within proof terms, but these are ultimately ignored for performance reasons;
wenzelm
parents: 70815
diff changeset
   974
        (proof_combP (proof_combt (PBound i, map Bound ((length params - 1) downto 0)),
23178
07ba6b58b3d2 simplified/unified list fold;
wenzelm
parents: 22846
diff changeset
   975
          map PBound (((i-m-1) downto 0) @ ((i-1) downto (i-m))))))]))
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   976
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   977
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   978
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   979
(* permute premises *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   980
70822
22e2f5acc0b4 more accurate treatment of propositions within proof terms, but these are ultimately ignored for performance reasons;
wenzelm
parents: 70815
diff changeset
   981
fun permute_prems_proof prems' j k prf =
22e2f5acc0b4 more accurate treatment of propositions within proof terms, but these are ultimately ignored for performance reasons;
wenzelm
parents: 70815
diff changeset
   982
  let val n = length prems' in
22e2f5acc0b4 more accurate treatment of propositions within proof terms, but these are ultimately ignored for performance reasons;
wenzelm
parents: 70815
diff changeset
   983
    mk_AbsP prems'
22e2f5acc0b4 more accurate treatment of propositions within proof terms, but these are ultimately ignored for performance reasons;
wenzelm
parents: 70815
diff changeset
   984
      (proof_combP (prf, map PBound ((n-1 downto n-j) @ (k-1 downto 0) @ (n-j-1 downto k))))
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   985
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   986
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   987
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
   988
(* generalization *)
19908
f035261fb5b9 added generalize rule;
wenzelm
parents: 19502
diff changeset
   989
70827
730251503341 proper generalize_proof: schematic variables need to be explicit in the resulting proof term (for shrink/reconstruct operation);
wenzelm
parents: 70824
diff changeset
   990
fun generalize_proof (tfrees, frees) idx prop prf =
730251503341 proper generalize_proof: schematic variables need to be explicit in the resulting proof term (for shrink/reconstruct operation);
wenzelm
parents: 70824
diff changeset
   991
  let
730251503341 proper generalize_proof: schematic variables need to be explicit in the resulting proof term (for shrink/reconstruct operation);
wenzelm
parents: 70824
diff changeset
   992
    val gen =
74266
612b7e0d6721 clarified signature;
wenzelm
parents: 74235
diff changeset
   993
      if Names.is_empty frees then []
70827
730251503341 proper generalize_proof: schematic variables need to be explicit in the resulting proof term (for shrink/reconstruct operation);
wenzelm
parents: 70824
diff changeset
   994
      else
74266
612b7e0d6721 clarified signature;
wenzelm
parents: 74235
diff changeset
   995
        fold_aterms (fn Free (x, T) => Names.defined frees x ? insert (op =) (x, T) | _ => I)
612b7e0d6721 clarified signature;
wenzelm
parents: 74235
diff changeset
   996
          (Term_Subst.generalize (tfrees, Names.empty) idx prop) [];
70827
730251503341 proper generalize_proof: schematic variables need to be explicit in the resulting proof term (for shrink/reconstruct operation);
wenzelm
parents: 70824
diff changeset
   997
  in
730251503341 proper generalize_proof: schematic variables need to be explicit in the resulting proof term (for shrink/reconstruct operation);
wenzelm
parents: 70824
diff changeset
   998
    prf
730251503341 proper generalize_proof: schematic variables need to be explicit in the resulting proof term (for shrink/reconstruct operation);
wenzelm
parents: 70824
diff changeset
   999
    |> Same.commit (map_proof_terms_same
74266
612b7e0d6721 clarified signature;
wenzelm
parents: 74235
diff changeset
  1000
        (Term_Subst.generalize_same (tfrees, Names.empty) idx)
70827
730251503341 proper generalize_proof: schematic variables need to be explicit in the resulting proof term (for shrink/reconstruct operation);
wenzelm
parents: 70824
diff changeset
  1001
        (Term_Subst.generalizeT_same tfrees idx))
730251503341 proper generalize_proof: schematic variables need to be explicit in the resulting proof term (for shrink/reconstruct operation);
wenzelm
parents: 70824
diff changeset
  1002
    |> fold (fn (x, T) => forall_intr_proof (x, Free (x, T)) NONE) gen
730251503341 proper generalize_proof: schematic variables need to be explicit in the resulting proof term (for shrink/reconstruct operation);
wenzelm
parents: 70824
diff changeset
  1003
    |> fold_rev (fn (x, T) => fn prf' => prf' %> Var (Name.clean_index (x, idx), T)) gen
730251503341 proper generalize_proof: schematic variables need to be explicit in the resulting proof term (for shrink/reconstruct operation);
wenzelm
parents: 70824
diff changeset
  1004
  end;
19908
f035261fb5b9 added generalize rule;
wenzelm
parents: 19502
diff changeset
  1005
f035261fb5b9 added generalize rule;
wenzelm
parents: 19502
diff changeset
  1006
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
  1007
(* instantiation *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1008
20000
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
  1009
fun instantiate (instT, inst) =
36620
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36619
diff changeset
  1010
  Same.commit (map_proof_terms_same
74266
612b7e0d6721 clarified signature;
wenzelm
parents: 74235
diff changeset
  1011
    (Term_Subst.instantiate_same (instT, Vars.map (K remove_types) inst))
36620
e6bb250402b5 simplified/unified fundamental operations on types/terms/proofterms -- prefer Same.operation over "option" variant;
wenzelm
parents: 36619
diff changeset
  1012
    (Term_Subst.instantiateT_same instT));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1013
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1014
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
  1015
(* lifting *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1016
79227
a8db9ee24d5e clarified signature;
wenzelm
parents: 79225
diff changeset
  1017
fun lift_proof gprop inc prems prf =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1018
  let
79217
5073bbdfa2b8 misc tuning and clarification: more standard Same.commit discipline;
wenzelm
parents: 79215
diff changeset
  1019
    val typ = Logic.incr_tvar_same inc;
5073bbdfa2b8 misc tuning and clarification: more standard Same.commit discipline;
wenzelm
parents: 79215
diff changeset
  1020
    val typs = Same.map_option (Same.map typ);
5073bbdfa2b8 misc tuning and clarification: more standard Same.commit discipline;
wenzelm
parents: 79215
diff changeset
  1021
79233
f0e49c3957a9 minor performance tuning: more direct abstraction level;
wenzelm
parents: 79232
diff changeset
  1022
    fun term Ts lev =
f0e49c3957a9 minor performance tuning: more direct abstraction level;
wenzelm
parents: 79232
diff changeset
  1023
      Logic.incr_indexes_operation {fixed = [], Ts = Ts, inc = inc, level = lev};
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1024
79233
f0e49c3957a9 minor performance tuning: more direct abstraction level;
wenzelm
parents: 79232
diff changeset
  1025
    fun proof Ts lev (Abst (a, T, p)) =
f0e49c3957a9 minor performance tuning: more direct abstraction level;
wenzelm
parents: 79232
diff changeset
  1026
          (Abst (a, Same.map_option typ T, Same.commit (proof Ts (lev + 1)) p)
f0e49c3957a9 minor performance tuning: more direct abstraction level;
wenzelm
parents: 79232
diff changeset
  1027
            handle Same.SAME => Abst (a, T, proof Ts (lev + 1) p))
f0e49c3957a9 minor performance tuning: more direct abstraction level;
wenzelm
parents: 79232
diff changeset
  1028
      | proof Ts lev (AbsP (a, t, p)) =
f0e49c3957a9 minor performance tuning: more direct abstraction level;
wenzelm
parents: 79232
diff changeset
  1029
          (AbsP (a, Same.map_option (term Ts lev) t, Same.commit (proof Ts lev) p)
f0e49c3957a9 minor performance tuning: more direct abstraction level;
wenzelm
parents: 79232
diff changeset
  1030
            handle Same.SAME => AbsP (a, t, proof Ts lev p))
f0e49c3957a9 minor performance tuning: more direct abstraction level;
wenzelm
parents: 79232
diff changeset
  1031
      | proof Ts lev (p % t) =
f0e49c3957a9 minor performance tuning: more direct abstraction level;
wenzelm
parents: 79232
diff changeset
  1032
          (proof Ts lev p % Option.map (Same.commit (term Ts lev)) t
f0e49c3957a9 minor performance tuning: more direct abstraction level;
wenzelm
parents: 79232
diff changeset
  1033
            handle Same.SAME => p % Same.map_option (term Ts lev) t)
f0e49c3957a9 minor performance tuning: more direct abstraction level;
wenzelm
parents: 79232
diff changeset
  1034
      | proof Ts lev (p %% q) =
f0e49c3957a9 minor performance tuning: more direct abstraction level;
wenzelm
parents: 79232
diff changeset
  1035
          (proof Ts lev p %% Same.commit (proof Ts lev) q
f0e49c3957a9 minor performance tuning: more direct abstraction level;
wenzelm
parents: 79232
diff changeset
  1036
            handle Same.SAME => p %% proof Ts lev q)
79217
5073bbdfa2b8 misc tuning and clarification: more standard Same.commit discipline;
wenzelm
parents: 79215
diff changeset
  1037
      | proof _ _ (PAxm (a, prop, Ts)) = PAxm (a, prop, typs Ts)
5073bbdfa2b8 misc tuning and clarification: more standard Same.commit discipline;
wenzelm
parents: 79215
diff changeset
  1038
      | proof _ _ (PClass (T, c)) = PClass (typ T, c)
5073bbdfa2b8 misc tuning and clarification: more standard Same.commit discipline;
wenzelm
parents: 79215
diff changeset
  1039
      | proof _ _ (Oracle (a, prop, Ts)) = Oracle (a, prop, typs Ts)
80590
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
  1040
      | proof _ _ (PThm ({serial, command_pos, theory_name, thm_name, prop, types}, thm_body)) =
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
  1041
          PThm (thm_header serial command_pos theory_name thm_name prop (typs types), thm_body)
79217
5073bbdfa2b8 misc tuning and clarification: more standard Same.commit discipline;
wenzelm
parents: 79215
diff changeset
  1042
      | proof _ _ _ = raise Same.SAME;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1043
79227
a8db9ee24d5e clarified signature;
wenzelm
parents: 79225
diff changeset
  1044
    val k = length prems;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1045
79227
a8db9ee24d5e clarified signature;
wenzelm
parents: 79225
diff changeset
  1046
    fun mk_app b (i, j, p) =
a8db9ee24d5e clarified signature;
wenzelm
parents: 79225
diff changeset
  1047
      if b then (i - 1, j, p %% PBound i) else (i, j - 1, p %> Bound j);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1048
79233
f0e49c3957a9 minor performance tuning: more direct abstraction level;
wenzelm
parents: 79232
diff changeset
  1049
    fun lift Ts bs i j (Const ("Pure.imp", _) $ A $ B) =
f0e49c3957a9 minor performance tuning: more direct abstraction level;
wenzelm
parents: 79232
diff changeset
  1050
          AbsP ("H", NONE (*A*), lift Ts (true::bs) (i + 1) j B)
f0e49c3957a9 minor performance tuning: more direct abstraction level;
wenzelm
parents: 79232
diff changeset
  1051
      | lift Ts bs i j (Const ("Pure.all", _) $ Abs (a, T, t)) =
f0e49c3957a9 minor performance tuning: more direct abstraction level;
wenzelm
parents: 79232
diff changeset
  1052
          Abst (a, NONE (*T*), lift (T::Ts) (false::bs) i (j + 1) t)
f0e49c3957a9 minor performance tuning: more direct abstraction level;
wenzelm
parents: 79232
diff changeset
  1053
      | lift Ts bs i j _ =
f0e49c3957a9 minor performance tuning: more direct abstraction level;
wenzelm
parents: 79232
diff changeset
  1054
          proof_combP (Same.commit (proof (rev Ts) 0) prf,
79215
1089a1f47d0a tuned names;
wenzelm
parents: 79208
diff changeset
  1055
            map (fn k => (#3 (fold_rev mk_app bs (i - 1, j - 1, PBound k)))) (i + k - 1 downto i));
79227
a8db9ee24d5e clarified signature;
wenzelm
parents: 79225
diff changeset
  1056
  in mk_AbsP prems (lift [] [] 0 0 gprop) end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1057
32027
9dd548810ed1 tuned incr_indexes;
wenzelm
parents: 32024
diff changeset
  1058
fun incr_indexes i =
79232
99bc2dd45111 more general Logic.incr_indexes_operation;
wenzelm
parents: 79229
diff changeset
  1059
  Same.commit
99bc2dd45111 more general Logic.incr_indexes_operation;
wenzelm
parents: 79229
diff changeset
  1060
    (map_proof_terms_same
99bc2dd45111 more general Logic.incr_indexes_operation;
wenzelm
parents: 79229
diff changeset
  1061
      (Logic.incr_indexes_operation {fixed = [], Ts = [], inc = i, level = 0})
99bc2dd45111 more general Logic.incr_indexes_operation;
wenzelm
parents: 79229
diff changeset
  1062
      (Logic.incr_tvar_same i));
32027
9dd548810ed1 tuned incr_indexes;
wenzelm
parents: 32024
diff changeset
  1063
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1064
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
  1065
(* proof by assumption *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1066
79208
b7b231eceb62 tuned: avoid shadowing;
wenzelm
parents: 79203
diff changeset
  1067
fun mk_asm_prf C i m =
23296
25f28f9c28a3 Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents: 23178
diff changeset
  1068
  let
25f28f9c28a3 Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents: 23178
diff changeset
  1069
    fun imp_prf _ i 0 = PBound i
56245
84fc7dfa3cd4 more qualified names;
wenzelm
parents: 52696
diff changeset
  1070
      | imp_prf (Const ("Pure.imp", _) $ A $ B) i m = AbsP ("H", NONE (*A*), imp_prf B (i+1) (m-1))
23296
25f28f9c28a3 Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents: 23178
diff changeset
  1071
      | imp_prf _ i _ = PBound i;
56245
84fc7dfa3cd4 more qualified names;
wenzelm
parents: 52696
diff changeset
  1072
    fun all_prf (Const ("Pure.all", _) $ Abs (a, T, t)) = Abst (a, NONE (*T*), all_prf t)
23296
25f28f9c28a3 Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents: 23178
diff changeset
  1073
      | all_prf t = imp_prf t (~i) m
79208
b7b231eceb62 tuned: avoid shadowing;
wenzelm
parents: 79203
diff changeset
  1074
  in all_prf C end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1075
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1076
fun assumption_proof Bs Bi n prf =
70822
22e2f5acc0b4 more accurate treatment of propositions within proof terms, but these are ultimately ignored for performance reasons;
wenzelm
parents: 70815
diff changeset
  1077
  mk_AbsP Bs (proof_combP (prf, map PBound (length Bs - 1 downto 0) @ [mk_asm_prf Bi n ~1]));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1078
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1079
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
  1080
(* composition of object rule with proof state *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1081
56245
84fc7dfa3cd4 more qualified names;
wenzelm
parents: 52696
diff changeset
  1082
fun flatten_params_proof i j n (Const ("Pure.imp", _) $ A $ B, k) =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1083
      AbsP ("H", NONE (*A*), flatten_params_proof (i+1) j n (B, k))
56245
84fc7dfa3cd4 more qualified names;
wenzelm
parents: 52696
diff changeset
  1084
  | flatten_params_proof i j n (Const ("Pure.all", _) $ Abs (a, T, t), k) =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1085
      Abst (a, NONE (*T*), flatten_params_proof i (j+1) n (t, k))
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1086
  | flatten_params_proof i j n (_, k) = proof_combP (proof_combt (PBound (k+i),
19304
15f001295a7b remove (op =);
wenzelm
parents: 19222
diff changeset
  1087
      map Bound (j-1 downto 0)), map PBound (remove (op =) (i-n) (i-1 downto 0)));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1088
79241
a49bdb686545 clarified modules;
wenzelm
parents: 79240
diff changeset
  1089
fun bicompose_proof env smax flatten Bs As A oldAs n m rprf sprf =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1090
  let
79240
9cb8053d720e clarified signature;
wenzelm
parents: 79233
diff changeset
  1091
    val normt = Envir.norm_term env;
79241
a49bdb686545 clarified modules;
wenzelm
parents: 79240
diff changeset
  1092
    val normp = norm_proof_remove_types env;
79240
9cb8053d720e clarified signature;
wenzelm
parents: 79233
diff changeset
  1093
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1094
    val lb = length Bs;
70822
22e2f5acc0b4 more accurate treatment of propositions within proof terms, but these are ultimately ignored for performance reasons;
wenzelm
parents: 70815
diff changeset
  1095
    val la = length As;
79241
a49bdb686545 clarified modules;
wenzelm
parents: 79240
diff changeset
  1096
a49bdb686545 clarified modules;
wenzelm
parents: 79240
diff changeset
  1097
    fun proof p =
a49bdb686545 clarified modules;
wenzelm
parents: 79240
diff changeset
  1098
      mk_AbsP (map normt (Bs @ As)) (proof_combP (sprf,
a49bdb686545 clarified modules;
wenzelm
parents: 79240
diff changeset
  1099
        map PBound (lb + la - 1 downto la)) %%
a49bdb686545 clarified modules;
wenzelm
parents: 79240
diff changeset
  1100
          proof_combP (p, (if n>0 then [mk_asm_prf (the A) n m] else []) @
a49bdb686545 clarified modules;
wenzelm
parents: 79240
diff changeset
  1101
            map (if flatten then flatten_params_proof 0 0 n else PBound o snd)
a49bdb686545 clarified modules;
wenzelm
parents: 79240
diff changeset
  1102
              (oldAs ~~ (la - 1 downto 0))));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1103
  in
79241
a49bdb686545 clarified modules;
wenzelm
parents: 79240
diff changeset
  1104
    if Envir.is_empty env then proof rprf
a49bdb686545 clarified modules;
wenzelm
parents: 79240
diff changeset
  1105
    else if Envir.above env smax
a49bdb686545 clarified modules;
wenzelm
parents: 79240
diff changeset
  1106
    then proof (normp rprf)
a49bdb686545 clarified modules;
wenzelm
parents: 79240
diff changeset
  1107
    else normp (proof rprf)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1108
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1109
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1110
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
  1111
79404
cb19148c0b95 tuned comments;
wenzelm
parents: 79403
diff changeset
  1112
(** sort constraints within the logic **)
36621
2fd4e2c76636 proof terms for strip_shyps, based on the version by krauss/schropp with some notable differences:
wenzelm
parents: 36620
diff changeset
  1113
79405
f4fdf5eebcac pro-forma support for ZTerm.sorts_zproof;
wenzelm
parents: 79404
diff changeset
  1114
type sorts_proof = (class * class -> proof) * (string * class list list * class -> proof);
f4fdf5eebcac pro-forma support for ZTerm.sorts_zproof;
wenzelm
parents: 79404
diff changeset
  1115
f4fdf5eebcac pro-forma support for ZTerm.sorts_zproof;
wenzelm
parents: 79404
diff changeset
  1116
fun of_sort_proof algebra (classrel_proof, arity_proof) hyps =
70458
9e2173eb23eb more direct proofs for type classes;
wenzelm
parents: 70454
diff changeset
  1117
  Sorts.of_sort_derivation algebra
9e2173eb23eb more direct proofs for type classes;
wenzelm
parents: 70454
diff changeset
  1118
   {class_relation = fn _ => fn _ => fn (prf, c1) => fn c2 =>
9e2173eb23eb more direct proofs for type classes;
wenzelm
parents: 70454
diff changeset
  1119
      if c1 = c2 then prf else classrel_proof (c1, c2) %% prf,
9e2173eb23eb more direct proofs for type classes;
wenzelm
parents: 70454
diff changeset
  1120
    type_constructor = fn (a, _) => fn dom => fn c =>
36741
d65ed9d7275e added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents: 36740
diff changeset
  1121
      let val Ss = map (map snd) dom and prfs = maps (map fst) dom
70458
9e2173eb23eb more direct proofs for type classes;
wenzelm
parents: 70454
diff changeset
  1122
      in proof_combP (arity_proof (a, Ss, c), prfs) end,
36741
d65ed9d7275e added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents: 36740
diff changeset
  1123
    type_variable = fn typ => map (fn c => (hyps (typ, c), c)) (Type.sort_of_atyp typ)};
d65ed9d7275e added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents: 36740
diff changeset
  1124
79405
f4fdf5eebcac pro-forma support for ZTerm.sorts_zproof;
wenzelm
parents: 79404
diff changeset
  1125
fun unconstrainT_proof algebra sorts_proof (ucontext: Logic.unconstrain_context) =
79403
254b062ec54d tuned structure;
wenzelm
parents: 79400
diff changeset
  1126
  let
79407
c6c2e41cac1c tuned signature;
wenzelm
parents: 79406
diff changeset
  1127
    val typ = #typ_operation ucontext {strip_sorts = true};
c6c2e41cac1c tuned signature;
wenzelm
parents: 79406
diff changeset
  1128
    val typ_sort = #typ_operation ucontext {strip_sorts = false};
79403
254b062ec54d tuned structure;
wenzelm
parents: 79400
diff changeset
  1129
79406
wenzelm
parents: 79405
diff changeset
  1130
    fun hyps T =
wenzelm
parents: 79405
diff changeset
  1131
      (case AList.lookup (op =) (#constraints ucontext) T of
wenzelm
parents: 79405
diff changeset
  1132
        SOME t => Hyp t
wenzelm
parents: 79405
diff changeset
  1133
      | NONE => raise Fail "unconstrainT_proof: missing constraint");
wenzelm
parents: 79405
diff changeset
  1134
wenzelm
parents: 79405
diff changeset
  1135
    fun class (T, c) =
wenzelm
parents: 79405
diff changeset
  1136
      let val T' = Same.commit typ_sort T
wenzelm
parents: 79405
diff changeset
  1137
      in the_single (of_sort_proof algebra sorts_proof hyps (T', [c])) end;
79403
254b062ec54d tuned structure;
wenzelm
parents: 79400
diff changeset
  1138
  in
79409
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79407
diff changeset
  1139
    Same.commit (map_proof_same (Term.map_types_same typ) typ class)
79406
wenzelm
parents: 79405
diff changeset
  1140
    #> fold_rev (implies_intr_proof o #2) (#constraints ucontext)
79403
254b062ec54d tuned structure;
wenzelm
parents: 79400
diff changeset
  1141
  end;
254b062ec54d tuned structure;
wenzelm
parents: 79400
diff changeset
  1142
36741
d65ed9d7275e added of_sort_proof according to krauss/schropp, with slightly more direct canonical_instance;
wenzelm
parents: 36740
diff changeset
  1143
70420
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1144
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
  1145
(** axioms and theorems **)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1146
70948
5ed8c7e826a2 proper order of variables, independently of varify/unvarify state -- relevant for export of locale conclusions;
wenzelm
parents: 70916
diff changeset
  1147
val add_type_variables = (fold_types o fold_atyps) (insert (op =));
5ed8c7e826a2 proper order of variables, independently of varify/unvarify state -- relevant for export of locale conclusions;
wenzelm
parents: 70916
diff changeset
  1148
fun type_variables_of t = rev (add_type_variables t []);
70810
wenzelm
parents: 70809
diff changeset
  1149
70948
5ed8c7e826a2 proper order of variables, independently of varify/unvarify state -- relevant for export of locale conclusions;
wenzelm
parents: 70916
diff changeset
  1150
val add_variables = fold_aterms (fn a => (is_Var a orelse is_Free a) ? insert (op =) a);
5ed8c7e826a2 proper order of variables, independently of varify/unvarify state -- relevant for export of locale conclusions;
wenzelm
parents: 70916
diff changeset
  1151
fun variables_of t = rev (add_variables t []);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1152
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1153
fun test_args _ [] = true
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1154
  | test_args is (Bound i :: ts) =
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1155
      not (member (op =) is i) andalso test_args (i :: is) ts
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1156
  | test_args _ _ = false;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1157
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1158
fun is_fun (Type ("fun", _)) = true
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1159
  | is_fun (TVar _) = true
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1160
  | is_fun _ = false;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1161
74235
dbaed92fd8af tuned signature;
wenzelm
parents: 74234
diff changeset
  1162
fun vars_of t = map Var (build_rev (Term.add_vars t));
70948
5ed8c7e826a2 proper order of variables, independently of varify/unvarify state -- relevant for export of locale conclusions;
wenzelm
parents: 70916
diff changeset
  1163
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1164
fun add_funvars Ts (vs, t) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1165
  if is_fun (fastype_of1 (Ts, t)) then
33042
ddf1f03a9ad9 curried union as canonical list operation
haftmann
parents: 33038
diff changeset
  1166
    union (op =) vs (map_filter (fn Var (ixn, T) =>
33037
b22e44496dc2 replaced old_style infixes eq_set, subset, union, inter and variants by generic versions
haftmann
parents: 32810
diff changeset
  1167
      if is_fun T then SOME ixn else NONE | _ => NONE) (vars_of t))
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1168
  else vs;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1169
56245
84fc7dfa3cd4 more qualified names;
wenzelm
parents: 52696
diff changeset
  1170
fun add_npvars q p Ts (vs, Const ("Pure.imp", _) $ t $ u) =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1171
      add_npvars q p Ts (add_npvars q (not p) Ts (vs, t), u)
56245
84fc7dfa3cd4 more qualified names;
wenzelm
parents: 52696
diff changeset
  1172
  | add_npvars q p Ts (vs, Const ("Pure.all", Type (_, [Type (_, [T, _]), _])) $ t) =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1173
      add_npvars q p Ts (vs, if p andalso q then betapply (t, Var (("",0), T)) else t)
12041
27214c16ebe4 Fixed bug in function add_npvars.
berghofe
parents: 11999
diff changeset
  1174
  | add_npvars q p Ts (vs, Abs (_, T, t)) = add_npvars q p (T::Ts) (vs, t)
27214c16ebe4 Fixed bug in function add_npvars.
berghofe
parents: 11999
diff changeset
  1175
  | add_npvars _ _ Ts (vs, t) = add_npvars' Ts (vs, t)
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1176
and add_npvars' Ts (vs, t) =
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1177
  (case strip_comb t of
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1178
    (Var (ixn, _), ts) => if test_args [] ts then vs
17314
04e21a27c0ad introduces some modern-style AList operations
haftmann
parents: 17221
diff changeset
  1179
      else Library.foldl (add_npvars' Ts)
04e21a27c0ad introduces some modern-style AList operations
haftmann
parents: 17221
diff changeset
  1180
        (AList.update (op =) (ixn,
04e21a27c0ad introduces some modern-style AList operations
haftmann
parents: 17221
diff changeset
  1181
          Library.foldl (add_funvars Ts) ((these ooo AList.lookup) (op =) vs ixn, ts)) vs, ts)
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
  1182
  | (Abs (_, T, u), ts) => Library.foldl (add_npvars' (T::Ts)) (vs, u :: ts)
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
  1183
  | (_, ts) => Library.foldl (add_npvars' Ts) (vs, ts));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1184
56245
84fc7dfa3cd4 more qualified names;
wenzelm
parents: 52696
diff changeset
  1185
fun prop_vars (Const ("Pure.imp", _) $ P $ Q) = union (op =) (prop_vars P) (prop_vars Q)
84fc7dfa3cd4 more qualified names;
wenzelm
parents: 52696
diff changeset
  1186
  | prop_vars (Const ("Pure.all", _) $ Abs (_, _, t)) = prop_vars t
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1187
  | prop_vars t = (case strip_comb t of (Var (ixn, _), _) => [ixn] | _ => []);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1188
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1189
fun is_proj t =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1190
  let
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1191
    fun is_p i t =
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1192
      (case strip_comb t of
63857
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
  1193
        (Bound _, []) => false
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1194
      | (Bound j, ts) => j >= i orelse exists (is_p i) ts
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1195
      | (Abs (_, _, u), _) => is_p (i+1) u
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1196
      | (_, ts) => exists (is_p i) ts)
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1197
  in
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1198
    (case strip_abs_body t of
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1199
      Bound _ => true
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1200
    | t' => is_p 0 t')
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1201
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1202
70416
wenzelm
parents: 70415
diff changeset
  1203
fun prop_args prop =
wenzelm
parents: 70415
diff changeset
  1204
  let
wenzelm
parents: 70415
diff changeset
  1205
    val needed_vars =
wenzelm
parents: 70415
diff changeset
  1206
      union (op =) (Library.foldl (uncurry (union (op =)))
wenzelm
parents: 70415
diff changeset
  1207
        ([], map (uncurry (insert (op =))) (add_npvars true true [] ([], prop))))
wenzelm
parents: 70415
diff changeset
  1208
      (prop_vars prop);
70948
5ed8c7e826a2 proper order of variables, independently of varify/unvarify state -- relevant for export of locale conclusions;
wenzelm
parents: 70916
diff changeset
  1209
  in
5ed8c7e826a2 proper order of variables, independently of varify/unvarify state -- relevant for export of locale conclusions;
wenzelm
parents: 70916
diff changeset
  1210
    variables_of prop |> map
5ed8c7e826a2 proper order of variables, independently of varify/unvarify state -- relevant for export of locale conclusions;
wenzelm
parents: 70916
diff changeset
  1211
      (fn var as Var (ixn, _) => if member (op =) needed_vars ixn then SOME var else NONE
5ed8c7e826a2 proper order of variables, independently of varify/unvarify state -- relevant for export of locale conclusions;
wenzelm
parents: 70916
diff changeset
  1212
        | free => SOME free)
5ed8c7e826a2 proper order of variables, independently of varify/unvarify state -- relevant for export of locale conclusions;
wenzelm
parents: 70916
diff changeset
  1213
  end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1214
70835
2d991e01a671 proper treatment of axm_proof/oracle_proof like a closed proof constant, e.g. relevant for proof reconstruction of List.list.full_exhaustive_list.simps;
wenzelm
parents: 70834
diff changeset
  1215
fun const_proof mk name prop =
2d991e01a671 proper treatment of axm_proof/oracle_proof like a closed proof constant, e.g. relevant for proof reconstruction of List.list.full_exhaustive_list.simps;
wenzelm
parents: 70834
diff changeset
  1216
  let
2d991e01a671 proper treatment of axm_proof/oracle_proof like a closed proof constant, e.g. relevant for proof reconstruction of List.list.full_exhaustive_list.simps;
wenzelm
parents: 70834
diff changeset
  1217
    val args = prop_args prop;
77869
1156aa9db7f5 backout 4a174bea55e2;
wenzelm
parents: 77867
diff changeset
  1218
    val ({outer_constraints, ...}, prop1) = Logic.unconstrainT [] prop;
70835
2d991e01a671 proper treatment of axm_proof/oracle_proof like a closed proof constant, e.g. relevant for proof reconstruction of List.list.full_exhaustive_list.simps;
wenzelm
parents: 70834
diff changeset
  1219
    val head = mk (name, prop1, NONE);
71777
3875815f5967 clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
wenzelm
parents: 71533
diff changeset
  1220
  in proof_combP (proof_combt' (head, args), map PClass outer_constraints) end;
17017
fa8e32209734 - Tuned handling of oracles
berghofe
parents: 16983
diff changeset
  1221
79410
719563e4816a tuned signature;
wenzelm
parents: 79409
diff changeset
  1222
val axiom_proof = const_proof PAxm;
70835
2d991e01a671 proper treatment of axm_proof/oracle_proof like a closed proof constant, e.g. relevant for proof reconstruction of List.list.full_exhaustive_list.simps;
wenzelm
parents: 70834
diff changeset
  1223
val oracle_proof = const_proof Oracle;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1224
63623
1a38142e1172 tuned signature;
wenzelm
parents: 62897
diff changeset
  1225
val shrink_proof =
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1226
  let
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1227
    fun shrink ls lev (prf as Abst (a, T, body)) =
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1228
          let val (b, is, ch, body') = shrink ls (lev+1) body
51100
18daa3380ff7 discontinued home-made sharing for proof terms -- leave memory management to the Poly/ML RTS;
wenzelm
parents: 51047
diff changeset
  1229
          in (b, is, ch, if ch then Abst (a, T, body') else prf) end
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1230
      | shrink ls lev (prf as AbsP (a, t, body)) =
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1231
          let val (b, is, ch, body') = shrink (lev::ls) lev body
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19357
diff changeset
  1232
          in (b orelse member (op =) is 0, map_filter (fn 0 => NONE | i => SOME (i-1)) is,
51100
18daa3380ff7 discontinued home-made sharing for proof terms -- leave memory management to the Poly/ML RTS;
wenzelm
parents: 51047
diff changeset
  1233
            ch, if ch then AbsP (a, t, body') else prf)
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1234
          end
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1235
      | shrink ls lev prf =
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1236
          let val (is, ch, _, prf') = shrink' ls lev [] [] prf
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1237
          in (false, is, ch, prf') end
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1238
    and shrink' ls lev ts prfs (prf as prf1 %% prf2) =
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1239
          let
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1240
            val p as (_, is', ch', prf') = shrink ls lev prf2;
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1241
            val (is, ch, ts', prf'') = shrink' ls lev ts (p::prfs) prf1
33042
ddf1f03a9ad9 curried union as canonical list operation
haftmann
parents: 33038
diff changeset
  1242
          in (union (op =) is is', ch orelse ch', ts',
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1243
              if ch orelse ch' then prf'' %% prf' else prf)
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1244
          end
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1245
      | shrink' ls lev ts prfs (prf as prf1 % t) =
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1246
          let val (is, ch, (ch', t')::ts', prf') = shrink' ls lev (t::ts) prfs prf1
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1247
          in (is, ch orelse ch', ts',
51100
18daa3380ff7 discontinued home-made sharing for proof terms -- leave memory management to the Poly/ML RTS;
wenzelm
parents: 51047
diff changeset
  1248
              if ch orelse ch' then prf' % t' else prf) end
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1249
      | shrink' ls lev ts prfs (prf as PBound i) =
30146
a77fc0209723 eliminated NJ's List.nth;
wenzelm
parents: 29642
diff changeset
  1250
          (if exists (fn SOME (Bound j) => lev-j <= nth ls i | _ => true) ts
18928
042608ffa2ec subsituted gen_duplicates / has_duplicates for duplicates whenever appropriate
haftmann
parents: 18485
diff changeset
  1251
             orelse has_duplicates (op =)
042608ffa2ec subsituted gen_duplicates / has_duplicates for duplicates whenever appropriate
haftmann
parents: 18485
diff changeset
  1252
               (Library.foldl (fn (js, SOME (Bound j)) => j :: js | (js, _) => js) ([], ts))
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1253
             orelse exists #1 prfs then [i] else [], false, map (pair false) ts, prf)
63857
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
  1254
      | shrink' _ _ ts _ (Hyp t) = ([], false, map (pair false) ts, Hyp t)
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
  1255
      | shrink' _ _ ts _ (prf as MinProof) = ([], false, map (pair false) ts, prf)
71777
3875815f5967 clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
wenzelm
parents: 71533
diff changeset
  1256
      | shrink' _ _ ts _ (prf as PClass _) = ([], false, map (pair false) ts, prf)
63857
0883c1cc655c tuned -- fewer warnings;
wenzelm
parents: 63623
diff changeset
  1257
      | shrink' _ _ ts prfs prf =
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1258
          let
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1259
            val prop =
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1260
              (case prf of
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1261
                PAxm (_, prop, _) => prop
70834
614ca81fa28e clarified oracle_proof;
wenzelm
parents: 70833
diff changeset
  1262
              | Oracle (_, prop, _) => prop
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
  1263
              | PThm ({prop, ...}, _) => prop
36879
201a4afd8533 raise Fail uniformly for proofterm errors, which appear to be rather low-level;
wenzelm
parents: 36878
diff changeset
  1264
              | _ => raise Fail "shrink: proof not in normal form");
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1265
            val vs = vars_of prop;
19012
wenzelm
parents: 18928
diff changeset
  1266
            val (ts', ts'') = chop (length vs) ts;
33957
e9afca2118d4 normalized uncurry take/drop
haftmann
parents: 33955
diff changeset
  1267
            val insts = take (length ts') (map (fst o dest_Var) vs) ~~ ts';
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1268
            val nvs = Library.foldl (fn (ixns', (ixn, ixns)) =>
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1269
              insert (op =) ixn
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1270
                (case AList.lookup (op =) insts ixn of
33042
ddf1f03a9ad9 curried union as canonical list operation
haftmann
parents: 33038
diff changeset
  1271
                  SOME (SOME t) => if is_proj t then union (op =) ixns ixns' else ixns'
ddf1f03a9ad9 curried union as canonical list operation
haftmann
parents: 33038
diff changeset
  1272
                | _ => union (op =) ixns ixns'))
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1273
                  (needed prop ts'' prfs, add_npvars false true [] ([], prop));
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1274
            val insts' = map
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1275
              (fn (ixn, x as SOME _) => if member (op =) nvs ixn then (false, x) else (true, NONE)
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1276
                | (_, x) => (false, x)) insts
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1277
          in ([], false, insts' @ map (pair false) ts'', prf) end
56245
84fc7dfa3cd4 more qualified names;
wenzelm
parents: 52696
diff changeset
  1278
    and needed (Const ("Pure.imp", _) $ t $ u) ts ((b, _, _, _)::prfs) =
33042
ddf1f03a9ad9 curried union as canonical list operation
haftmann
parents: 33038
diff changeset
  1279
          union (op =) (if b then map (fst o dest_Var) (vars_of t) else []) (needed u ts prfs)
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1280
      | needed (Var (ixn, _)) (_::_) _ = [ixn]
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1281
      | needed _ _ _ = [];
63623
1a38142e1172 tuned signature;
wenzelm
parents: 62897
diff changeset
  1282
  in fn prf => #4 (shrink [] 0 prf) end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1283
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1284
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
  1285
70420
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1286
(** axioms for equality **)
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1287
79122
wenzelm
parents: 79120
diff changeset
  1288
local val thy = Sign.local_path (Context.the_global_context ()) in
wenzelm
parents: 79120
diff changeset
  1289
70420
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1290
val [reflexive_axm, symmetric_axm, transitive_axm, equal_intr_axm,
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1291
  equal_elim_axm, abstract_rule_axm, combination_axm] =
79122
wenzelm
parents: 79120
diff changeset
  1292
    map (fn (b, t) => PAxm (Sign.full_name thy b, Logic.varify_global t, NONE))
wenzelm
parents: 79120
diff changeset
  1293
      Theory.equality_axioms;
wenzelm
parents: 79120
diff changeset
  1294
wenzelm
parents: 79120
diff changeset
  1295
end;
70420
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1296
70814
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
  1297
val reflexive_proof = reflexive_axm % NONE;
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
  1298
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
  1299
val is_reflexive_proof = fn PAxm ("Pure.reflexive", _, _) % _ => true | _ => false;
70420
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1300
70814
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
  1301
fun symmetric_proof prf =
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
  1302
  if is_reflexive_proof prf then prf
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
  1303
  else symmetric_axm % NONE % NONE %% prf;
70420
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1304
70814
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
  1305
fun transitive_proof U u prf1 prf2 =
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
  1306
  if is_reflexive_proof prf1 then prf2
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
  1307
  else if is_reflexive_proof prf2 then prf1
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
  1308
  else if U = propT then transitive_axm % NONE % SOME (remove_types u) % NONE %% prf1 %% prf2
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
  1309
  else transitive_axm % NONE % NONE % NONE %% prf1 %% prf2;
70420
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1310
70814
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
  1311
fun equal_intr_proof A B prf1 prf2 =
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
  1312
  equal_intr_axm %> remove_types A %> remove_types B %% prf1 %% prf2;
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
  1313
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
  1314
fun equal_elim_proof A B prf1 prf2 =
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
  1315
  equal_elim_axm %> remove_types A %> remove_types B %% prf1 %% prf2;
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
  1316
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
  1317
fun abstract_rule_proof (a, x) prf =
a6644dfe8e26 misc tuning and clarification;
wenzelm
parents: 70811
diff changeset
  1318
  abstract_rule_axm % NONE % NONE %% forall_intr_proof (a, x) NONE prf;
70420
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1319
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1320
fun check_comb (PAxm ("Pure.combination", _, _) % f % _ % _ % _ %% prf %% _) =
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1321
      is_some f orelse check_comb prf
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1322
  | check_comb (PAxm ("Pure.transitive", _, _) % _ % _ % _ %% prf1 %% prf2) =
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1323
      check_comb prf1 andalso check_comb prf2
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1324
  | check_comb (PAxm ("Pure.symmetric", _, _) % _ % _ %% prf) = check_comb prf
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1325
  | check_comb _ = false;
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1326
70908
3828a57e537d tuned signature;
wenzelm
parents: 70898
diff changeset
  1327
fun combination_proof f g t u prf1 prf2 =
70420
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1328
  let
79123
wenzelm
parents: 79122
diff changeset
  1329
    val f' = Envir.beta_norm f;
wenzelm
parents: 79122
diff changeset
  1330
    val g' = Envir.beta_norm g;
wenzelm
parents: 79122
diff changeset
  1331
    val ax =
wenzelm
parents: 79122
diff changeset
  1332
      if check_comb prf1 then combination_axm % NONE % NONE
wenzelm
parents: 79122
diff changeset
  1333
      else if is_reflexive_proof prf1 then combination_axm %> remove_types f' % NONE
wenzelm
parents: 79122
diff changeset
  1334
      else combination_axm %> remove_types f' %> remove_types g'
wenzelm
parents: 79122
diff changeset
  1335
    val t' =
79441
eb142693255f clarified signature;
wenzelm
parents: 79440
diff changeset
  1336
      (case Term.head_of f' of
70888
9ff9559f1ee2 more informative combination_proof, e.g. relevant for proper type inference in HOL.Product_Type (with export_proofs);
wenzelm
parents: 70887
diff changeset
  1337
        Abs _ => SOME (remove_types t)
9ff9559f1ee2 more informative combination_proof, e.g. relevant for proper type inference in HOL.Product_Type (with export_proofs);
wenzelm
parents: 70887
diff changeset
  1338
      | Var _ => SOME (remove_types t)
79123
wenzelm
parents: 79122
diff changeset
  1339
      | _ => NONE);
wenzelm
parents: 79122
diff changeset
  1340
    val u' =
79441
eb142693255f clarified signature;
wenzelm
parents: 79440
diff changeset
  1341
      (case Term.head_of g' of
70888
9ff9559f1ee2 more informative combination_proof, e.g. relevant for proper type inference in HOL.Product_Type (with export_proofs);
wenzelm
parents: 70887
diff changeset
  1342
        Abs _ => SOME (remove_types u)
9ff9559f1ee2 more informative combination_proof, e.g. relevant for proper type inference in HOL.Product_Type (with export_proofs);
wenzelm
parents: 70887
diff changeset
  1343
      | Var _ => SOME (remove_types u)
79123
wenzelm
parents: 79122
diff changeset
  1344
      | _ => NONE);
wenzelm
parents: 79122
diff changeset
  1345
  in ax % t' % u' %% prf1 %% prf2 end;
70420
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1346
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1347
328573dd886f tuned -- reorder sections;
wenzelm
parents: 70419
diff changeset
  1348
70399
ac570c179ee9 tuned comments;
wenzelm
parents: 70398
diff changeset
  1349
(** rewriting on proof terms **)
ac570c179ee9 tuned comments;
wenzelm
parents: 70398
diff changeset
  1350
ac570c179ee9 tuned comments;
wenzelm
parents: 70398
diff changeset
  1351
(* simple first order matching functions for terms and proofs (see pattern.ML) *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1352
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1353
exception PMatch;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1354
33317
b4534348b8fd standardized filter/filter_out;
wenzelm
parents: 33042
diff changeset
  1355
fun flt (i: int) = filter (fn n => n < i);
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1356
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1357
fun fomatch Ts tymatch j instsp p =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1358
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1359
    fun mtch (instsp as (tyinsts, insts)) = fn
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1360
        (Var (ixn, T), t)  =>
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1361
          if j>0 andalso not (null (flt j (loose_bnos t)))
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1362
          then raise PMatch
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1363
          else (tymatch (tyinsts, fn () => (T, fastype_of1 (Ts, t))),
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1364
            (ixn, t) :: insts)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1365
      | (Free (a, T), Free (b, U)) =>
20147
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
  1366
          if a=b then (tymatch (tyinsts, K (T, U)), insts) else raise PMatch
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1367
      | (Const (a, T), Const (b, U))  =>
20147
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
  1368
          if a=b then (tymatch (tyinsts, K (T, U)), insts) else raise PMatch
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1369
      | (f $ t, g $ u) => mtch (mtch instsp (f, g)) (t, u)
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1370
      | (Bound i, Bound j) => if i=j then instsp else raise PMatch
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1371
      | _ => raise PMatch
59058
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 56245
diff changeset
  1372
  in mtch instsp (apply2 Envir.beta_eta_contract p) end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1373
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1374
fun match_proof Ts tymatch =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1375
  let
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1376
    fun optmatch _ inst (NONE, _) = inst
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1377
      | optmatch _ _ (SOME _, NONE) = raise PMatch
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1378
      | optmatch mtch inst (SOME x, SOME y) = mtch inst (x, y)
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1379
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1380
    fun matcht Ts j (pinst, tinst) (t, u) =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1381
      (pinst, fomatch Ts tymatch j tinst (t, Envir.beta_norm u));
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1382
    fun matchT (pinst, (tyinsts, insts)) p =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1383
      (pinst, (tymatch (tyinsts, K p), insts));
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
  1384
    fun matchTs inst (Ts, Us) = Library.foldl (uncurry matchT) (inst, Ts ~~ Us);
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1385
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1386
    fun mtch Ts i j (pinst, tinst) (Hyp (Var (ixn, _)), prf) =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1387
          if i = 0 andalso j = 0 then ((ixn, prf) :: pinst, tinst)
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1388
          else
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1389
            (case apfst (flt i) (apsnd (flt j) (prf_add_loose_bnos 0 0 prf ([], []))) of
79175
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
  1390
              ([], []) => ((ixn, incr_boundvars (~i) (~j) prf) :: pinst, tinst)
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1391
            | ([], _) =>
79175
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
  1392
                if j = 0 then ((ixn, incr_boundvars (~i) (~j) prf) :: pinst, tinst)
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1393
                else raise PMatch
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1394
            | _ => raise PMatch)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1395
      | mtch Ts i j inst (prf1 % opt1, prf2 % opt2) =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1396
          optmatch (matcht Ts j) (mtch Ts i j inst (prf1, prf2)) (opt1, opt2)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1397
      | mtch Ts i j inst (prf1 %% prf2, prf1' %% prf2') =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1398
          mtch Ts i j (mtch Ts i j inst (prf1, prf1')) (prf2, prf2')
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1399
      | mtch Ts i j inst (Abst (_, opT, prf1), Abst (_, opU, prf2)) =
18485
5959295f82d3 bicompose_proof: no_flatten;
wenzelm
parents: 18316
diff changeset
  1400
          mtch (the_default dummyT opU :: Ts) i (j+1)
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1401
            (optmatch matchT inst (opT, opU)) (prf1, prf2)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1402
      | mtch Ts i j inst (prf1, Abst (_, opU, prf2)) =
18485
5959295f82d3 bicompose_proof: no_flatten;
wenzelm
parents: 18316
diff changeset
  1403
          mtch (the_default dummyT opU :: Ts) i (j+1) inst
79175
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
  1404
            (incr_boundvars 0 1 prf1 %> Bound 0, prf2)
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1405
      | mtch Ts i j inst (AbsP (_, opt, prf1), AbsP (_, opu, prf2)) =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1406
          mtch Ts (i+1) j (optmatch (matcht Ts j) inst (opt, opu)) (prf1, prf2)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1407
      | mtch Ts i j inst (prf1, AbsP (_, _, prf2)) =
79175
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
  1408
          mtch Ts (i+1) j inst (incr_boundvars 1 0 prf1 %% PBound 0, prf2)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1409
      | mtch Ts i j inst (PAxm (s1, _, opTs), PAxm (s2, _, opUs)) =
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1410
          if s1 = s2 then optmatch matchTs inst (opTs, opUs)
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1411
          else raise PMatch
71777
3875815f5967 clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
wenzelm
parents: 71533
diff changeset
  1412
      | mtch Ts i j inst (PClass (T1, c1), PClass (T2, c2)) =
31903
c5221dbc40f6 added pro-forma proof constructor Inclass;
wenzelm
parents: 30716
diff changeset
  1413
          if c1 = c2 then matchT inst (T1, T2)
c5221dbc40f6 added pro-forma proof constructor Inclass;
wenzelm
parents: 30716
diff changeset
  1414
          else raise PMatch
70412
64ead6de6212 defer rew_proof on unnamed PThm node as open_proof operation: significant performance improvement;
wenzelm
parents: 70409
diff changeset
  1415
      | mtch Ts i j inst
80295
8a9588ffc133 more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents: 80288
diff changeset
  1416
            (PThm ({thm_name = name1, prop = prop1, types = types1, ...}, _),
8a9588ffc133 more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents: 80288
diff changeset
  1417
              PThm ({thm_name = name2, prop = prop2, types = types2, ...}, _)) =
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
  1418
          if name1 = name2 andalso prop1 = prop2
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
  1419
          then optmatch matchTs inst (types1, types2)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1420
          else raise PMatch
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1421
      | mtch _ _ _ inst (PBound i, PBound j) = if i = j then inst else raise PMatch
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1422
      | mtch _ _ _ _ _ = raise PMatch
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1423
  in mtch Ts 0 0 end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1424
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1425
fun prf_subst (pinst, (tyinsts, insts)) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1426
  let
32049
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1427
    val substT = Envir.subst_type_same tyinsts;
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1428
    val substTs = Same.map substT;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1429
32049
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1430
    fun subst' lev (Var (xi, _)) =
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1431
        (case AList.lookup (op =) insts xi of
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1432
          NONE => raise Same.SAME
79175
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
  1433
        | SOME u => Term.incr_boundvars lev u)
32049
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1434
      | subst' _ (Const (s, T)) = Const (s, substT T)
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1435
      | subst' _ (Free (s, T)) = Free (s, substT T)
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1436
      | subst' lev (Abs (a, T, body)) =
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1437
          (Abs (a, substT T, Same.commit (subst' (lev + 1)) body)
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1438
            handle Same.SAME => Abs (a, T, subst' (lev + 1) body))
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1439
      | subst' lev (f $ t) =
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1440
          (subst' lev f $ Same.commit (subst' lev) t
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1441
            handle Same.SAME => f $ subst' lev t)
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1442
      | subst' _ _ = raise Same.SAME;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1443
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1444
    fun subst plev tlev (AbsP (a, t, body)) =
32049
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1445
          (AbsP (a, Same.map_option (subst' tlev) t, Same.commit (subst (plev + 1) tlev) body)
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1446
            handle Same.SAME => AbsP (a, t, subst (plev + 1) tlev body))
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1447
      | subst plev tlev (Abst (a, T, body)) =
32049
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1448
          (Abst (a, Same.map_option substT T, Same.commit (subst plev (tlev + 1)) body)
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1449
            handle Same.SAME => Abst (a, T, subst plev (tlev + 1) body))
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1450
      | subst plev tlev (prf %% prf') =
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1451
          (subst plev tlev prf %% Same.commit (subst plev tlev) prf'
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1452
            handle Same.SAME => prf %% subst plev tlev prf')
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1453
      | subst plev tlev (prf % t) =
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1454
          (subst plev tlev prf % Same.commit (Same.map_option (subst' tlev)) t
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1455
            handle Same.SAME => prf % Same.map_option (subst' tlev) t)
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1456
      | subst plev tlev (Hyp (Var (xi, _))) =
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1457
          (case AList.lookup (op =) pinst xi of
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1458
            NONE => raise Same.SAME
79175
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
  1459
          | SOME prf' => incr_boundvars plev tlev prf')
32049
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1460
      | subst _ _ (PAxm (id, prop, Ts)) = PAxm (id, prop, Same.map_option substTs Ts)
71777
3875815f5967 clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
wenzelm
parents: 71533
diff changeset
  1461
      | subst _ _ (PClass (T, c)) = PClass (substT T, c)
32049
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1462
      | subst _ _ (Oracle (id, prop, Ts)) = Oracle (id, prop, Same.map_option substTs Ts)
80590
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
  1463
      | subst _ _ (PThm ({serial = i, command_pos = p, theory_name, thm_name, prop, types}, thm_body)) =
80295
8a9588ffc133 more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents: 80288
diff changeset
  1464
          PThm (thm_header i p theory_name thm_name prop (Same.map_option substTs types), thm_body)
32049
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1465
      | subst _ _ _ = raise Same.SAME;
d6065a237059 tuned prf_subst: use structure Same;
wenzelm
parents: 32035
diff changeset
  1466
  in fn t => subst 0 0 t handle Same.SAME => t end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1467
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20853
diff changeset
  1468
(*A fast unification filter: true unless the two terms cannot be unified.
12871
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1469
  Terms must be NORMAL.  Treats all Vars as distinct. *)
79112
fd9de06c0ecf clarified signature: follow Term.could_unify;
wenzelm
parents: 78764
diff changeset
  1470
fun could_unify (prf1, prf2) =
12871
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1471
  let
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1472
    fun matchrands (prf1 %% prf2) (prf1' %% prf2') =
79112
fd9de06c0ecf clarified signature: follow Term.could_unify;
wenzelm
parents: 78764
diff changeset
  1473
          could_unify (prf2, prf2') andalso matchrands prf1 prf1'
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1474
      | matchrands (prf % SOME t) (prf' % SOME t') =
12871
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1475
          Term.could_unify (t, t') andalso matchrands prf prf'
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1476
      | matchrands (prf % _) (prf' % _) = matchrands prf prf'
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1477
      | matchrands _ _ = true
79441
eb142693255f clarified signature;
wenzelm
parents: 79440
diff changeset
  1478
  in case (any_head_of prf1, any_head_of prf2) of
12871
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1479
        (_, Hyp (Var _)) => true
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1480
      | (Hyp (Var _), _) => true
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1481
      | (PAxm (a, _, _), PAxm (b, _, _)) => a = b andalso matchrands prf1 prf2
71777
3875815f5967 clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
wenzelm
parents: 71533
diff changeset
  1482
      | (PClass (_, c), PClass (_, d)) => c = d andalso matchrands prf1 prf2
80295
8a9588ffc133 more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents: 80288
diff changeset
  1483
      | (PThm ({thm_name = a, prop = propa, ...}, _), PThm ({thm_name = b, prop = propb, ...}, _)) =>
12871
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1484
          a = b andalso propa = propb andalso matchrands prf1 prf2
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1485
      | (PBound i, PBound j) => i = j andalso matchrands prf1 prf2
12871
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1486
      | (AbsP _, _) =>  true   (*because of possible eta equality*)
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1487
      | (Abst _, _) =>  true
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1488
      | (_, AbsP _) =>  true
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1489
      | (_, Abst _) =>  true
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1490
      | _ => false
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1491
  end;
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1492
28329
e6a5fa9f1e41 added conditional add_oracles, keep oracles_of_proof private;
wenzelm
parents: 28319
diff changeset
  1493
70399
ac570c179ee9 tuned comments;
wenzelm
parents: 70398
diff changeset
  1494
(* rewrite proof *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1495
33722
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 33522
diff changeset
  1496
val no_skel = PBound 0;
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 33522
diff changeset
  1497
val normal_skel = Hyp (Var ((Name.uu, 0), propT));
13102
b6f8aae5f152 Added skeletons to speed up rewriting on proof terms.
berghofe
parents: 12923
diff changeset
  1498
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1499
fun rewrite_prf tymatch (rules, procs) prf =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1500
  let
79167
4fb0723dc5fc clarified signature;
wenzelm
parents: 79166
diff changeset
  1501
    fun rew _ _ (Abst (_, _, body) % SOME t) = SOME (subst_bounds [t] body, no_skel)
4fb0723dc5fc clarified signature;
wenzelm
parents: 79166
diff changeset
  1502
      | rew _ _ (AbsP (_, _, body) %% prf) = SOME (subst_pbounds [prf] body, no_skel)
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1503
      | rew Ts hs prf =
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1504
          (case get_first (fn r => r Ts hs prf) procs of
33722
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 33522
diff changeset
  1505
            NONE => get_first (fn (prf1, prf2) => SOME (prf_subst
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 33522
diff changeset
  1506
              (match_proof Ts tymatch ([], (Vartab.empty, [])) (prf1, prf)) prf2, prf2)
79112
fd9de06c0ecf clarified signature: follow Term.could_unify;
wenzelm
parents: 78764
diff changeset
  1507
                 handle PMatch => NONE) (filter (fn (prf', _) => could_unify (prf, prf')) rules)
33722
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 33522
diff changeset
  1508
          | some => some);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1509
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1510
    fun rew0 Ts hs (prf as AbsP (_, _, prf' %% PBound 0)) =
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1511
          if prf_loose_Pbvar1 prf' 0 then rew Ts hs prf
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1512
          else
79175
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
  1513
            let val prf'' = incr_boundvars (~1) 0 prf'
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1514
            in SOME (the_default (prf'', no_skel) (rew Ts hs prf'')) end
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1515
      | rew0 Ts hs (prf as Abst (_, _, prf' % SOME (Bound 0))) =
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1516
          if prf_loose_bvar1 prf' 0 then rew Ts hs prf
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1517
          else
79175
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
  1518
            let val prf'' = incr_boundvars 0 (~1) prf'
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1519
            in SOME (the_default (prf'', no_skel) (rew Ts hs prf'')) end
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1520
      | rew0 Ts hs prf = rew Ts hs prf;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1521
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1522
    fun rew1 _ _ (Hyp (Var _)) _ = NONE
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1523
      | rew1 Ts hs skel prf =
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1524
          (case rew2 Ts hs skel prf of
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1525
            SOME prf1 =>
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1526
              (case rew0 Ts hs prf1 of
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1527
                SOME (prf2, skel') => SOME (the_default prf2 (rew1 Ts hs skel' prf2))
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1528
              | NONE => SOME prf1)
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1529
          | NONE =>
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1530
              (case rew0 Ts hs prf of
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1531
                SOME (prf1, skel') => SOME (the_default prf1 (rew1 Ts hs skel' prf1))
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1532
              | NONE => NONE))
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1533
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1534
    and rew2 Ts hs skel (prf % SOME t) =
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1535
          (case prf of
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1536
            Abst (_, _, body) =>
79167
4fb0723dc5fc clarified signature;
wenzelm
parents: 79166
diff changeset
  1537
              let val prf' = subst_bounds [t] body
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1538
              in SOME (the_default prf' (rew2 Ts hs no_skel prf')) end
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1539
          | _ =>
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1540
              (case rew1 Ts hs (case skel of skel' % _ => skel' | _ => no_skel) prf of
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1541
                SOME prf' => SOME (prf' % SOME t)
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1542
              | NONE => NONE))
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1543
      | rew2 Ts hs skel (prf % NONE) = Option.map (fn prf' => prf' % NONE)
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1544
          (rew1 Ts hs (case skel of skel' % _ => skel' | _ => no_skel) prf)
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1545
      | rew2 Ts hs skel (prf1 %% prf2) =
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1546
          (case prf1 of
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1547
            AbsP (_, _, body) =>
79167
4fb0723dc5fc clarified signature;
wenzelm
parents: 79166
diff changeset
  1548
              let val prf' = subst_pbounds [prf2] body
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1549
              in SOME (the_default prf' (rew2 Ts hs no_skel prf')) end
13102
b6f8aae5f152 Added skeletons to speed up rewriting on proof terms.
berghofe
parents: 12923
diff changeset
  1550
          | _ =>
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1551
            let
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1552
              val (skel1, skel2) =
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1553
                (case skel of
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1554
                  skel1 %% skel2 => (skel1, skel2)
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1555
                | _ => (no_skel, no_skel))
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1556
            in
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1557
              (case rew1 Ts hs skel1 prf1 of
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1558
                SOME prf1' =>
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1559
                  (case rew1 Ts hs skel2 prf2 of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1560
                    SOME prf2' => SOME (prf1' %% prf2')
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1561
                  | NONE => SOME (prf1' %% prf2))
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1562
              | NONE =>
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1563
                  (case rew1 Ts hs skel2 prf2 of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1564
                    SOME prf2' => SOME (prf1 %% prf2')
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1565
                  | NONE => NONE))
13102
b6f8aae5f152 Added skeletons to speed up rewriting on proof terms.
berghofe
parents: 12923
diff changeset
  1566
            end)
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1567
      | rew2 Ts hs skel (Abst (s, T, prf)) =
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1568
          (case rew1 (the_default dummyT T :: Ts) hs
33722
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 33522
diff changeset
  1569
              (case skel of Abst (_, _, skel') => skel' | _ => no_skel) prf of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1570
            SOME prf' => SOME (Abst (s, T, prf'))
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1571
          | NONE => NONE)
64566
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1572
      | rew2 Ts hs skel (AbsP (s, t, prf)) =
679710d324f1 tuned whitespace;
wenzelm
parents: 63857
diff changeset
  1573
          (case rew1 Ts (t :: hs) (case skel of AbsP (_, _, skel') => skel' | _ => no_skel) prf of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1574
            SOME prf' => SOME (AbsP (s, t, prf'))
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1575
          | NONE => NONE)
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1576
      | rew2 _ _ _ _ = NONE;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1577
37231
e5419ecf92b7 - outer_constraints with original variable names, to ensure that argsP is consistent with args
berghofe
parents: 36883
diff changeset
  1578
  in the_default prf (rew1 [] [] no_skel prf) end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1579
17203
29b2563f5c11 refer to theory instead of low-level tsig;
wenzelm
parents: 17017
diff changeset
  1580
fun rewrite_proof thy = rewrite_prf (fn (tyenv, f) =>
29b2563f5c11 refer to theory instead of low-level tsig;
wenzelm
parents: 17017
diff changeset
  1581
  Sign.typ_match thy (f ()) tyenv handle Type.TYPE_MATCH => raise PMatch);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1582
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
  1583
fun rewrite_proof_notypes rews = rewrite_prf fst rews;
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
  1584
16940
d14ec6f2d29b adapted Type.typ_match;
wenzelm
parents: 16880
diff changeset
  1585
70399
ac570c179ee9 tuned comments;
wenzelm
parents: 70398
diff changeset
  1586
(* theory data *)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1587
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 36883
diff changeset
  1588
structure Data = Theory_Data
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22662
diff changeset
  1589
(
33722
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 33522
diff changeset
  1590
  type T =
70848
fbba2075f823 support preprocessing of exported proofs;
wenzelm
parents: 70844
diff changeset
  1591
    ((stamp * (proof * proof)) list *
fbba2075f823 support preprocessing of exported proofs;
wenzelm
parents: 70844
diff changeset
  1592
     (stamp * (typ list -> term option list -> proof -> (proof * proof) option)) list) *
fbba2075f823 support preprocessing of exported proofs;
wenzelm
parents: 70844
diff changeset
  1593
    (theory -> proof -> proof) option;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1594
70848
fbba2075f823 support preprocessing of exported proofs;
wenzelm
parents: 70844
diff changeset
  1595
  val empty = (([], []), NONE);
fbba2075f823 support preprocessing of exported proofs;
wenzelm
parents: 70844
diff changeset
  1596
  fun merge (((rules1, procs1), preproc1), ((rules2, procs2), preproc2)) : T =
fbba2075f823 support preprocessing of exported proofs;
wenzelm
parents: 70844
diff changeset
  1597
    ((AList.merge (op =) (K true) (rules1, rules2),
fbba2075f823 support preprocessing of exported proofs;
wenzelm
parents: 70844
diff changeset
  1598
      AList.merge (op =) (K true) (procs1, procs2)),
fbba2075f823 support preprocessing of exported proofs;
wenzelm
parents: 70844
diff changeset
  1599
      merge_options (preproc1, preproc2));
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22662
diff changeset
  1600
);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1601
70848
fbba2075f823 support preprocessing of exported proofs;
wenzelm
parents: 70844
diff changeset
  1602
fun get_rew_data thy =
fbba2075f823 support preprocessing of exported proofs;
wenzelm
parents: 70844
diff changeset
  1603
  let val (rules, procs) = #1 (Data.get thy)
fbba2075f823 support preprocessing of exported proofs;
wenzelm
parents: 70844
diff changeset
  1604
  in (map #2 rules, map #2 procs) end;
fbba2075f823 support preprocessing of exported proofs;
wenzelm
parents: 70844
diff changeset
  1605
79225
2cac47aec8bd avoid accidental capture of theory value, and thus reduce heap size again (amending 5109e4b2a292);
wenzelm
parents: 79223
diff changeset
  1606
fun rew_proof thy = rewrite_prf fst (get_rew_data thy);
23780
a0e7305dd0cb Added function rew_proof (for pre-normalizing proofs).
berghofe
parents: 23296
diff changeset
  1607
70848
fbba2075f823 support preprocessing of exported proofs;
wenzelm
parents: 70844
diff changeset
  1608
fun add_prf_rrule r = (Data.map o apfst o apfst) (cons (stamp (), r));
fbba2075f823 support preprocessing of exported proofs;
wenzelm
parents: 70844
diff changeset
  1609
fun add_prf_rproc p = (Data.map o apfst o apsnd) (cons (stamp (), p));
fbba2075f823 support preprocessing of exported proofs;
wenzelm
parents: 70844
diff changeset
  1610
fbba2075f823 support preprocessing of exported proofs;
wenzelm
parents: 70844
diff changeset
  1611
fun set_preproc f = (Data.map o apsnd) (K (SOME f));
fbba2075f823 support preprocessing of exported proofs;
wenzelm
parents: 70844
diff changeset
  1612
fun apply_preproc thy = (case #2 (Data.get thy) of NONE => I | SOME f => f thy);
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1613
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1614
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1615
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1616
(** reconstruction of partial proof terms **)
70400
65bbef66e2ec clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents: 70399
diff changeset
  1617
70978
a1c137961c12 tuned signature;
wenzelm
parents: 70976
diff changeset
  1618
fun forall_intr_variables_term prop = fold_rev Logic.all (variables_of prop) prop;
a1c137961c12 tuned signature;
wenzelm
parents: 70976
diff changeset
  1619
fun forall_intr_variables prop prf = fold_rev forall_intr_proof' (variables_of prop) prf;
70400
65bbef66e2ec clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents: 70399
diff changeset
  1620
70978
a1c137961c12 tuned signature;
wenzelm
parents: 70976
diff changeset
  1621
local
70400
65bbef66e2ec clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents: 70399
diff changeset
  1622
70419
wenzelm
parents: 70417
diff changeset
  1623
fun app_types shift prop Ts prf =
wenzelm
parents: 70417
diff changeset
  1624
  let
70810
wenzelm
parents: 70809
diff changeset
  1625
    val inst = type_variables_of prop ~~ Ts;
wenzelm
parents: 70809
diff changeset
  1626
    fun subst_same A =
wenzelm
parents: 70809
diff changeset
  1627
      (case AList.lookup (op =) inst A of SOME T => T | NONE => raise Same.SAME);
70807
303721c3caa2 tuned app_types: more direct map_proof_types_same;
wenzelm
parents: 70784
diff changeset
  1628
    val subst_type_same =
79409
e1895596e1b9 minor performance tuning: proper Same.operation;
wenzelm
parents: 79407
diff changeset
  1629
      Term.map_atyps_same
70810
wenzelm
parents: 70809
diff changeset
  1630
        (fn TVar ((a, i), S) => subst_same (TVar ((a, i - shift), S)) | A => subst_same A);
70807
303721c3caa2 tuned app_types: more direct map_proof_types_same;
wenzelm
parents: 70784
diff changeset
  1631
  in Same.commit (map_proof_types_same subst_type_same) prf end;
70419
wenzelm
parents: 70417
diff changeset
  1632
80295
8a9588ffc133 more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents: 80288
diff changeset
  1633
fun guess_name (PThm ({thm_name, ...}, _)) = thm_name
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1634
  | guess_name (prf %% Hyp _) = guess_name prf
71777
3875815f5967 clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
wenzelm
parents: 71533
diff changeset
  1635
  | guess_name (prf %% PClass _) = guess_name prf
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1636
  | guess_name (prf % NONE) = guess_name prf
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1637
  | guess_name (prf % SOME (Var _)) = guess_name prf
80590
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
  1638
  | guess_name _ = Thm_Name.none;
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1639
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1640
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1641
(* generate constraints for proof term *)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1642
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1643
fun mk_var env Ts T =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1644
  let val (env', v) = Envir.genvar "a" (env, rev Ts ---> T)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1645
  in (list_comb (v, map Bound (length Ts - 1 downto 0)), env') end;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1646
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1647
fun mk_tvar S (Envir.Envir {maxidx, tenv, tyenv}) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1648
  (TVar (("'t", maxidx + 1), S),
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1649
    Envir.Envir {maxidx = maxidx + 1, tenv = tenv, tyenv = tyenv});
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1650
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1651
val mk_abs = fold (fn T => fn u => Abs ("", T, u));
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1652
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1653
fun unifyT thy env T U =
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1654
  let
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1655
    val Envir.Envir {maxidx, tenv, tyenv} = env;
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1656
    val (tyenv', maxidx') = Sign.typ_unify thy (T, U) (tyenv, maxidx);
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1657
  in Envir.Envir {maxidx = maxidx', tenv = tenv, tyenv = tyenv'} end;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1658
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1659
fun chaseT env (T as TVar v) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1660
      (case Type.lookup (Envir.type_env env) v of
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1661
        NONE => T
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1662
      | SOME T' => chaseT env T')
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1663
  | chaseT _ T = T;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1664
71531
50ac132a49bb tuned whitespace;
wenzelm
parents: 71529
diff changeset
  1665
fun infer_type thy (env as Envir.Envir {maxidx, tenv, tyenv}) _ vTs (t as Const (s, T)) =
50ac132a49bb tuned whitespace;
wenzelm
parents: 71529
diff changeset
  1666
      if T = dummyT then
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1667
        (case Sign.const_type thy s of
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1668
          NONE => error ("reconstruct_proof: No such constant: " ^ quote s)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1669
        | SOME T =>
79411
700d4f16b5f2 minor performance tuning: proper Same.operation;
wenzelm
parents: 79410
diff changeset
  1670
            let val T' = Term.strip_sortsT (Logic.incr_tvar (maxidx + 1) T) in
71531
50ac132a49bb tuned whitespace;
wenzelm
parents: 71529
diff changeset
  1671
              (Const (s, T'), T', vTs,
50ac132a49bb tuned whitespace;
wenzelm
parents: 71529
diff changeset
  1672
                Envir.Envir {maxidx = maxidx + 1, tenv = tenv, tyenv = tyenv})
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1673
            end)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1674
      else (t, T, vTs, env)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1675
  | infer_type _ env _ vTs (t as Free (s, T)) =
71531
50ac132a49bb tuned whitespace;
wenzelm
parents: 71529
diff changeset
  1676
      if T = dummyT then
50ac132a49bb tuned whitespace;
wenzelm
parents: 71529
diff changeset
  1677
        (case Symtab.lookup vTs s of
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1678
          NONE =>
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1679
            let val (T, env') = mk_tvar [] env
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1680
            in (Free (s, T), T, Symtab.update_new (s, T) vTs, env') end
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1681
        | SOME T => (Free (s, T), T, vTs, env))
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1682
      else (t, T, vTs, env)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1683
  | infer_type _ _ _ _ (Var _) = error "reconstruct_proof: internal error"
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1684
  | infer_type thy env Ts vTs (Abs (s, T, t)) =
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1685
      let
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1686
        val (T', env') = if T = dummyT then mk_tvar [] env else (T, env);
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1687
        val (t', U, vTs', env'') = infer_type thy env' (T' :: Ts) vTs t
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1688
      in (Abs (s, T', t'), T' --> U, vTs', env'') end
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1689
  | infer_type thy env Ts vTs (t $ u) =
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1690
      let
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1691
        val (t', T, vTs1, env1) = infer_type thy env Ts vTs t;
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1692
        val (u', U, vTs2, env2) = infer_type thy env1 Ts vTs1 u;
71531
50ac132a49bb tuned whitespace;
wenzelm
parents: 71529
diff changeset
  1693
      in
50ac132a49bb tuned whitespace;
wenzelm
parents: 71529
diff changeset
  1694
        (case chaseT env2 T of
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1695
          Type ("fun", [U', V]) => (t' $ u', V, vTs2, unifyT thy env2 U U')
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1696
        | _ =>
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1697
          let val (V, env3) = mk_tvar [] env2
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1698
          in (t' $ u', V, vTs2, unifyT thy env3 T (U --> V)) end)
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1699
      end
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1700
  | infer_type _ env Ts vTs (t as Bound i) = ((t, nth Ts i, vTs, env)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1701
      handle General.Subscript => error ("infer_type: bad variable index " ^ string_of_int i));
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1702
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1703
fun cantunify thy (t, u) =
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1704
  error ("Non-unifiable terms:\n" ^
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1705
    Syntax.string_of_term_global thy t ^ "\n\n" ^ Syntax.string_of_term_global thy u);
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1706
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1707
fun decompose thy Ts (p as (t, u)) env =
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1708
  let
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1709
    fun rigrig (a, T) (b, U) uT ts us =
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1710
      if a <> b then cantunify thy p
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1711
      else apfst flat (fold_map (decompose thy Ts) (ts ~~ us) (uT env T U))
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1712
  in
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1713
    case apply2 (strip_comb o Envir.head_norm env) p of
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1714
      ((Const c, ts), (Const d, us)) => rigrig c d (unifyT thy) ts us
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1715
    | ((Free c, ts), (Free d, us)) => rigrig c d (unifyT thy) ts us
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1716
    | ((Bound i, ts), (Bound j, us)) =>
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1717
        rigrig (i, dummyT) (j, dummyT) (K o K) ts us
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1718
    | ((Abs (_, T, t), []), (Abs (_, U, u), [])) =>
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1719
        decompose thy (T::Ts) (t, u) (unifyT thy env T U)
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1720
    | ((Abs (_, T, t), []), _) =>
79175
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
  1721
        decompose thy (T::Ts) (t, Term.incr_boundvars 1 u $ Bound 0) env
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1722
    | (_, (Abs (_, T, u), [])) =>
79175
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
  1723
        decompose thy (T::Ts) (Term.incr_boundvars 1 t $ Bound 0, u) env
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1724
    | _ => ([(mk_abs Ts t, mk_abs Ts u)], env)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1725
  end;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1726
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1727
fun make_constraints_cprf thy env cprf =
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1728
  let
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1729
    fun add_cnstrt Ts prop prf cs env vTs (t, u) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1730
      let
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1731
        val t' = mk_abs Ts t;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1732
        val u' = mk_abs Ts u
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1733
      in
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1734
        (prop, prf, cs, Pattern.unify (Context.Theory thy) (t', u') env, vTs)
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1735
          handle Pattern.Pattern =>
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1736
            let val (cs', env') = decompose thy [] (t', u') env
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1737
            in (prop, prf, cs @ cs', env', vTs) end
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1738
          | Pattern.Unif => cantunify thy (Envir.norm_term env t', Envir.norm_term env u')
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1739
      end;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1740
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1741
    fun mk_cnstrts_atom env vTs prop opTs prf =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1742
          let
70948
5ed8c7e826a2 proper order of variables, independently of varify/unvarify state -- relevant for export of locale conclusions;
wenzelm
parents: 70916
diff changeset
  1743
            val prop_types = type_variables_of prop;
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1744
            val (Ts, env') =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1745
              (case opTs of
70948
5ed8c7e826a2 proper order of variables, independently of varify/unvarify state -- relevant for export of locale conclusions;
wenzelm
parents: 70916
diff changeset
  1746
                NONE => fold_map (mk_tvar o Type.sort_of_atyp) prop_types env
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1747
              | SOME Ts => (Ts, env));
70948
5ed8c7e826a2 proper order of variables, independently of varify/unvarify state -- relevant for export of locale conclusions;
wenzelm
parents: 70916
diff changeset
  1748
            val prop' = subst_atomic_types (prop_types ~~ Ts)
70978
a1c137961c12 tuned signature;
wenzelm
parents: 70976
diff changeset
  1749
              (forall_intr_variables_term prop) handle ListPair.UnequalLengths =>
80590
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
  1750
                error ("Wrong number of type arguments for " ^
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
  1751
                  quote (Thm_Name.print_pos (guess_name prf)))
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1752
          in (prop', change_types (SOME Ts) prf, [], env', vTs) end;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1753
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1754
    fun head_norm (prop, prf, cnstrts, env, vTs) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1755
      (Envir.head_norm env prop, prf, cnstrts, env, vTs);
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1756
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1757
    fun mk_cnstrts env _ Hs vTs (PBound i) = ((nth Hs i, PBound i, [], env, vTs)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1758
          handle General.Subscript => error ("mk_cnstrts: bad variable index " ^ string_of_int i))
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1759
      | mk_cnstrts env Ts Hs vTs (Abst (s, opT, cprf)) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1760
          let
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1761
            val (T, env') =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1762
              (case opT of
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1763
                NONE => mk_tvar [] env
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1764
              | SOME T => (T, env));
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1765
            val (t, prf, cnstrts, env'', vTs') =
79175
04dfecb9343a misc tuning and clarification, following Term.incr_bv / Term.incr_boundvars;
wenzelm
parents: 79174
diff changeset
  1766
              mk_cnstrts env' (T::Ts) (map (Term.incr_boundvars 1) Hs) vTs cprf;
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1767
          in
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1768
            (Const ("Pure.all", (T --> propT) --> propT) $ Abs (s, T, t), Abst (s, SOME T, prf),
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1769
              cnstrts, env'', vTs')
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1770
          end
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1771
      | mk_cnstrts env Ts Hs vTs (AbsP (s, SOME t, cprf)) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1772
          let
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1773
            val (t', _, vTs', env') = infer_type thy env Ts vTs t;
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1774
            val (u, prf, cnstrts, env'', vTs'') = mk_cnstrts env' Ts (t'::Hs) vTs' cprf;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1775
          in (Logic.mk_implies (t', u), AbsP (s, SOME t', prf), cnstrts, env'', vTs'')
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1776
          end
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1777
      | mk_cnstrts env Ts Hs vTs (AbsP (s, NONE, cprf)) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1778
          let
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1779
            val (t, env') = mk_var env Ts propT;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1780
            val (u, prf, cnstrts, env'', vTs') = mk_cnstrts env' Ts (t::Hs) vTs cprf;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1781
          in (Logic.mk_implies (t, u), AbsP (s, SOME t, prf), cnstrts, env'', vTs')
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1782
          end
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1783
      | mk_cnstrts env Ts Hs vTs (cprf1 %% cprf2) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1784
          let val (u, prf2, cnstrts, env', vTs') = mk_cnstrts env Ts Hs vTs cprf2
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1785
          in (case head_norm (mk_cnstrts env' Ts Hs vTs' cprf1) of
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1786
              (Const ("Pure.imp", _) $ u' $ t', prf1, cnstrts', env'', vTs'') =>
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1787
                add_cnstrt Ts t' (prf1 %% prf2) (cnstrts' @ cnstrts)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1788
                  env'' vTs'' (u, u')
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1789
            | (t, prf1, cnstrts', env'', vTs'') =>
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1790
                let val (v, env''') = mk_var env'' Ts propT
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1791
                in add_cnstrt Ts v (prf1 %% prf2) (cnstrts' @ cnstrts)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1792
                  env''' vTs'' (t, Logic.mk_implies (u, v))
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1793
                end)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1794
          end
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1795
      | mk_cnstrts env Ts Hs vTs (cprf % SOME t) =
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1796
          let val (t', U, vTs1, env1) = infer_type thy env Ts vTs t
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1797
          in (case head_norm (mk_cnstrts env1 Ts Hs vTs1 cprf) of
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1798
             (Const ("Pure.all", Type ("fun", [Type ("fun", [T, _]), _])) $ f,
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1799
                 prf, cnstrts, env2, vTs2) =>
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1800
               let val env3 = unifyT thy env2 T U
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1801
               in (betapply (f, t'), prf % SOME t', cnstrts, env3, vTs2)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1802
               end
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1803
           | (u, prf, cnstrts, env2, vTs2) =>
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1804
               let val (v, env3) = mk_var env2 Ts (U --> propT);
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1805
               in
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1806
                 add_cnstrt Ts (v $ t') (prf % SOME t') cnstrts env3 vTs2
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1807
                   (u, Const ("Pure.all", (U --> propT) --> propT) $ v)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1808
               end)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1809
          end
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1810
      | mk_cnstrts env Ts Hs vTs (cprf % NONE) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1811
          (case head_norm (mk_cnstrts env Ts Hs vTs cprf) of
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1812
             (Const ("Pure.all", Type ("fun", [Type ("fun", [T, _]), _])) $ f,
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1813
                 prf, cnstrts, env', vTs') =>
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1814
               let val (t, env'') = mk_var env' Ts T
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1815
               in (betapply (f, t), prf % SOME t, cnstrts, env'', vTs')
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1816
               end
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1817
           | (u, prf, cnstrts, env', vTs') =>
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1818
               let
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1819
                 val (T, env1) = mk_tvar [] env';
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1820
                 val (v, env2) = mk_var env1 Ts (T --> propT);
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1821
                 val (t, env3) = mk_var env2 Ts T
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1822
               in
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1823
                 add_cnstrt Ts (v $ t) (prf % SOME t) cnstrts env3 vTs'
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1824
                   (u, Const ("Pure.all", (T --> propT) --> propT) $ v)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1825
               end)
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
  1826
      | mk_cnstrts env _ _ vTs (prf as PThm ({prop, types = opTs, ...}, _)) =
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1827
          mk_cnstrts_atom env vTs prop opTs prf
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1828
      | mk_cnstrts env _ _ vTs (prf as PAxm (_, prop, opTs)) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1829
          mk_cnstrts_atom env vTs prop opTs prf
79415
740ec03b0b71 tuned names;
wenzelm
parents: 79412
diff changeset
  1830
      | mk_cnstrts env _ _ vTs (prf as PClass C) =
740ec03b0b71 tuned names;
wenzelm
parents: 79412
diff changeset
  1831
          mk_cnstrts_atom env vTs (Logic.mk_of_class C) NONE prf
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1832
      | mk_cnstrts env _ _ vTs (prf as Oracle (_, prop, opTs)) =
70834
614ca81fa28e clarified oracle_proof;
wenzelm
parents: 70833
diff changeset
  1833
          mk_cnstrts_atom env vTs prop opTs prf
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1834
      | mk_cnstrts env _ _ vTs (Hyp t) = (t, Hyp t, [], env, vTs)
70603
706dac15554b clarified signature: prefer total operations;
wenzelm
parents: 70595
diff changeset
  1835
      | mk_cnstrts _ _ _ _ MinProof = raise MIN_PROOF ()
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1836
  in mk_cnstrts env [] [] Symtab.empty cprf end;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1837
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1838
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1839
(* update list of free variables of constraints *)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1840
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1841
fun upd_constrs env cs =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1842
  let
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1843
    val tenv = Envir.term_env env;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1844
    val tyenv = Envir.type_env env;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1845
    val dom = []
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1846
      |> Vartab.fold (cons o #1) tenv
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1847
      |> Vartab.fold (cons o #1) tyenv;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1848
    val vran = []
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1849
      |> Vartab.fold (Term.add_var_names o #2 o #2) tenv
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1850
      |> Vartab.fold (Term.add_tvar_namesT o #2 o #2) tyenv;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1851
    fun check_cs [] = []
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1852
      | check_cs ((u, p, vs) :: ps) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1853
          let val vs' = subtract (op =) dom vs in
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1854
            if vs = vs' then (u, p, vs) :: check_cs ps
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1855
            else (true, p, fold (insert op =) vs' vran) :: check_cs ps
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1856
          end;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1857
  in check_cs cs end;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1858
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1859
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1860
(* solution of constraints *)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1861
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1862
fun solve _ [] bigenv = bigenv
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1863
  | solve thy cs bigenv =
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1864
      let
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1865
        fun search _ [] =
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1866
              error ("Unsolvable constraints:\n" ^
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1867
                Pretty.string_of (Pretty.chunks (map (fn (_, p, _) =>
76083
8d6cb72aa511 tuned output: more Pretty.item;
wenzelm
parents: 76082
diff changeset
  1868
                  Pretty.item (Syntax.pretty_flexpair (Syntax.init_pretty_global thy)
76082
1202e29798a4 tuned signature;
wenzelm
parents: 74561
diff changeset
  1869
                    (apply2 (Envir.norm_term bigenv) p))) cs)))
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1870
          | search env ((u, p as (t1, t2), vs)::ps) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1871
              if u then
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1872
                let
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1873
                  val tn1 = Envir.norm_term bigenv t1;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1874
                  val tn2 = Envir.norm_term bigenv t2
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1875
                in
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1876
                  if Pattern.pattern tn1 andalso Pattern.pattern tn2 then
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1877
                    (Pattern.unify (Context.Theory thy) (tn1, tn2) env, ps)
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1878
                      handle Pattern.Unif => cantunify thy (tn1, tn2)
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1879
                  else
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1880
                    let val (cs', env') = decompose thy [] (tn1, tn2) env
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1881
                    in if cs' = [(tn1, tn2)] then
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1882
                         apsnd (cons (false, (tn1, tn2), vs)) (search env ps)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1883
                       else search env' (map (fn q => (true, q, vs)) cs' @ ps)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1884
                    end
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1885
                end
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1886
              else apsnd (cons (false, p, vs)) (search env ps);
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1887
        val Envir.Envir {maxidx, ...} = bigenv;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1888
        val (env, cs') = search (Envir.empty maxidx) cs;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1889
      in
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1890
        solve thy (upd_constrs env cs') (Envir.merge (bigenv, env))
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1891
      end;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1892
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1893
in
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1894
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1895
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1896
(* reconstruction of proofs *)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1897
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1898
fun reconstruct_proof thy prop cprf =
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1899
  let
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1900
    val (cprf' % SOME prop', thawf) = freeze_thaw_prf (cprf % SOME prop);
70449
6e34025981be clarified global theory context;
wenzelm
parents: 70448
diff changeset
  1901
    val (t, prf, cs, env, _) = make_constraints_cprf thy
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1902
      (Envir.empty (maxidx_proof cprf ~1)) cprf';
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1903
    val cs' =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1904
      map (apply2 (Envir.norm_term env)) ((t, prop') :: cs)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1905
      |> map (fn p => (true, p, Term.add_var_names (#1 p) (Term.add_var_names (#2 p) [])));
71532
wenzelm
parents: 71531
diff changeset
  1906
    val env' = solve thy cs' env;
70603
706dac15554b clarified signature: prefer total operations;
wenzelm
parents: 70595
diff changeset
  1907
  in thawf (norm_proof env' prf) end handle MIN_PROOF () => MinProof;
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1908
70815
wenzelm
parents: 70814
diff changeset
  1909
fun prop_of_atom prop Ts =
70978
a1c137961c12 tuned signature;
wenzelm
parents: 70976
diff changeset
  1910
  subst_atomic_types (type_variables_of prop ~~ Ts) (forall_intr_variables_term prop);
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1911
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1912
val head_norm = Envir.head_norm Envir.init;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1913
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1914
fun prop_of0 Hs (PBound i) = nth Hs i
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1915
  | prop_of0 Hs (Abst (s, SOME T, prf)) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1916
      Logic.all_const T $ (Abs (s, T, prop_of0 Hs prf))
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1917
  | prop_of0 Hs (AbsP (_, SOME t, prf)) =
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1918
      Logic.mk_implies (t, prop_of0 (t :: Hs) prf)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1919
  | prop_of0 Hs (prf % SOME t) = (case head_norm (prop_of0 Hs prf) of
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1920
      Const ("Pure.all", _) $ f => f $ t
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1921
    | _ => error "prop_of: all expected")
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1922
  | prop_of0 Hs (prf1 %% _) = (case head_norm (prop_of0 Hs prf1) of
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1923
      Const ("Pure.imp", _) $ _ $ Q => Q
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1924
    | _ => error "prop_of: ==> expected")
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1925
  | prop_of0 _ (Hyp t) = t
70493
a9053fa30909 clarified ML types;
wenzelm
parents: 70492
diff changeset
  1926
  | prop_of0 _ (PThm ({prop, types = SOME Ts, ...}, _)) = prop_of_atom prop Ts
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1927
  | prop_of0 _ (PAxm (_, prop, SOME Ts)) = prop_of_atom prop Ts
79415
740ec03b0b71 tuned names;
wenzelm
parents: 79412
diff changeset
  1928
  | prop_of0 _ (PClass C) = Logic.mk_of_class C
70834
614ca81fa28e clarified oracle_proof;
wenzelm
parents: 70833
diff changeset
  1929
  | prop_of0 _ (Oracle (_, prop, SOME Ts)) = prop_of_atom prop Ts
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1930
  | prop_of0 _ _ = error "prop_of: partial proof object";
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1931
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1932
val prop_of' = Envir.beta_eta_contract oo prop_of0;
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1933
val prop_of = prop_of' [];
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1934
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1935
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1936
(* expand and reconstruct subproofs *)
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1937
80295
8a9588ffc133 more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents: 80288
diff changeset
  1938
fun expand_name_empty (header: thm_header) =
80590
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
  1939
  if Thm_Name.is_empty (#1 (#thm_name header)) then SOME Thm_Name.none else NONE;
70915
bd4d37edfee4 clarified expand_proof/expand_name: allow more detailed control via thm_header;
wenzelm
parents: 70909
diff changeset
  1940
bd4d37edfee4 clarified expand_proof/expand_name: allow more detailed control via thm_header;
wenzelm
parents: 70909
diff changeset
  1941
fun expand_proof thy expand_name prf =
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1942
  let
70833
wenzelm
parents: 70832
diff changeset
  1943
    fun expand seen maxidx (AbsP (s, t, prf)) =
wenzelm
parents: 70832
diff changeset
  1944
          let val (seen', maxidx', prf') = expand seen maxidx prf
wenzelm
parents: 70832
diff changeset
  1945
          in (seen', maxidx', AbsP (s, t, prf')) end
wenzelm
parents: 70832
diff changeset
  1946
      | expand seen maxidx (Abst (s, T, prf)) =
wenzelm
parents: 70832
diff changeset
  1947
          let val (seen', maxidx', prf') = expand seen maxidx prf
wenzelm
parents: 70832
diff changeset
  1948
          in (seen', maxidx', Abst (s, T, prf')) end
wenzelm
parents: 70832
diff changeset
  1949
      | expand seen maxidx (prf1 %% prf2) =
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1950
          let
70833
wenzelm
parents: 70832
diff changeset
  1951
            val (seen', maxidx', prf1') = expand seen maxidx prf1;
wenzelm
parents: 70832
diff changeset
  1952
            val (seen'', maxidx'', prf2') = expand seen' maxidx' prf2;
wenzelm
parents: 70832
diff changeset
  1953
          in (seen'', maxidx'', prf1' %% prf2') end
wenzelm
parents: 70832
diff changeset
  1954
      | expand seen maxidx (prf % t) =
wenzelm
parents: 70832
diff changeset
  1955
          let val (seen', maxidx', prf') = expand seen maxidx prf
wenzelm
parents: 70832
diff changeset
  1956
          in (seen', maxidx', prf' % t) end
70915
bd4d37edfee4 clarified expand_proof/expand_name: allow more detailed control via thm_header;
wenzelm
parents: 70909
diff changeset
  1957
      | expand seen maxidx (prf as PThm (header, thm_body)) =
80590
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
  1958
          let val {serial, command_pos, theory_name, thm_name, prop, types} = header in
70915
bd4d37edfee4 clarified expand_proof/expand_name: allow more detailed control via thm_header;
wenzelm
parents: 70909
diff changeset
  1959
            (case expand_name header of
80295
8a9588ffc133 more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents: 80288
diff changeset
  1960
              SOME thm_name' =>
80590
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
  1961
                if #1 (#1 thm_name') = "" andalso is_some types then
70915
bd4d37edfee4 clarified expand_proof/expand_name: allow more detailed control via thm_header;
wenzelm
parents: 70909
diff changeset
  1962
                  let
bd4d37edfee4 clarified expand_proof/expand_name: allow more detailed control via thm_header;
wenzelm
parents: 70909
diff changeset
  1963
                    val (seen', maxidx', prf') =
bd4d37edfee4 clarified expand_proof/expand_name: allow more detailed control via thm_header;
wenzelm
parents: 70909
diff changeset
  1964
                      (case Inttab.lookup seen serial of
bd4d37edfee4 clarified expand_proof/expand_name: allow more detailed control via thm_header;
wenzelm
parents: 70909
diff changeset
  1965
                        NONE =>
bd4d37edfee4 clarified expand_proof/expand_name: allow more detailed control via thm_header;
wenzelm
parents: 70909
diff changeset
  1966
                          let
bd4d37edfee4 clarified expand_proof/expand_name: allow more detailed control via thm_header;
wenzelm
parents: 70909
diff changeset
  1967
                            val prf1 =
bd4d37edfee4 clarified expand_proof/expand_name: allow more detailed control via thm_header;
wenzelm
parents: 70909
diff changeset
  1968
                              thm_body_proof_open thm_body
bd4d37edfee4 clarified expand_proof/expand_name: allow more detailed control via thm_header;
wenzelm
parents: 70909
diff changeset
  1969
                              |> reconstruct_proof thy prop
70978
a1c137961c12 tuned signature;
wenzelm
parents: 70976
diff changeset
  1970
                              |> forall_intr_variables prop;
70915
bd4d37edfee4 clarified expand_proof/expand_name: allow more detailed control via thm_header;
wenzelm
parents: 70909
diff changeset
  1971
                            val (seen1, maxidx1, prf2) = expand_init seen prf1
bd4d37edfee4 clarified expand_proof/expand_name: allow more detailed control via thm_header;
wenzelm
parents: 70909
diff changeset
  1972
                            val seen2 = seen1 |> Inttab.update (serial, (maxidx1, prf2));
bd4d37edfee4 clarified expand_proof/expand_name: allow more detailed control via thm_header;
wenzelm
parents: 70909
diff changeset
  1973
                          in (seen2, maxidx1, prf2) end
bd4d37edfee4 clarified expand_proof/expand_name: allow more detailed control via thm_header;
wenzelm
parents: 70909
diff changeset
  1974
                      | SOME (maxidx1, prf1) => (seen, maxidx1, prf1));
bd4d37edfee4 clarified expand_proof/expand_name: allow more detailed control via thm_header;
wenzelm
parents: 70909
diff changeset
  1975
                    val prf'' = prf'
bd4d37edfee4 clarified expand_proof/expand_name: allow more detailed control via thm_header;
wenzelm
parents: 70909
diff changeset
  1976
                      |> incr_indexes (maxidx + 1) |> app_types (maxidx + 1) prop (the types);
bd4d37edfee4 clarified expand_proof/expand_name: allow more detailed control via thm_header;
wenzelm
parents: 70909
diff changeset
  1977
                  in (seen', maxidx' + maxidx + 1, prf'') end
80295
8a9588ffc133 more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents: 80288
diff changeset
  1978
                else if thm_name' <> thm_name then
8a9588ffc133 more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents: 80288
diff changeset
  1979
                  (seen, maxidx,
80590
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
  1980
                    PThm (thm_header serial command_pos theory_name thm_name' prop types, thm_body))
70915
bd4d37edfee4 clarified expand_proof/expand_name: allow more detailed control via thm_header;
wenzelm
parents: 70909
diff changeset
  1981
                else (seen, maxidx, prf)
bd4d37edfee4 clarified expand_proof/expand_name: allow more detailed control via thm_header;
wenzelm
parents: 70909
diff changeset
  1982
            | NONE => (seen, maxidx, prf))
bd4d37edfee4 clarified expand_proof/expand_name: allow more detailed control via thm_header;
wenzelm
parents: 70909
diff changeset
  1983
          end
70833
wenzelm
parents: 70832
diff changeset
  1984
      | expand seen maxidx prf = (seen, maxidx, prf)
wenzelm
parents: 70832
diff changeset
  1985
    and expand_init seen prf = expand seen (maxidx_proof prf ~1) prf;
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1986
70915
bd4d37edfee4 clarified expand_proof/expand_name: allow more detailed control via thm_header;
wenzelm
parents: 70909
diff changeset
  1987
  in #3 (expand_init Inttab.empty prf) end;
70447
755d58b48cec clarified modules: provide reconstruct_proof / expand_proof at the bottom of proof term construction;
wenzelm
parents: 70442
diff changeset
  1988
70400
65bbef66e2ec clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents: 70399
diff changeset
  1989
end;
65bbef66e2ec clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents: 70399
diff changeset
  1990
65bbef66e2ec clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents: 70399
diff changeset
  1991
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
  1992
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
  1993
(** promises **)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1994
33722
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 33522
diff changeset
  1995
fun fulfill_norm_proof thy ps body0 =
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 33522
diff changeset
  1996
  let
71018
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
  1997
    val _ = consolidate_bodies (map #2 ps @ [body0]);
79220
f9d972b464c1 clarified signature: fewer tuples;
wenzelm
parents: 79219
diff changeset
  1998
    val PBody {oracles = oracles0, thms = thms0, zboxes = zboxes0, zproof, proof = proof0} = body0;
44334
605381e7c7c5 more direct balanced version Ord_List.unions;
wenzelm
parents: 44333
diff changeset
  1999
    val oracles =
77867
686a7d71ed7b backout e3fe192fa4a8;
wenzelm
parents: 77866
diff changeset
  2000
      unions_oracles
686a7d71ed7b backout e3fe192fa4a8;
wenzelm
parents: 77866
diff changeset
  2001
        (fold (fn (_, PBody {oracles, ...}) => not (null oracles) ? cons oracles) ps [oracles0]);
77865
6f7a577a1406 Backed out changeset e3db27e3b0c6
wenzelm
parents: 77864
diff changeset
  2002
    val thms =
77866
3bd1aa2f3517 backout 61f652dd955a;
wenzelm
parents: 77865
diff changeset
  2003
      unions_thms (fold (fn (_, PBody {thms, ...}) => not (null thms) ? cons thms) ps [thms0]);
79279
d9a7ee1bd070 minor performance tuning: more concise union;
wenzelm
parents: 79267
diff changeset
  2004
    val zboxes =
d9a7ee1bd070 minor performance tuning: more concise union;
wenzelm
parents: 79267
diff changeset
  2005
      ZTerm.unions_zboxes
d9a7ee1bd070 minor performance tuning: more concise union;
wenzelm
parents: 79267
diff changeset
  2006
        (fold (fn (_, PBody {zboxes, ...}) => not (null zboxes) ? cons zboxes) ps [zboxes0]);
70398
725438ceae7c proof terms are always constructed sequentially;
wenzelm
parents: 70397
diff changeset
  2007
    val proof = rew_proof thy proof0;
79114
686b7b14d041 clarified proof_body: cover zboxes from zproof;
wenzelm
parents: 79113
diff changeset
  2008
  in
79220
f9d972b464c1 clarified signature: fewer tuples;
wenzelm
parents: 79219
diff changeset
  2009
    PBody {oracles = oracles, thms = thms, zboxes = zboxes, zproof = zproof, proof = proof}
79114
686b7b14d041 clarified proof_body: cover zboxes from zproof;
wenzelm
parents: 79113
diff changeset
  2010
  end;
28828
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
  2011
70395
af88c05696bd clarified postproc: apply shrink_proof last, e.g. relevant for export of full proof term;
wenzelm
parents: 70394
diff changeset
  2012
fun fulfill_proof_future thy promises (postproc: proof_body -> proof_body) body =
51047
2ad5c46bcd04 avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
wenzelm
parents: 50763
diff changeset
  2013
  let
2ad5c46bcd04 avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
wenzelm
parents: 50763
diff changeset
  2014
    fun fulfill () =
2ad5c46bcd04 avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
wenzelm
parents: 50763
diff changeset
  2015
      postproc (fulfill_norm_proof thy (map (apsnd Future.join) promises) (Future.join body));
2ad5c46bcd04 avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
wenzelm
parents: 50763
diff changeset
  2016
  in
74159
c6bce3633c53 revert 0faa68dedce5: very slow;
wenzelm
parents: 74155
diff changeset
  2017
    if null promises then Future.map postproc body
51047
2ad5c46bcd04 avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
wenzelm
parents: 50763
diff changeset
  2018
    else if Future.is_finished body andalso length promises = 1 then
2ad5c46bcd04 avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
wenzelm
parents: 50763
diff changeset
  2019
      Future.map (fn _ => fulfill ()) (snd (hd promises))
2ad5c46bcd04 avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
wenzelm
parents: 50763
diff changeset
  2020
    else
2ad5c46bcd04 avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
wenzelm
parents: 50763
diff changeset
  2021
      (singleton o Future.forks)
2ad5c46bcd04 avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
wenzelm
parents: 50763
diff changeset
  2022
        {name = "Proofterm.fulfill_proof_future", group = NONE,
70415
3c20a86f14f1 finalize proofs earlier to reduce memory requirement;
wenzelm
parents: 70413
diff changeset
  2023
          deps = Future.task_of body :: map (Future.task_of o snd) promises, pri = 1,
51047
2ad5c46bcd04 avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
wenzelm
parents: 50763
diff changeset
  2024
          interrupts = true}
2ad5c46bcd04 avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
wenzelm
parents: 50763
diff changeset
  2025
        fulfill
2ad5c46bcd04 avoid extra fork for fulfill_proof_future whenever possible -- without proof terms it merely doubles the number of proof tasks redundantly, by piggy-backing another 10 microseconds task;
wenzelm
parents: 50763
diff changeset
  2026
  end;
29642
be22ba214475 thm_proof: recovered single-threaded version;
wenzelm
parents: 29636
diff changeset
  2027
28828
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
  2028
70397
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
  2029
f5bce5af361b tuned comments -- proper sections;
wenzelm
parents: 70396
diff changeset
  2030
(** theorems **)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  2031
70529
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2032
(* PThm nodes *)
2ecbbe6b35db uniform standard_vars for terms and proof terms;
wenzelm
parents: 70511
diff changeset
  2033
71022
6504ea98623c uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
wenzelm
parents: 71018
diff changeset
  2034
fun prune_body body =
6504ea98623c uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
wenzelm
parents: 71018
diff changeset
  2035
  if Options.default_bool "prune_proofs"
79333
56b604882d0b more thorough treatment of zproof vs. proof: avoid accidental storage of large structures;
wenzelm
parents: 79332
diff changeset
  2036
  then Future.map no_proof body
71022
6504ea98623c uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
wenzelm
parents: 71018
diff changeset
  2037
  else body;
6504ea98623c uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
wenzelm
parents: 71018
diff changeset
  2038
70604
8088cf2576f3 more compact: avoid pointless PThm rudiments;
wenzelm
parents: 70603
diff changeset
  2039
fun export_enabled () = Options.default_bool "export_proofs";
70983
52a62342c9ce clarified signature;
wenzelm
parents: 70982
diff changeset
  2040
fun export_standard_enabled () = Options.default_bool "export_standard_proofs";
70604
8088cf2576f3 more compact: avoid pointless PThm rudiments;
wenzelm
parents: 70603
diff changeset
  2041
70984
5e98925f86ed clarified signature (again);
wenzelm
parents: 70983
diff changeset
  2042
fun export_proof_boxes_required thy =
77890
26d49c15bff0 proper theory_long_name;
wenzelm
parents: 77889
diff changeset
  2043
  Context.theory_long_name thy = Context.PureN orelse
70984
5e98925f86ed clarified signature (again);
wenzelm
parents: 70983
diff changeset
  2044
    (export_enabled () andalso not (export_standard_enabled ()));
5e98925f86ed clarified signature (again);
wenzelm
parents: 70983
diff changeset
  2045
71018
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
  2046
fun export_proof_boxes bodies =
70909
9e05f382e749 export toplevel proof similar to named PThm;
wenzelm
parents: 70908
diff changeset
  2047
  let
71018
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
  2048
    fun export_thm (i, thm_node) boxes =
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
  2049
      if Inttab.defined boxes i then boxes
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
  2050
      else
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
  2051
        boxes
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
  2052
        |> Inttab.update (i, thm_node_export thm_node)
77866
3bd1aa2f3517 backout 61f652dd955a;
wenzelm
parents: 77865
diff changeset
  2053
        |> fold export_thm (thm_node_thms thm_node);
71018
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
  2054
77866
3bd1aa2f3517 backout 61f652dd955a;
wenzelm
parents: 77865
diff changeset
  2055
    fun export_body (PBody {thms, ...}) = fold export_thm thms;
71018
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
  2056
74232
1091880266e5 clarified signature;
wenzelm
parents: 74228
diff changeset
  2057
    val exports = Inttab.build (fold export_body bodies) |> Inttab.dest;
71018
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
  2058
  in List.app (Lazy.force o #2) exports end;
70909
9e05f382e749 export toplevel proof similar to named PThm;
wenzelm
parents: 70908
diff changeset
  2059
70416
wenzelm
parents: 70415
diff changeset
  2060
local
wenzelm
parents: 70415
diff changeset
  2061
80608
0b8922e351a3 clarified export: replaced Proofterm.standard_vars by ZTerm.standard_vars;
wenzelm
parents: 80606
diff changeset
  2062
fun export_proof thy i prop0 proof0 =
70451
550a5a822edb clarified export: retain proof boxes as local definitions -- more scalable;
wenzelm
parents: 70449
diff changeset
  2063
  let
80608
0b8922e351a3 clarified export: replaced Proofterm.standard_vars by ZTerm.standard_vars;
wenzelm
parents: 80606
diff changeset
  2064
    val {typargs, args, prop, proof} =
0b8922e351a3 clarified export: replaced Proofterm.standard_vars by ZTerm.standard_vars;
wenzelm
parents: 80606
diff changeset
  2065
      ZTerm.standard_vars Name.context
0b8922e351a3 clarified export: replaced Proofterm.standard_vars by ZTerm.standard_vars;
wenzelm
parents: 80606
diff changeset
  2066
        (ZTerm.zterm_of thy prop0, SOME (proof_to_zproof thy (no_thm_names proof0)));
0b8922e351a3 clarified export: replaced Proofterm.standard_vars by ZTerm.standard_vars;
wenzelm
parents: 80606
diff changeset
  2067
    val xml = (typargs, (args, (prop, the proof))) |>
70881
80f3a290b35c clarified proof export;
wenzelm
parents: 70878
diff changeset
  2068
      let
80f3a290b35c clarified proof export;
wenzelm
parents: 70878
diff changeset
  2069
        open XML.Encode Term_XML.Encode;
80608
0b8922e351a3 clarified export: replaced Proofterm.standard_vars by ZTerm.standard_vars;
wenzelm
parents: 80606
diff changeset
  2070
        val encode_tfrees = list (pair string sort);
0b8922e351a3 clarified export: replaced Proofterm.standard_vars by ZTerm.standard_vars;
wenzelm
parents: 80606
diff changeset
  2071
        val encode_frees = list (pair string ZTerm.encode_ztyp);
0b8922e351a3 clarified export: replaced Proofterm.standard_vars by ZTerm.standard_vars;
wenzelm
parents: 80606
diff changeset
  2072
        val encode_term = ZTerm.encode_zterm {typed_vars = false};
0b8922e351a3 clarified export: replaced Proofterm.standard_vars by ZTerm.standard_vars;
wenzelm
parents: 80606
diff changeset
  2073
        val encode_proof = ZTerm.encode_zproof {typed_vars = false};
0b8922e351a3 clarified export: replaced Proofterm.standard_vars by ZTerm.standard_vars;
wenzelm
parents: 80606
diff changeset
  2074
      in pair encode_tfrees (pair encode_frees (pair encode_term encode_proof)) end;
70500
5d540dbbe5ba export each PThm node separately: slightly more scalable;
wenzelm
parents: 70497
diff changeset
  2075
  in
80287
a3a1ec0c47ab clarified signature: separate formal context from exported theory_name;
wenzelm
parents: 80239
diff changeset
  2076
    Export.export_params (Context.Theory thy)
a3a1ec0c47ab clarified signature: separate formal context from exported theory_name;
wenzelm
parents: 80239
diff changeset
  2077
     {theory_name = Context.theory_long_name thy,
70500
5d540dbbe5ba export each PThm node separately: slightly more scalable;
wenzelm
parents: 70497
diff changeset
  2078
      binding = Path.binding0 (Path.make ["proofs", string_of_int i]),
5d540dbbe5ba export each PThm node separately: slightly more scalable;
wenzelm
parents: 70497
diff changeset
  2079
      executable = false,
5d540dbbe5ba export each PThm node separately: slightly more scalable;
wenzelm
parents: 70497
diff changeset
  2080
      compress = true,
70991
f9f7c34b7dd4 more scalable protocol_message: use XML.body directly (Output.output hook is not required);
wenzelm
parents: 70990
diff changeset
  2081
      strict = false} xml
70500
5d540dbbe5ba export each PThm node separately: slightly more scalable;
wenzelm
parents: 70497
diff changeset
  2082
  end;
5d540dbbe5ba export each PThm node separately: slightly more scalable;
wenzelm
parents: 70497
diff changeset
  2083
79425
0875c87b4a4b clarified signature;
wenzelm
parents: 79424
diff changeset
  2084
fun prepare_thm_proof unconstrain thy sorts_proof
79423
841545180269 tuned signature;
wenzelm
parents: 79422
diff changeset
  2085
    (name, pos) shyps hyps concl promises
841545180269 tuned signature;
wenzelm
parents: 79422
diff changeset
  2086
    (PBody {oracles = oracles0, thms = thms0, zboxes = zboxes0, zproof = zproof0, proof = proof0}) =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  2087
  let
80295
8a9588ffc133 more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents: 80288
diff changeset
  2088
    val named = not (Thm_Name.is_empty name);
70422
wenzelm
parents: 70420
diff changeset
  2089
32810
f3466a5645fa back to simple fold_body_thms and fulfill_proof/thm_proof (reverting a900d3cd47cc) -- the cycle check is implicit in the future computation of join_proofs;
wenzelm
parents: 32785
diff changeset
  2090
    val prop = Logic.list_implies (hyps, concl);
70416
wenzelm
parents: 70415
diff changeset
  2091
    val args = prop_args prop;
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  2092
79407
c6c2e41cac1c tuned signature;
wenzelm
parents: 79406
diff changeset
  2093
    val (ucontext as {typ_operation, ...}, prop1) = Logic.unconstrainT shyps prop;
36882
f33760bb8ca0 conditionally unconstrain thm proofs -- loosely based on the version by krauss/schropp;
wenzelm
parents: 36880
diff changeset
  2094
79219
8b371e684acf clarified signature: more explicit get_proofs_level with bounds check;
wenzelm
parents: 79217
diff changeset
  2095
    val proofs = get_proofs_level ();
79422
371ee5494d15 tuned signature: canonical argument order;
wenzelm
parents: 79415
diff changeset
  2096
    val (zproof1, zboxes1) =
79425
0875c87b4a4b clarified signature;
wenzelm
parents: 79424
diff changeset
  2097
      if zproof_enabled proofs then
0875c87b4a4b clarified signature;
wenzelm
parents: 79424
diff changeset
  2098
        ZTerm.add_box_proof {unconstrain = unconstrain} thy hyps concl zproof0 zboxes0
80560
960b866b1117 tuned signature;
wenzelm
parents: 80311
diff changeset
  2099
      else (ZNop, []);
79267
99a6a831f2c2 tuned names;
wenzelm
parents: 79266
diff changeset
  2100
    val proof1 =
79423
841545180269 tuned signature;
wenzelm
parents: 79422
diff changeset
  2101
      if proof_enabled proofs then fold_rev implies_intr_proof hyps proof0
79265
3c194f50beef more zproofs;
wenzelm
parents: 79263
diff changeset
  2102
      else MinProof;
70400
65bbef66e2ec clarified treatment of unnamed PThm nodes (from close_derivation): retain full proof, publish when named;
wenzelm
parents: 70399
diff changeset
  2103
70396
425c5f9bc61a support export_proofs, prune_proofs;
wenzelm
parents: 70395
diff changeset
  2104
    fun new_prf () =
425c5f9bc61a support export_proofs, prune_proofs;
wenzelm
parents: 70395
diff changeset
  2105
      let
80592
839c4f8742f9 more predictable proof id;
wenzelm
parents: 80590
diff changeset
  2106
        val i = proof_serial ();
79405
f4fdf5eebcac pro-forma support for ZTerm.sorts_zproof;
wenzelm
parents: 79404
diff changeset
  2107
        val unconstrainT = unconstrainT_proof (Sign.classes_of thy) sorts_proof ucontext;
79220
f9d972b464c1 clarified signature: fewer tuples;
wenzelm
parents: 79219
diff changeset
  2108
        val postproc = map_proof_of (unconstrainT #> named ? rew_proof thy);
79267
99a6a831f2c2 tuned names;
wenzelm
parents: 79266
diff changeset
  2109
        val body1 =
80560
960b866b1117 tuned signature;
wenzelm
parents: 80311
diff changeset
  2110
          {oracles = oracles0, thms = thms0, zboxes = [], zproof = ZNop, proof = proof1};
79265
3c194f50beef more zproofs;
wenzelm
parents: 79263
diff changeset
  2111
      in (i, fulfill_proof_future thy promises postproc (Future.value (PBody body1))) end;
70395
af88c05696bd clarified postproc: apply shrink_proof last, e.g. relevant for export of full proof term;
wenzelm
parents: 70394
diff changeset
  2112
36880
49d3cc859a12 avoid redundant rebinding of name/prop -- probably introduced accidentally in 80bb72a0f577;
wenzelm
parents: 36879
diff changeset
  2113
    val (i, body') =
71022
6504ea98623c uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
wenzelm
parents: 71018
diff changeset
  2114
      (*somewhat non-deterministic proof boxes!*)
6504ea98623c uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
wenzelm
parents: 71018
diff changeset
  2115
      if export_enabled () then new_prf ()
6504ea98623c uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
wenzelm
parents: 71018
diff changeset
  2116
      else
79441
eb142693255f clarified signature;
wenzelm
parents: 79440
diff changeset
  2117
        (case strip_combt (proof_head_of proof0) of
80590
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
  2118
          (PThm ({serial = ser, thm_name = (a, _), prop = prop', types = NONE, ...}, thm_body'), args') =>
80295
8a9588ffc133 more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents: 80288
diff changeset
  2119
            if (#1 a = "" orelse a = name) andalso prop' = prop1 andalso args' = args then
71022
6504ea98623c uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
wenzelm
parents: 71018
diff changeset
  2120
              let
6504ea98623c uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
wenzelm
parents: 71018
diff changeset
  2121
                val Thm_Body {body = body', ...} = thm_body';
80592
839c4f8742f9 more predictable proof id;
wenzelm
parents: 80590
diff changeset
  2122
                val i = if #1 a = "" andalso named then proof_serial () else ser;
79220
f9d972b464c1 clarified signature: fewer tuples;
wenzelm
parents: 79219
diff changeset
  2123
              in (i, body' |> ser <> i ? Future.map (map_proof_of (rew_proof thy))) end
71022
6504ea98623c uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
wenzelm
parents: 71018
diff changeset
  2124
            else new_prf ()
6504ea98623c uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
wenzelm
parents: 71018
diff changeset
  2125
        | _ => new_prf ());
70416
wenzelm
parents: 70415
diff changeset
  2126
79333
56b604882d0b more thorough treatment of zproof vs. proof: avoid accidental storage of large structures;
wenzelm
parents: 79332
diff changeset
  2127
    val exp_proof = Future.map proof_of body';
71018
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
  2128
    val open_proof = not named ? rew_proof thy;
80288
bc48bc7d0801 clarified signature: more explicit preprocessing;
wenzelm
parents: 80287
diff changeset
  2129
    fun export_body () =
bc48bc7d0801 clarified signature: more explicit preprocessing;
wenzelm
parents: 80287
diff changeset
  2130
      Future.join exp_proof
bc48bc7d0801 clarified signature: more explicit preprocessing;
wenzelm
parents: 80287
diff changeset
  2131
      |> open_proof
bc48bc7d0801 clarified signature: more explicit preprocessing;
wenzelm
parents: 80287
diff changeset
  2132
      |> reconstruct_proof thy prop1
bc48bc7d0801 clarified signature: more explicit preprocessing;
wenzelm
parents: 80287
diff changeset
  2133
      |> apply_preproc thy
bc48bc7d0801 clarified signature: more explicit preprocessing;
wenzelm
parents: 80287
diff changeset
  2134
      |> export_proof thy i prop1;
71018
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
  2135
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
  2136
    val export =
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
  2137
      if export_enabled () then
70889
62b3acc801ec more robust: avoid looping Lazy.force due to misinterpreted interrupt;
wenzelm
parents: 70888
diff changeset
  2138
        Lazy.lazy (fn () =>
78759
461e924cc825 proper Exn.capture / Isabelle_Thread.try_catch;
wenzelm
parents: 77890
diff changeset
  2139
          (case Exn.capture_body export_body of
461e924cc825 proper Exn.capture / Isabelle_Thread.try_catch;
wenzelm
parents: 77890
diff changeset
  2140
            Exn.Res res => res
461e924cc825 proper Exn.capture / Isabelle_Thread.try_catch;
wenzelm
parents: 77890
diff changeset
  2141
          | Exn.Exn exn =>
78764
a3dcae9a2ebe distinguish proper interrupts from Poly/ML RTS breakdown;
wenzelm
parents: 78759
diff changeset
  2142
              if Exn.is_interrupt_breakdown exn then
a3dcae9a2ebe distinguish proper interrupts from Poly/ML RTS breakdown;
wenzelm
parents: 78759
diff changeset
  2143
                raise Fail ("Resource problems while exporting proof " ^ string_of_int i)
78759
461e924cc825 proper Exn.capture / Isabelle_Thread.try_catch;
wenzelm
parents: 77890
diff changeset
  2144
              else Exn.reraise exn))
71018
d32ed8927a42 more robust expose_proofs corresponding to register_proofs/consolidate_theory;
wenzelm
parents: 71010
diff changeset
  2145
      else no_export;
70502
b053c9ed0b0a more careful export of unnamed proof boxes: avoid duplicates via memoing;
wenzelm
parents: 70501
diff changeset
  2146
71022
6504ea98623c uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
wenzelm
parents: 71018
diff changeset
  2147
    val thm_body = prune_body body';
70595
2ae7e33c950f clarified thm_id vs. thm_node/thm: retain theory_name;
wenzelm
parents: 70593
diff changeset
  2148
    val theory_name = Context.theory_long_name thy;
71022
6504ea98623c uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
wenzelm
parents: 71018
diff changeset
  2149
    val thm = (i, make_thm_node theory_name name prop1 thm_body export);
70423
wenzelm
parents: 70422
diff changeset
  2150
80590
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
  2151
    val header = thm_header i (Position.thread_data ()) theory_name (name, pos) prop1 NONE;
71022
6504ea98623c uniform "prune_proofs" for Thm_Node / PThm, but it is in conflict with export_proofs of re-used nodes;
wenzelm
parents: 71018
diff changeset
  2152
    val head = PThm (header, Thm_Body {open_proof = open_proof, body = thm_body});
79424
16c65e67dd75 misc tuning and clarification;
wenzelm
parents: 79423
diff changeset
  2153
    val argst =
70439
145fb19d906d tuned -- non-strict args;
wenzelm
parents: 70437
diff changeset
  2154
      if unconstrain then
79424
16c65e67dd75 misc tuning and clarification;
wenzelm
parents: 79423
diff changeset
  2155
        (Same.commit o Same.map o Same.map_option o Term.map_types_same)
16c65e67dd75 misc tuning and clarification;
wenzelm
parents: 79423
diff changeset
  2156
          (typ_operation {strip_sorts = true}) args
16c65e67dd75 misc tuning and clarification;
wenzelm
parents: 79423
diff changeset
  2157
      else args;
16c65e67dd75 misc tuning and clarification;
wenzelm
parents: 79423
diff changeset
  2158
    val argsP =
16c65e67dd75 misc tuning and clarification;
wenzelm
parents: 79423
diff changeset
  2159
      if unconstrain then []
16c65e67dd75 misc tuning and clarification;
wenzelm
parents: 79423
diff changeset
  2160
      else map PClass (#outer_constraints ucontext) @ map Hyp hyps;
16c65e67dd75 misc tuning and clarification;
wenzelm
parents: 79423
diff changeset
  2161
    val proof2 = proof_combP (proof_combt' (head, argst), argsP);
16c65e67dd75 misc tuning and clarification;
wenzelm
parents: 79423
diff changeset
  2162
79425
0875c87b4a4b clarified signature;
wenzelm
parents: 79424
diff changeset
  2163
    val body2 = {oracles = [], thms = [thm], zboxes = zboxes1, zproof = zproof1, proof = proof2};
79332
40cabd57aac3 clarified signature;
wenzelm
parents: 79312
diff changeset
  2164
  in (prop1, PBody body2) end;
36883
4ed0d72def50 added Proofterm.unconstrain_thm_proof for Thm.unconstrainT -- loosely based on the version by krauss/schropp;
wenzelm
parents: 36882
diff changeset
  2165
70422
wenzelm
parents: 70420
diff changeset
  2166
in
wenzelm
parents: 70420
diff changeset
  2167
79425
0875c87b4a4b clarified signature;
wenzelm
parents: 79424
diff changeset
  2168
fun thm_proof thy sorts_proof name shyps hyps concl promises =
0875c87b4a4b clarified signature;
wenzelm
parents: 79424
diff changeset
  2169
  prepare_thm_proof false thy sorts_proof name shyps hyps concl promises #> #2;
36883
4ed0d72def50 added Proofterm.unconstrain_thm_proof for Thm.unconstrainT -- loosely based on the version by krauss/schropp;
wenzelm
parents: 36882
diff changeset
  2170
79425
0875c87b4a4b clarified signature;
wenzelm
parents: 79424
diff changeset
  2171
fun unconstrain_thm_proof thy sorts_proof shyps concl promises body =
80295
8a9588ffc133 more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents: 80288
diff changeset
  2172
  prepare_thm_proof true thy sorts_proof Thm_Name.none
70494
41108e3e9ca5 formal position for PThm nodes;
wenzelm
parents: 70493
diff changeset
  2173
    shyps [] concl promises body;
36883
4ed0d72def50 added Proofterm.unconstrain_thm_proof for Thm.unconstrainT -- loosely based on the version by krauss/schropp;
wenzelm
parents: 36882
diff changeset
  2174
70422
wenzelm
parents: 70420
diff changeset
  2175
end;
wenzelm
parents: 70420
diff changeset
  2176
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  2177
70892
aadb5c23af24 clarified proof_boxes (requires prune_proofs=false);
wenzelm
parents: 70889
diff changeset
  2178
(* PThm identity *)
70416
wenzelm
parents: 70415
diff changeset
  2179
70551
9e87e978be5e clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
wenzelm
parents: 70541
diff changeset
  2180
fun get_identity shyps hyps prop prf =
70436
251f1fb44ccd clarified signature;
wenzelm
parents: 70435
diff changeset
  2181
  let val (_, prop) = Logic.unconstrainT shyps (Logic.list_implies (hyps, prop)) in
79441
eb142693255f clarified signature;
wenzelm
parents: 79440
diff changeset
  2182
    (case term_head_of (proof_head_of prf) of
80295
8a9588ffc133 more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents: 80288
diff changeset
  2183
      PThm ({serial, theory_name, thm_name, prop = prop', ...}, _) =>
70551
9e87e978be5e clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
wenzelm
parents: 70541
diff changeset
  2184
        if prop = prop'
80295
8a9588ffc133 more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents: 80288
diff changeset
  2185
        then SOME {serial = serial, theory_name = theory_name, thm_name = thm_name} else NONE
70551
9e87e978be5e clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
wenzelm
parents: 70541
diff changeset
  2186
    | _ => NONE)
36877
7699f7fafde7 added Proofterm.get_name variants according to krauss/schropp;
wenzelm
parents: 36742
diff changeset
  2187
  end;
7699f7fafde7 added Proofterm.get_name variants according to krauss/schropp;
wenzelm
parents: 36742
diff changeset
  2188
70554
10d41bf28b92 clarified signature;
wenzelm
parents: 70551
diff changeset
  2189
fun get_approximative_name shyps hyps prop prf =
80590
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
  2190
  Option.map #thm_name (get_identity shyps hyps prop prf) |> the_default Thm_Name.none;
70551
9e87e978be5e clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
wenzelm
parents: 70541
diff changeset
  2191
70554
10d41bf28b92 clarified signature;
wenzelm
parents: 70551
diff changeset
  2192
70892
aadb5c23af24 clarified proof_boxes (requires prune_proofs=false);
wenzelm
parents: 70889
diff changeset
  2193
(* thm_id *)
aadb5c23af24 clarified proof_boxes (requires prune_proofs=false);
wenzelm
parents: 70889
diff changeset
  2194
70577
ed651a58afe4 back to uniform serial (reverting 913b4afb6ac2): this allows to treat derivation id like name space entity id;
wenzelm
parents: 70573
diff changeset
  2195
type thm_id = {serial: serial, theory_name: string};
70554
10d41bf28b92 clarified signature;
wenzelm
parents: 70551
diff changeset
  2196
70892
aadb5c23af24 clarified proof_boxes (requires prune_proofs=false);
wenzelm
parents: 70889
diff changeset
  2197
fun make_thm_id (serial, theory_name) : thm_id =
aadb5c23af24 clarified proof_boxes (requires prune_proofs=false);
wenzelm
parents: 70889
diff changeset
  2198
  {serial = serial, theory_name = theory_name};
aadb5c23af24 clarified proof_boxes (requires prune_proofs=false);
wenzelm
parents: 70889
diff changeset
  2199
70915
bd4d37edfee4 clarified expand_proof/expand_name: allow more detailed control via thm_header;
wenzelm
parents: 70909
diff changeset
  2200
fun thm_header_id ({serial, theory_name, ...}: thm_header) =
bd4d37edfee4 clarified expand_proof/expand_name: allow more detailed control via thm_header;
wenzelm
parents: 70909
diff changeset
  2201
  make_thm_id (serial, theory_name);
bd4d37edfee4 clarified expand_proof/expand_name: allow more detailed control via thm_header;
wenzelm
parents: 70909
diff changeset
  2202
70595
2ae7e33c950f clarified thm_id vs. thm_node/thm: retain theory_name;
wenzelm
parents: 70593
diff changeset
  2203
fun thm_id (serial, thm_node) : thm_id =
70892
aadb5c23af24 clarified proof_boxes (requires prune_proofs=false);
wenzelm
parents: 70889
diff changeset
  2204
  make_thm_id (serial, thm_node_theory_name thm_node);
70595
2ae7e33c950f clarified thm_id vs. thm_node/thm: retain theory_name;
wenzelm
parents: 70593
diff changeset
  2205
70554
10d41bf28b92 clarified signature;
wenzelm
parents: 70551
diff changeset
  2206
fun get_id shyps hyps prop prf : thm_id option =
70551
9e87e978be5e clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
wenzelm
parents: 70541
diff changeset
  2207
  (case get_identity shyps hyps prop prf of
9e87e978be5e clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
wenzelm
parents: 70541
diff changeset
  2208
    NONE => NONE
80590
505f97165f52 clarified thm_header command_pos vs. thm_pos;
wenzelm
parents: 80586
diff changeset
  2209
  | SOME {serial, theory_name, thm_name = (thm_name, _), ...} =>
80295
8a9588ffc133 more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents: 80288
diff changeset
  2210
      if Thm_Name.is_empty thm_name then NONE else SOME (make_thm_id (serial, theory_name)));
70551
9e87e978be5e clarified identity of PThm nodes: do not reuse old id after renaming -- enforce uniqueness of substructures;
wenzelm
parents: 70541
diff changeset
  2211
70979
7abe5abb4c05 more detailed proof term output;
wenzelm
parents: 70978
diff changeset
  2212
fun this_id NONE _ = false
7abe5abb4c05 more detailed proof term output;
wenzelm
parents: 70978
diff changeset
  2213
  | this_id (SOME (thm_id: thm_id)) (thm_id': thm_id) = #serial thm_id = #serial thm_id';
7abe5abb4c05 more detailed proof term output;
wenzelm
parents: 70978
diff changeset
  2214
70976
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
  2215
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
  2216
(* proof boxes: intermediate PThm nodes *)
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
  2217
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
  2218
fun proof_boxes {included, excluded} proofs =
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
  2219
  let
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
  2220
    fun boxes_of (Abst (_, _, prf)) = boxes_of prf
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
  2221
      | boxes_of (AbsP (_, _, prf)) = boxes_of prf
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
  2222
      | boxes_of (prf % _) = boxes_of prf
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
  2223
      | boxes_of (prf1 %% prf2) = boxes_of prf1 #> boxes_of prf2
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
  2224
      | boxes_of (PThm (header as {serial = i, ...}, thm_body)) =
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
  2225
          (fn boxes =>
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
  2226
            let val thm_id = thm_header_id header in
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
  2227
              if Inttab.defined boxes i orelse (excluded thm_id andalso not (included thm_id))
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
  2228
              then boxes
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
  2229
              else
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
  2230
                let
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
  2231
                  val prf' = thm_body_proof_open thm_body;
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
  2232
                  val boxes' = Inttab.update (i, (header, prf')) boxes;
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
  2233
                in boxes_of prf' boxes' end
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
  2234
            end)
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
  2235
      | boxes_of MinProof = raise MIN_PROOF ()
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
  2236
      | boxes_of _ = I;
74232
1091880266e5 clarified signature;
wenzelm
parents: 74228
diff changeset
  2237
  in Inttab.fold_rev (cons o #2) (Inttab.build (fold boxes_of proofs)) [] end;
70976
d86798eddc14 more accurate proof_boxes -- from actual proof body;
wenzelm
parents: 70948
diff changeset
  2238
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  2239
end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  2240
70578
7bb2bbb3ccd6 tuned signature;
wenzelm
parents: 70577
diff changeset
  2241
structure Basic_Proofterm =
7bb2bbb3ccd6 tuned signature;
wenzelm
parents: 70577
diff changeset
  2242
struct
7bb2bbb3ccd6 tuned signature;
wenzelm
parents: 70577
diff changeset
  2243
  datatype proof = datatype Proofterm.proof
7bb2bbb3ccd6 tuned signature;
wenzelm
parents: 70577
diff changeset
  2244
  datatype proof_body = datatype Proofterm.proof_body
7bb2bbb3ccd6 tuned signature;
wenzelm
parents: 70577
diff changeset
  2245
  val op %> = Proofterm.%>
7bb2bbb3ccd6 tuned signature;
wenzelm
parents: 70577
diff changeset
  2246
end;
7bb2bbb3ccd6 tuned signature;
wenzelm
parents: 70577
diff changeset
  2247
32094
89b9210c7506 prefer simultaneous join -- for improved scheduling;
wenzelm
parents: 32057
diff changeset
  2248
open Basic_Proofterm;