src/Pure/proofterm.ML
author wenzelm
Tue, 24 Mar 2009 21:24:53 +0100
changeset 30711 952fdbee1b48
parent 30146 a77fc0209723
child 30712 fc9d8b1bf1e0
permissions -rw-r--r--
display derivation status of thms;
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
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
     9
signature BASIC_PROOFTERM =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    10
sig
11543
d61b913431c5 renamed `keep_derivs' to `proofs', and made an integer;
wenzelm
parents: 11540
diff changeset
    11
  val proofs: int ref
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    12
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    13
  datatype proof =
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    14
     MinProof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    15
   | PBound of int
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    16
   | Abst of string * typ option * proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    17
   | AbsP of string * term option * proof
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    18
   | op % of proof * term option
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    19
   | op %% of proof * proof
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    20
   | Hyp of term
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    21
   | PAxm of string * term * typ list option
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    22
   | Oracle of string * term * typ list option
28828
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
    23
   | Promise of serial * term * typ list
29635
31d14e9fa0da proof_body: turned lazy into future -- ensures that body is fulfilled eventually, without explicit force;
wenzelm
parents: 29270
diff changeset
    24
   | PThm of serial * ((string * term * typ list option) * proof_body future)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    25
  and proof_body = PBody of
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    26
    {oracles: (string * term) OrdList.T,
29635
31d14e9fa0da proof_body: turned lazy into future -- ensures that body is fulfilled eventually, without explicit force;
wenzelm
parents: 29270
diff changeset
    27
     thms: (serial * (string * term * proof_body future)) OrdList.T,
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    28
     proof: proof}
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    29
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
    30
  val %> : proof * term -> proof
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    31
end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    32
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    33
signature PROOFTERM =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    34
sig
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    35
  include BASIC_PROOFTERM
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    36
28815
80bb72a0f577 proof_body/pthm: removed redundant types field;
wenzelm
parents: 28812
diff changeset
    37
  type oracle = string * term
29635
31d14e9fa0da proof_body: turned lazy into future -- ensures that body is fulfilled eventually, without explicit force;
wenzelm
parents: 29270
diff changeset
    38
  type pthm = serial * (string * term * proof_body future)
31d14e9fa0da proof_body: turned lazy into future -- ensures that body is fulfilled eventually, without explicit force;
wenzelm
parents: 29270
diff changeset
    39
  val join_body: proof_body future ->
28815
80bb72a0f577 proof_body/pthm: removed redundant types field;
wenzelm
parents: 28812
diff changeset
    40
    {oracles: oracle OrdList.T, thms: pthm OrdList.T, proof: proof}
29635
31d14e9fa0da proof_body: turned lazy into future -- ensures that body is fulfilled eventually, without explicit force;
wenzelm
parents: 29270
diff changeset
    41
  val join_proof: proof_body future -> proof
28815
80bb72a0f577 proof_body/pthm: removed redundant types field;
wenzelm
parents: 28812
diff changeset
    42
  val proof_of: proof_body -> proof
30711
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
    43
  val fold_proof_atoms: bool -> (proof -> 'a -> 'a) -> proof list -> 'a -> 'a
28815
80bb72a0f577 proof_body/pthm: removed redundant types field;
wenzelm
parents: 28812
diff changeset
    44
  val fold_body_thms: (string * term * proof_body -> 'a -> 'a) -> proof_body list -> 'a -> 'a
30711
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
    45
  val status_of: proof_body -> {failed: bool, oracle: bool, unfinished: bool}
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    46
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    47
  val oracle_ord: oracle * oracle -> order
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    48
  val thm_ord: pthm * pthm -> order
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    49
  val make_proof_body: proof -> proof_body
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    50
  val merge_oracles: oracle OrdList.T -> oracle OrdList.T -> oracle OrdList.T
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    51
  val make_oracles: proof -> oracle OrdList.T
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    52
  val merge_thms: pthm OrdList.T -> pthm OrdList.T -> pthm OrdList.T
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    53
  val make_thms: proof -> pthm OrdList.T
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    54
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    55
  (** primitive operations **)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    56
  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
    57
  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
    58
  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
    59
  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
    60
  val strip_combP: proof -> proof * proof list
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    61
  val strip_thm: proof_body -> proof_body
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    62
  val map_proof_terms_option: (term -> term option) -> (typ -> typ option) -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    63
  val map_proof_terms: (term -> term) -> (typ -> typ) -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    64
  val fold_proof_terms: (term -> 'a -> 'a) -> (typ -> 'a -> 'a) -> proof -> 'a -> 'a
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    65
  val maxidx_proof: proof -> int -> int
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    66
  val size_of_proof: proof -> int
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    67
  val change_type: typ list option -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    68
  val prf_abstract_over: term -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    69
  val prf_incr_bv: int -> int -> int -> int -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    70
  val incr_pboundvars: int -> int -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    71
  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
    72
  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
    73
  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
    74
  val norm_proof: Envir.env -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    75
  val norm_proof': Envir.env -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    76
  val prf_subst_bounds: term list -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    77
  val prf_subst_pbounds: proof list -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    78
  val freeze_thaw_prf: proof -> proof * (proof -> proof)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    79
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    80
  (** proof terms for specific inference rules **)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    81
  val implies_intr_proof: term -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    82
  val forall_intr_proof: term -> string -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    83
  val varify_proof: term -> (string * sort) list -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    84
  val freezeT: term -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    85
  val rotate_proof: term list -> term -> int -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    86
  val permute_prems_prf: term list -> int -> int -> proof -> proof
19908
f035261fb5b9 added generalize rule;
wenzelm
parents: 19502
diff changeset
    87
  val generalize: string list * string list -> int -> proof -> proof
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    88
  val instantiate: ((indexname * sort) * typ) list * ((indexname * typ) * term) list
16880
411d91d104c4 tuned instantiate interface;
wenzelm
parents: 16787
diff changeset
    89
    -> proof -> proof
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    90
  val lift_proof: term -> int -> term -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    91
  val assumption_proof: term list -> term -> int -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    92
  val bicompose_proof: bool -> term list -> term list -> term list -> term option ->
23296
25f28f9c28a3 Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents: 23178
diff changeset
    93
    int -> int -> proof -> proof -> proof
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    94
  val equality_axms: (string * term) list
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    95
  val reflexive_axm: proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    96
  val symmetric_axm: proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    97
  val transitive_axm: proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    98
  val equal_intr_axm: proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
    99
  val equal_elim_axm: proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   100
  val abstract_rule_axm: proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   101
  val combination_axm: proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   102
  val reflexive: proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   103
  val symmetric: proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   104
  val transitive: term -> typ -> proof -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   105
  val abstract_rule: term -> string -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   106
  val combination: term -> term -> term -> term -> typ -> proof -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   107
  val equal_intr: term -> term -> proof -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   108
  val equal_elim: term -> term -> proof -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   109
  val axm_proof: string -> term -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   110
  val oracle_proof: string -> term -> proof
28828
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
   111
  val promise_proof: theory -> serial -> term -> proof
28846
9c6025c721d7 fulfill_proof/thm_proof: commuted lazyness;
wenzelm
parents: 28830
diff changeset
   112
  val fulfill_proof: theory -> (serial * proof) list -> proof_body -> proof_body
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   113
  val thm_proof: theory -> string -> term list -> term ->
29636
d01bada1df33 thm_proof: replaced lazy by composed futures;
wenzelm
parents: 29635
diff changeset
   114
    (serial * proof future) list -> proof_body -> pthm * proof
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   115
  val get_name: term list -> term -> proof -> string
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   116
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   117
  (** rewriting on proof terms **)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   118
  val add_prf_rrule: proof * proof -> theory -> theory
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   119
  val add_prf_rproc: (typ list -> proof -> proof option) -> theory -> theory
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   120
  val rewrite_proof: theory -> (proof * proof) list *
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   121
    (typ list -> proof -> proof option) list -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   122
  val rewrite_proof_notypes: (proof * proof) list *
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   123
    (typ list -> proof -> proof option) list -> proof -> proof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   124
  val rew_proof: theory -> proof -> proof
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   125
end
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   126
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   127
structure Proofterm : PROOFTERM =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   128
struct
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   129
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   130
open Envir;
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   131
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   132
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   133
(***** datatype proof *****)
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   134
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   135
datatype proof =
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   136
   MinProof
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   137
 | PBound of int
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   138
 | Abst of string * typ option * proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   139
 | AbsP of string * term option * proof
12497
ec6ba9e6eef3 type_env;
wenzelm
parents: 12311
diff changeset
   140
 | op % of proof * term option
ec6ba9e6eef3 type_env;
wenzelm
parents: 12311
diff changeset
   141
 | op %% of proof * proof
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   142
 | Hyp of term
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   143
 | PAxm of string * term * typ list option
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   144
 | Oracle of string * term * typ list option
28828
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
   145
 | Promise of serial * term * typ list
29635
31d14e9fa0da proof_body: turned lazy into future -- ensures that body is fulfilled eventually, without explicit force;
wenzelm
parents: 29270
diff changeset
   146
 | PThm of serial * ((string * term * typ list option) * proof_body future)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   147
and proof_body = PBody of
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   148
  {oracles: (string * term) OrdList.T,
29635
31d14e9fa0da proof_body: turned lazy into future -- ensures that body is fulfilled eventually, without explicit force;
wenzelm
parents: 29270
diff changeset
   149
   thms: (serial * (string * term * proof_body future)) OrdList.T,
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   150
   proof: proof};
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   151
28815
80bb72a0f577 proof_body/pthm: removed redundant types field;
wenzelm
parents: 28812
diff changeset
   152
type oracle = string * term;
29635
31d14e9fa0da proof_body: turned lazy into future -- ensures that body is fulfilled eventually, without explicit force;
wenzelm
parents: 29270
diff changeset
   153
type pthm = serial * (string * term * proof_body future);
28815
80bb72a0f577 proof_body/pthm: removed redundant types field;
wenzelm
parents: 28812
diff changeset
   154
29635
31d14e9fa0da proof_body: turned lazy into future -- ensures that body is fulfilled eventually, without explicit force;
wenzelm
parents: 29270
diff changeset
   155
val join_body = Future.join #> (fn PBody args => args);
31d14e9fa0da proof_body: turned lazy into future -- ensures that body is fulfilled eventually, without explicit force;
wenzelm
parents: 29270
diff changeset
   156
val join_proof = #proof o join_body;
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   157
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   158
fun proof_of (PBody {proof, ...}) = proof;
17017
fa8e32209734 - Tuned handling of oracles
berghofe
parents: 16983
diff changeset
   159
fa8e32209734 - Tuned handling of oracles
berghofe
parents: 16983
diff changeset
   160
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   161
(***** proof atoms *****)
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   162
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   163
fun fold_proof_atoms all f =
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   164
  let
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   165
    fun app (Abst (_, _, prf)) = app prf
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   166
      | app (AbsP (_, _, prf)) = app prf
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   167
      | app (prf % _) = app prf
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   168
      | app (prf1 %% prf2) = app prf1 #> app prf2
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   169
      | app (prf as PThm (i, (_, body))) = (fn (x, seen) =>
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   170
          if Inttab.defined seen i then (x, seen)
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   171
          else
28815
80bb72a0f577 proof_body/pthm: removed redundant types field;
wenzelm
parents: 28812
diff changeset
   172
            let val (x', seen') =
29635
31d14e9fa0da proof_body: turned lazy into future -- ensures that body is fulfilled eventually, without explicit force;
wenzelm
parents: 29270
diff changeset
   173
              (if all then app (join_proof body) else I) (x, Inttab.update (i, ()) seen)
28815
80bb72a0f577 proof_body/pthm: removed redundant types field;
wenzelm
parents: 28812
diff changeset
   174
            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
   175
      | app prf = (fn (x, seen) => (f prf x, seen));
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   176
  in fn prfs => fn x => #1 (fold app prfs (x, Inttab.empty)) end;
19357
dade85a75c9f Added alternative version of thms_of_proof that does not recursively
berghofe
parents: 19304
diff changeset
   177
30711
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   178
fun fold_body_thms f =
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   179
  let
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   180
    fun app (PBody {thms, ...}) = thms |> fold (fn (i, (name, prop, body)) => fn (x, seen) =>
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   181
      if Inttab.defined seen i then (x, seen)
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   182
      else
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   183
        let
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   184
          val body' = Future.join body;
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   185
          val (x', seen') = app body' (x, Inttab.update (i, ()) seen);
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   186
        in (f (name, prop, body') x', seen') end);
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   187
  in fn bodies => fn x => #1 (fold app bodies (x, Inttab.empty)) end;
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   188
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   189
fun status_of proof_body =
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   190
  let
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   191
    fun status (PBody {oracles, thms, ...}) x =
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   192
      let
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   193
        val ((oracle, unfinished, failed), seen) =
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   194
          (thms, x) |-> fold (fn (i, (_, _, body)) => fn (st, seen) =>
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   195
            if Inttab.defined seen i then (st, seen)
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   196
            else
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   197
              let val seen' = Inttab.update (i, ()) seen in
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   198
                (case Future.peek body of
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   199
                  SOME (Exn.Result body') => status body' (st, seen')
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   200
                | SOME (Exn.Exn _) =>
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   201
                    let val (oracle, unfinished, _) = st
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   202
                    in ((oracle, unfinished, true), seen') end
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   203
                | NONE =>
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   204
                    let val (oracle, _, failed) = st
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   205
                    in ((oracle, true, failed), seen') end)
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   206
              end);
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   207
      in ((oracle orelse not (null oracles), unfinished, failed), seen) end;
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   208
    val (oracle, unfinished, failed) = #1 (status proof_body ((false, false, false), Inttab.empty));
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   209
  in {oracle = oracle, unfinished = unfinished, failed = failed} end;
952fdbee1b48 display derivation status of thms;
wenzelm
parents: 30146
diff changeset
   210
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   211
28815
80bb72a0f577 proof_body/pthm: removed redundant types field;
wenzelm
parents: 28812
diff changeset
   212
(* proof body *)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   213
29269
5c25a2012975 moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
wenzelm
parents: 29265
diff changeset
   214
val oracle_ord = prod_ord fast_string_ord TermOrd.fast_term_ord;
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   215
fun thm_ord ((i, _): pthm, (j, _)) = int_ord (j, i);
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   216
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   217
fun make_body prf =
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   218
  let
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   219
    val (oracles, thms) = fold_proof_atoms false
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   220
      (fn Oracle (s, prop, _) => apfst (cons (s, prop))
28815
80bb72a0f577 proof_body/pthm: removed redundant types field;
wenzelm
parents: 28812
diff changeset
   221
        | PThm (i, ((name, prop, _), body)) => apsnd (cons (i, (name, prop, body)))
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   222
        | _ => I) [prf] ([], []);
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   223
  in (OrdList.make oracle_ord oracles, OrdList.make thm_ord thms) end;
17017
fa8e32209734 - Tuned handling of oracles
berghofe
parents: 16983
diff changeset
   224
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   225
fun make_proof_body prf =
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   226
  let val (oracles, thms) = make_body prf
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   227
  in PBody {oracles = oracles, thms = thms, proof = prf} end;
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   228
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   229
val make_oracles = #1 o make_body;
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   230
val make_thms = #2 o make_body;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   231
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   232
val merge_oracles = OrdList.union oracle_ord;
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   233
val merge_thms = OrdList.union thm_ord;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   234
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   235
fun merge_body (oracles1, thms1) (oracles2, thms2) =
28815
80bb72a0f577 proof_body/pthm: removed redundant types field;
wenzelm
parents: 28812
diff changeset
   236
  (merge_oracles oracles1 oracles2, merge_thms thms1 thms2);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   237
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   238
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   239
(***** proof objects with different levels of detail *****)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   240
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   241
fun (prf %> t) = prf % SOME t;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   242
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   243
val proof_combt = Library.foldl (op %>);
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   244
val proof_combt' = Library.foldl (op %);
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   245
val proof_combP = Library.foldl (op %%);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   246
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20853
diff changeset
   247
fun strip_combt prf =
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   248
    let fun stripc (prf % t, ts) = stripc (prf, t::ts)
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20853
diff changeset
   249
          | stripc  x =  x
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   250
    in  stripc (prf, [])  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   251
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20853
diff changeset
   252
fun strip_combP prf =
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   253
    let fun stripc (prf %% prf', prfs) = stripc (prf, prf'::prfs)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   254
          | stripc  x =  x
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   255
    in  stripc (prf, [])  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   256
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   257
fun strip_thm (body as PBody {proof, ...}) =
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   258
  (case strip_combt (fst (strip_combP proof)) of
29635
31d14e9fa0da proof_body: turned lazy into future -- ensures that body is fulfilled eventually, without explicit force;
wenzelm
parents: 29270
diff changeset
   259
    (PThm (_, (_, body')), _) => Future.join body'
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   260
  | _ => body);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   261
23178
07ba6b58b3d2 simplified/unified list fold;
wenzelm
parents: 22846
diff changeset
   262
val mk_Abst = fold_rev (fn (s, T:typ) => fn prf => Abst (s, NONE, prf));
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   263
fun mk_AbsP (i, prf) = funpow i (fn prf => AbsP ("H", NONE, prf)) prf;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   264
20000
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   265
fun apsome f NONE = raise SAME
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   266
  | apsome f (SOME x) = (case f x of NONE => raise SAME | some => some);
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   267
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   268
fun apsome' f NONE = raise SAME
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   269
  | apsome' f (SOME x) = SOME (f x);
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   270
20000
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   271
fun map_proof_terms_option f g =
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   272
  let
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   273
    fun map_typs (T :: Ts) =
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   274
          (case g T of
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   275
            NONE => T :: map_typs Ts
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   276
          | SOME T' => T' :: (map_typs Ts handle SAME => Ts))
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   277
      | map_typs [] = raise SAME;
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   278
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   279
    fun mapp (Abst (s, T, prf)) = (Abst (s, apsome g T, mapph prf)
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   280
          handle SAME => Abst (s, T, mapp prf))
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   281
      | mapp (AbsP (s, t, prf)) = (AbsP (s, apsome f t, mapph prf)
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   282
          handle SAME => AbsP (s, t, mapp prf))
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   283
      | mapp (prf % t) = (mapp prf % (apsome f t handle SAME => t)
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   284
          handle SAME => prf % apsome f t)
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   285
      | mapp (prf1 %% prf2) = (mapp prf1 %% mapph prf2
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   286
          handle SAME => prf1 %% mapp prf2)
28828
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
   287
      | mapp (PAxm (a, prop, SOME Ts)) = PAxm (a, prop, SOME (map_typs Ts))
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
   288
      | mapp (Oracle (a, prop, SOME Ts)) = Oracle (a, prop, SOME (map_typs Ts))
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
   289
      | mapp (Promise (i, prop, Ts)) = Promise (i, prop, map_typs Ts)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   290
      | mapp (PThm (i, ((a, prop, SOME Ts), body))) =
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   291
          PThm (i, ((a, prop, SOME (map_typs Ts)), body))
20000
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   292
      | mapp _ = raise SAME
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   293
    and mapph prf = (mapp prf handle SAME => prf)
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   294
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   295
  in mapph end;
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   296
22662
3e492ba59355 canonical merge operations
haftmann
parents: 21646
diff changeset
   297
fun same eq f x =
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   298
  let val x' = f x
22662
3e492ba59355 canonical merge operations
haftmann
parents: 21646
diff changeset
   299
  in if eq (x, x') then raise SAME else x' end;
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   300
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   301
fun map_proof_terms f g =
20000
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   302
  map_proof_terms_option
22662
3e492ba59355 canonical merge operations
haftmann
parents: 21646
diff changeset
   303
   (fn t => SOME (same (op =) f t) handle SAME => NONE)
3e492ba59355 canonical merge operations
haftmann
parents: 21646
diff changeset
   304
   (fn T => SOME (same (op =) g T) handle SAME => NONE);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   305
20147
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   306
fun fold_proof_terms f g (Abst (_, SOME T, prf)) = g T #> fold_proof_terms f g prf
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   307
  | fold_proof_terms f g (Abst (_, NONE, prf)) = fold_proof_terms f g prf
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   308
  | fold_proof_terms f g (AbsP (_, SOME t, prf)) = f t #> fold_proof_terms f g prf
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   309
  | fold_proof_terms f g (AbsP (_, NONE, prf)) = fold_proof_terms f g prf
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   310
  | fold_proof_terms f g (prf % SOME t) = fold_proof_terms f g prf #> f t
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   311
  | fold_proof_terms f g (prf % NONE) = fold_proof_terms f g prf
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   312
  | fold_proof_terms f g (prf1 %% prf2) =
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   313
      fold_proof_terms f g prf1 #> fold_proof_terms f g prf2
20159
wenzelm
parents: 20147
diff changeset
   314
  | fold_proof_terms _ g (PAxm (_, _, SOME Ts)) = fold g Ts
28828
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
   315
  | fold_proof_terms _ g (Oracle (_, _, SOME Ts)) = fold g Ts
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
   316
  | fold_proof_terms _ g (Promise (_, _, Ts)) = fold g Ts
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   317
  | fold_proof_terms _ g (PThm (_, ((_, _, SOME Ts), _))) = fold g Ts
20147
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   318
  | fold_proof_terms _ _ _ = I;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   319
20300
963bf056e8f7 replaced maxidx_of_proof by maxidx_proof;
wenzelm
parents: 20159
diff changeset
   320
fun maxidx_proof prf = fold_proof_terms Term.maxidx_term Term.maxidx_typ prf;
12868
cdf338ef5fad New function maxidx_of_proof.
berghofe
parents: 12497
diff changeset
   321
13744
2241191a3c54 Added size_of_proof.
berghofe
parents: 13662
diff changeset
   322
fun size_of_proof (Abst (_, _, prf)) = 1 + size_of_proof prf
13749
6844c38d74df size_of_proof no longer includes size_of_term
berghofe
parents: 13744
diff changeset
   323
  | size_of_proof (AbsP (_, t, prf)) = 1 + size_of_proof prf
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   324
  | size_of_proof (prf % _) = 1 + size_of_proof prf
13744
2241191a3c54 Added size_of_proof.
berghofe
parents: 13662
diff changeset
   325
  | size_of_proof (prf1 %% prf2) = size_of_proof prf1 + size_of_proof prf2
2241191a3c54 Added size_of_proof.
berghofe
parents: 13662
diff changeset
   326
  | size_of_proof _ = 1;
2241191a3c54 Added size_of_proof.
berghofe
parents: 13662
diff changeset
   327
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   328
fun change_type opTs (PAxm (name, prop, _)) = PAxm (name, prop, opTs)
12907
27e6d344d724 New function change_type for changing type assignments of theorems,
berghofe
parents: 12890
diff changeset
   329
  | change_type opTs (Oracle (name, prop, _)) = Oracle (name, prop, opTs)
28828
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
   330
  | change_type opTs (Promise _) = error "change_type: unexpected promise"
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   331
  | change_type opTs (PThm (i, ((name, prop, _), body))) = PThm (i, ((name, prop, opTs), body))
12907
27e6d344d724 New function change_type for changing type assignments of theorems,
berghofe
parents: 12890
diff changeset
   332
  | change_type _ prf = prf;
27e6d344d724 New function change_type for changing type assignments of theorems,
berghofe
parents: 12890
diff changeset
   333
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   334
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   335
(***** utilities *****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   336
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   337
fun strip_abs (_::Ts) (Abs (_, _, t)) = strip_abs Ts t
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   338
  | strip_abs _ t = t;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   339
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   340
fun mk_abs Ts t = Library.foldl (fn (t', T) => Abs ("", T, t')) (t, Ts);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   341
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   342
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20853
diff changeset
   343
(*Abstraction of a proof term over its occurrences of v,
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   344
    which must contain no loose bound variables.
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   345
  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
   346
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   347
fun prf_abstract_over v =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   348
  let
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   349
    fun abst' lev u = if v aconv u then Bound lev else
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   350
      (case u of
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   351
         Abs (a, T, t) => Abs (a, T, abst' (lev + 1) t)
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   352
       | f $ t => (abst' lev f $ absth' lev t handle SAME => f $ abst' lev t)
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   353
       | _ => raise SAME)
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   354
    and absth' lev t = (abst' lev t handle SAME => t);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   355
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   356
    fun abst lev (AbsP (a, t, prf)) =
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   357
          (AbsP (a, apsome' (abst' lev) t, absth lev prf)
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   358
           handle SAME => AbsP (a, t, abst lev prf))
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   359
      | abst lev (Abst (a, T, prf)) = Abst (a, T, abst (lev + 1) prf)
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   360
      | abst lev (prf1 %% prf2) = (abst lev prf1 %% absth lev prf2
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   361
          handle SAME => prf1 %% abst lev prf2)
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   362
      | abst lev (prf % t) = (abst lev prf % Option.map (absth' lev) t
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   363
          handle SAME => prf % apsome' (abst' lev) t)
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   364
      | abst _ _ = raise SAME
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   365
    and absth lev prf = (abst lev prf handle SAME => prf)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   366
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   367
  in absth 0 end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   368
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   369
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   370
(*increments a proof term's non-local bound variables
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   371
  required when moving a proof term within abstractions
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   372
     inc is  increment for bound variables
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   373
     lev is  level at which a bound variable is considered 'loose'*)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   374
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   375
fun incr_bv' inct tlev t = incr_bv (inct, tlev, t);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   376
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   377
fun prf_incr_bv' incP inct Plev tlev (PBound i) =
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20853
diff changeset
   378
      if i >= Plev then PBound (i+incP) else raise SAME
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   379
  | prf_incr_bv' incP inct Plev tlev (AbsP (a, t, body)) =
22662
3e492ba59355 canonical merge operations
haftmann
parents: 21646
diff changeset
   380
      (AbsP (a, apsome' (same (op =) (incr_bv' inct tlev)) t,
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   381
         prf_incr_bv incP inct (Plev+1) tlev body) handle SAME =>
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   382
           AbsP (a, t, prf_incr_bv' incP inct (Plev+1) tlev body))
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   383
  | prf_incr_bv' incP inct Plev tlev (Abst (a, T, body)) =
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   384
      Abst (a, T, prf_incr_bv' incP inct Plev (tlev+1) body)
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20853
diff changeset
   385
  | prf_incr_bv' incP inct Plev tlev (prf %% prf') =
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   386
      (prf_incr_bv' incP inct Plev tlev prf %% prf_incr_bv incP inct Plev tlev prf'
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   387
       handle SAME => prf %% prf_incr_bv' incP inct Plev tlev prf')
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20853
diff changeset
   388
  | prf_incr_bv' incP inct Plev tlev (prf % t) =
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   389
      (prf_incr_bv' incP inct Plev tlev prf % Option.map (incr_bv' inct tlev) t
22662
3e492ba59355 canonical merge operations
haftmann
parents: 21646
diff changeset
   390
       handle SAME => prf % apsome' (same (op =) (incr_bv' inct tlev)) t)
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   391
  | prf_incr_bv' _ _ _ _ _ = raise SAME
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   392
and prf_incr_bv incP inct Plev tlev prf =
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   393
      (prf_incr_bv' incP inct Plev tlev prf handle SAME => prf);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   394
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   395
fun incr_pboundvars  0 0 prf = prf
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   396
  | incr_pboundvars incP inct prf = prf_incr_bv incP inct 0 0 prf;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   397
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   398
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   399
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
   400
  | 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
   401
  | prf_loose_bvar1 (_ % NONE) _ = true
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   402
  | prf_loose_bvar1 (AbsP (_, SOME t, prf)) k = loose_bvar1 (t, k) orelse prf_loose_bvar1 prf k
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   403
  | prf_loose_bvar1 (AbsP (_, NONE, _)) k = true
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   404
  | prf_loose_bvar1 (Abst (_, _, prf)) k = prf_loose_bvar1 prf (k+1)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   405
  | prf_loose_bvar1 _ _ = false;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   406
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   407
fun prf_loose_Pbvar1 (PBound i) k = i = k
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   408
  | 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
   409
  | prf_loose_Pbvar1 (prf % _) k = prf_loose_Pbvar1 prf k
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   410
  | prf_loose_Pbvar1 (AbsP (_, _, prf)) k = prf_loose_Pbvar1 prf (k+1)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   411
  | prf_loose_Pbvar1 (Abst (_, _, prf)) k = prf_loose_Pbvar1 prf k
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   412
  | prf_loose_Pbvar1 _ _ = false;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   413
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   414
fun prf_add_loose_bnos plev tlev (PBound i) (is, js) =
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   415
      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
   416
  | prf_add_loose_bnos plev tlev (prf1 %% prf2) p =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   417
      prf_add_loose_bnos plev tlev prf2
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   418
        (prf_add_loose_bnos plev tlev prf1 p)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   419
  | prf_add_loose_bnos plev tlev (prf % opt) (is, js) =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   420
      prf_add_loose_bnos plev tlev prf (case opt of
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   421
          NONE => (is, insert (op =) ~1 js)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   422
        | SOME t => (is, add_loose_bnos (t, tlev, js)))
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   423
  | prf_add_loose_bnos plev tlev (AbsP (_, opt, prf)) (is, js) =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   424
      prf_add_loose_bnos (plev+1) tlev prf (case opt of
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   425
          NONE => (is, insert (op =) ~1 js)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   426
        | SOME t => (is, add_loose_bnos (t, tlev, js)))
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   427
  | prf_add_loose_bnos plev tlev (Abst (_, _, prf)) p =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   428
      prf_add_loose_bnos plev (tlev+1) prf p
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   429
  | prf_add_loose_bnos _ _ _ _ = ([], []);
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   430
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   431
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   432
(**** substitutions ****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   433
20509
073a5ed7dd71 moved term subst functions to TermSubst;
wenzelm
parents: 20300
diff changeset
   434
fun del_conflicting_tvars envT T = TermSubst.instantiateT
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19357
diff changeset
   435
  (map_filter (fn ixnS as (_, S) =>
26328
b2d6f520172c Type.lookup now curried
haftmann
parents: 23780
diff changeset
   436
     (Type.lookup envT ixnS; NONE) handle TYPE _ =>
29270
0eade173f77e moved old add_type_XXX, add_term_XXX etc. to structure OldTerm;
wenzelm
parents: 29269
diff changeset
   437
        SOME (ixnS, TFree ("'dummy", S))) (OldTerm.typ_tvars T)) T;
18316
4b62e0cb3aa8 Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents: 18030
diff changeset
   438
20509
073a5ed7dd71 moved term subst functions to TermSubst;
wenzelm
parents: 20300
diff changeset
   439
fun del_conflicting_vars env t = TermSubst.instantiate
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19357
diff changeset
   440
  (map_filter (fn ixnS as (_, S) =>
26328
b2d6f520172c Type.lookup now curried
haftmann
parents: 23780
diff changeset
   441
     (Type.lookup (type_env env) ixnS; NONE) handle TYPE _ =>
29270
0eade173f77e moved old add_type_XXX, add_term_XXX etc. to structure OldTerm;
wenzelm
parents: 29269
diff changeset
   442
        SOME (ixnS, TFree ("'dummy", S))) (OldTerm.term_tvars t),
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19357
diff changeset
   443
   map_filter (fn Var (ixnT as (_, T)) =>
18316
4b62e0cb3aa8 Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents: 18030
diff changeset
   444
     (Envir.lookup (env, ixnT); NONE) handle TYPE _ =>
29265
5b4247055bd7 moved old add_term_vars, add_term_frees etc. to structure OldTerm;
wenzelm
parents: 29261
diff changeset
   445
        SOME (ixnT, Free ("dummy", T))) (OldTerm.term_vars t)) t;
18316
4b62e0cb3aa8 Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents: 18030
diff changeset
   446
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   447
fun norm_proof env =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   448
  let
12497
ec6ba9e6eef3 type_env;
wenzelm
parents: 12311
diff changeset
   449
    val envT = type_env env;
18316
4b62e0cb3aa8 Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents: 18030
diff changeset
   450
    fun msg s = warning ("type conflict in norm_proof:\n" ^ s);
4b62e0cb3aa8 Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents: 18030
diff changeset
   451
    fun htype f t = f env t handle TYPE (s, _, _) =>
4b62e0cb3aa8 Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents: 18030
diff changeset
   452
      (msg s; f env (del_conflicting_vars env t));
4b62e0cb3aa8 Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents: 18030
diff changeset
   453
    fun htypeT f T = f envT T handle TYPE (s, _, _) =>
4b62e0cb3aa8 Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents: 18030
diff changeset
   454
      (msg s; f envT (del_conflicting_tvars envT T));
4b62e0cb3aa8 Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents: 18030
diff changeset
   455
    fun htypeTs f Ts = f envT Ts handle TYPE (s, _, _) =>
4b62e0cb3aa8 Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents: 18030
diff changeset
   456
      (msg s; f envT (map (del_conflicting_tvars envT) Ts));
4b62e0cb3aa8 Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents: 18030
diff changeset
   457
    fun norm (Abst (s, T, prf)) = (Abst (s, apsome' (htypeT norm_type_same) T, normh prf)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   458
          handle SAME => Abst (s, T, norm prf))
18316
4b62e0cb3aa8 Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents: 18030
diff changeset
   459
      | norm (AbsP (s, t, prf)) = (AbsP (s, apsome' (htype norm_term_same) t, normh prf)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   460
          handle SAME => AbsP (s, t, norm prf))
18316
4b62e0cb3aa8 Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents: 18030
diff changeset
   461
      | norm (prf % t) = (norm prf % Option.map (htype norm_term) t
4b62e0cb3aa8 Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents: 18030
diff changeset
   462
          handle SAME => prf % apsome' (htype norm_term_same) t)
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   463
      | norm (prf1 %% prf2) = (norm prf1 %% normh prf2
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   464
          handle SAME => prf1 %% norm prf2)
18316
4b62e0cb3aa8 Improved norm_proof to handle proofs containing term (type) variables
berghofe
parents: 18030
diff changeset
   465
      | norm (PAxm (s, prop, Ts)) = PAxm (s, prop, apsome' (htypeTs norm_types_same) Ts)
28828
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
   466
      | norm (Oracle (s, prop, Ts)) = Oracle (s, prop, apsome' (htypeTs norm_types_same) Ts)
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
   467
      | norm (Promise (i, prop, Ts)) = Promise (i, prop, htypeTs norm_types_same Ts)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   468
      | norm (PThm (i, ((s, t, Ts), body))) =
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   469
          PThm (i, ((s, t, apsome' (htypeTs norm_types_same) Ts), body))
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   470
      | norm _ = raise SAME
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   471
    and normh prf = (norm prf handle SAME => prf);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   472
  in normh end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   473
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   474
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   475
(***** Remove some types in proof term (to save space) *****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   476
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   477
fun remove_types (Abs (s, _, t)) = Abs (s, dummyT, remove_types t)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   478
  | remove_types (t $ u) = remove_types t $ remove_types u
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   479
  | remove_types (Const (s, _)) = Const (s, dummyT)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   480
  | remove_types t = t;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   481
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   482
fun remove_types_env (Envir.Envir {iTs, asol, maxidx}) =
15797
a63605582573 - Eliminated nodup_vars check.
berghofe
parents: 15632
diff changeset
   483
  Envir.Envir {iTs = iTs, asol = Vartab.map (apsnd remove_types) asol,
a63605582573 - Eliminated nodup_vars check.
berghofe
parents: 15632
diff changeset
   484
    maxidx = maxidx};
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   485
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   486
fun norm_proof' env prf = norm_proof (remove_types_env env) prf;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   487
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   488
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   489
(**** substitution of bound variables ****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   490
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   491
fun prf_subst_bounds args prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   492
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   493
    val n = length args;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   494
    fun subst' lev (Bound i) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   495
         (if i<lev then raise SAME    (*var is locally bound*)
30146
a77fc0209723 eliminated NJ's List.nth;
wenzelm
parents: 29642
diff changeset
   496
          else  incr_boundvars lev (nth args (i-lev))
a77fc0209723 eliminated NJ's List.nth;
wenzelm
parents: 29642
diff changeset
   497
                  handle Subscript => Bound (i-n))  (*loose: change it*)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   498
      | subst' lev (Abs (a, T, body)) = Abs (a, T,  subst' (lev+1) body)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   499
      | subst' lev (f $ t) = (subst' lev f $ substh' lev t
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   500
          handle SAME => f $ subst' lev t)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   501
      | subst' _ _ = raise SAME
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   502
    and substh' lev t = (subst' lev t handle SAME => t);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   503
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   504
    fun subst lev (AbsP (a, t, body)) = (AbsP (a, apsome' (subst' lev) t, substh lev body)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   505
          handle SAME => AbsP (a, t, subst lev body))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   506
      | subst lev (Abst (a, T, body)) = Abst (a, T, subst (lev+1) body)
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   507
      | subst lev (prf %% prf') = (subst lev prf %% substh lev prf'
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   508
          handle SAME => prf %% subst lev prf')
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   509
      | subst lev (prf % t) = (subst lev prf % Option.map (substh' lev) t
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   510
          handle SAME => prf % apsome' (subst' lev) t)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   511
      | subst _ _ = raise SAME
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   512
    and substh lev prf = (subst lev prf handle SAME => prf)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   513
  in case args of [] => prf | _ => substh 0 prf end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   514
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   515
fun prf_subst_pbounds args prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   516
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   517
    val n = length args;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   518
    fun subst (PBound i) Plev tlev =
20147
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   519
         (if i < Plev then raise SAME    (*var is locally bound*)
30146
a77fc0209723 eliminated NJ's List.nth;
wenzelm
parents: 29642
diff changeset
   520
          else incr_pboundvars Plev tlev (nth args (i-Plev))
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   521
                 handle Subscript => PBound (i-n)  (*loose: change it*))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   522
      | subst (AbsP (a, t, body)) Plev tlev = AbsP (a, t, subst body (Plev+1) tlev)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   523
      | subst (Abst (a, T, body)) Plev tlev = Abst (a, T, subst body Plev (tlev+1))
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   524
      | subst (prf %% prf') Plev tlev = (subst prf Plev tlev %% substh prf' Plev tlev
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   525
          handle SAME => prf %% subst prf' Plev tlev)
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   526
      | subst (prf % t) Plev tlev = subst prf Plev tlev % t
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   527
      | subst  prf _ _ = raise SAME
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   528
    and substh prf Plev tlev = (subst prf Plev tlev handle SAME => prf)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   529
  in case args of [] => prf | _ => substh prf 0 0 end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   530
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   531
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   532
(**** Freezing and thawing of variables in proof terms ****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   533
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   534
fun frzT names =
17325
d9d50222808e introduced new-style AList operations
haftmann
parents: 17314
diff changeset
   535
  map_type_tvar (fn (ixn, xs) => TFree ((the o AList.lookup (op =) names) ixn, xs));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   536
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   537
fun thawT names =
17325
d9d50222808e introduced new-style AList operations
haftmann
parents: 17314
diff changeset
   538
  map_type_tfree (fn (s, xs) => case AList.lookup (op =) names s of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   539
      NONE => TFree (s, xs)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   540
    | SOME ixn => TVar (ixn, xs));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   541
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   542
fun freeze names names' (t $ u) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   543
      freeze names names' t $ freeze names names' u
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   544
  | freeze names names' (Abs (s, T, t)) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   545
      Abs (s, frzT names' T, freeze names names' t)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   546
  | freeze names names' (Const (s, T)) = Const (s, frzT names' T)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   547
  | freeze names names' (Free (s, T)) = Free (s, frzT names' T)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   548
  | freeze names names' (Var (ixn, T)) =
17325
d9d50222808e introduced new-style AList operations
haftmann
parents: 17314
diff changeset
   549
      Free ((the o AList.lookup (op =) names) ixn, frzT names' T)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   550
  | freeze names names' t = t;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   551
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   552
fun thaw names names' (t $ u) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   553
      thaw names names' t $ thaw names names' u
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   554
  | thaw names names' (Abs (s, T, t)) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   555
      Abs (s, thawT names' T, thaw names names' t)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   556
  | thaw names names' (Const (s, T)) = Const (s, thawT names' T)
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20853
diff changeset
   557
  | thaw names names' (Free (s, T)) =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   558
      let val T' = thawT names' T
17325
d9d50222808e introduced new-style AList operations
haftmann
parents: 17314
diff changeset
   559
      in case AList.lookup (op =) names s of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   560
          NONE => Free (s, T')
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   561
        | SOME ixn => Var (ixn, T')
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   562
      end
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   563
  | thaw names names' (Var (ixn, T)) = Var (ixn, thawT names' T)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   564
  | thaw names names' t = t;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   565
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   566
fun freeze_thaw_prf prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   567
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   568
    val (fs, Tfs, vs, Tvs) = fold_proof_terms
20147
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   569
      (fn t => fn (fs, Tfs, vs, Tvs) =>
29261
7ee78cc8ef2c freeze_thaw: canonical Term.add_XXX operations;
wenzelm
parents: 28971
diff changeset
   570
         (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
   571
          Term.add_var_names t vs, Term.add_tvar_names t Tvs))
20147
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   572
      (fn T => fn (fs, Tfs, vs, Tvs) =>
29261
7ee78cc8ef2c freeze_thaw: canonical Term.add_XXX operations;
wenzelm
parents: 28971
diff changeset
   573
         (fs, Term.add_tfree_namesT T Tfs,
7ee78cc8ef2c freeze_thaw: canonical Term.add_XXX operations;
wenzelm
parents: 28971
diff changeset
   574
          vs, Term.add_tvar_namesT T Tvs))
20147
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   575
      prf ([], [], [], []);
29261
7ee78cc8ef2c freeze_thaw: canonical Term.add_XXX operations;
wenzelm
parents: 28971
diff changeset
   576
    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
   577
    val names' = Tvs ~~ Name.variant_list Tfs (map fst Tvs);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   578
    val rnames = map swap names;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   579
    val rnames' = map swap names';
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   580
  in
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   581
    (map_proof_terms (freeze names names') (frzT names') prf,
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   582
     map_proof_terms (thaw rnames rnames') (thawT rnames'))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   583
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   584
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   585
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   586
(***** implication introduction *****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   587
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   588
fun implies_intr_proof h prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   589
  let
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   590
    fun abshyp i (Hyp t) = if h aconv t then PBound i else raise SAME
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   591
      | abshyp i (Abst (s, T, prf)) = Abst (s, T, abshyp i prf)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   592
      | abshyp i (AbsP (s, t, prf)) = AbsP (s, t, abshyp (i+1) prf)
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   593
      | abshyp i (prf % t) = abshyp i prf % t
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   594
      | abshyp i (prf1 %% prf2) = (abshyp i prf1 %% abshyph i prf2
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   595
          handle SAME => prf1 %% abshyp i prf2)
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   596
      | abshyp _ _ = raise SAME
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   597
    and abshyph i prf = (abshyp i prf handle SAME => prf)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   598
  in
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   599
    AbsP ("H", NONE (*h*), abshyph 0 prf)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   600
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   601
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   602
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   603
(***** forall introduction *****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   604
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   605
fun forall_intr_proof x a prf = Abst (a, NONE, prf_abstract_over x prf);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   606
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   607
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   608
(***** varify *****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   609
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   610
fun varify_proof t fixed prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   611
  let
19304
15f001295a7b remove (op =);
wenzelm
parents: 19222
diff changeset
   612
    val fs = Term.fold_types (Term.fold_atyps
15f001295a7b remove (op =);
wenzelm
parents: 19222
diff changeset
   613
      (fn TFree v => if member (op =) fixed v then I else insert (op =) v | _ => I)) t [];
29261
7ee78cc8ef2c freeze_thaw: canonical Term.add_XXX operations;
wenzelm
parents: 28971
diff changeset
   614
    val used = Name.context
7ee78cc8ef2c freeze_thaw: canonical Term.add_XXX operations;
wenzelm
parents: 28971
diff changeset
   615
      |> fold_types (fold_atyps (fn TVar ((a, _), _) => Name.declare a | _ => I)) t;
7ee78cc8ef2c freeze_thaw: canonical Term.add_XXX operations;
wenzelm
parents: 28971
diff changeset
   616
    val fmap = fs ~~ (#1 (Name.variants (map fst fs) used));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   617
    fun thaw (f as (a, S)) =
17314
04e21a27c0ad introduces some modern-style AList operations
haftmann
parents: 17221
diff changeset
   618
      (case AList.lookup (op =) fmap f of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   619
        NONE => TFree f
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   620
      | SOME b => TVar ((b, 0), S));
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   621
  in map_proof_terms (map_types (map_type_tfree thaw)) (map_type_tfree thaw) prf end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   622
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   623
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   624
local
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   625
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   626
fun new_name (ix, (pairs,used)) =
20071
8f3e1ddb50e6 replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents: 20000
diff changeset
   627
  let val v = Name.variant used (string_of_indexname ix)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   628
  in  ((ix, v) :: pairs, v :: used)  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   629
17325
d9d50222808e introduced new-style AList operations
haftmann
parents: 17314
diff changeset
   630
fun freeze_one alist (ix, sort) = (case AList.lookup (op =) alist ix of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   631
    NONE => TVar (ix, sort)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   632
  | SOME name => TFree (name, sort));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   633
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   634
in
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   635
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   636
fun freezeT t prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   637
  let
29270
0eade173f77e moved old add_type_XXX, add_term_XXX etc. to structure OldTerm;
wenzelm
parents: 29269
diff changeset
   638
    val used = OldTerm.it_term_types OldTerm.add_typ_tfree_names (t, [])
0eade173f77e moved old add_type_XXX, add_term_XXX etc. to structure OldTerm;
wenzelm
parents: 29269
diff changeset
   639
    and tvars = map #1 (OldTerm.it_term_types OldTerm.add_typ_tvars (t, []));
23178
07ba6b58b3d2 simplified/unified list fold;
wenzelm
parents: 22846
diff changeset
   640
    val (alist, _) = List.foldr new_name ([], used) tvars;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   641
  in
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   642
    (case alist of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   643
      [] => prf (*nothing to do!*)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   644
    | _ =>
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   645
      let val frzT = map_type_tvar (freeze_one alist)
20548
8ef25fe585a8 renamed Term.map_term_types to Term.map_types (cf. Term.fold_types);
wenzelm
parents: 20509
diff changeset
   646
      in map_proof_terms (map_types frzT) frzT prf end)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   647
  end;
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
end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   650
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   651
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   652
(***** rotate assumptions *****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   653
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   654
fun rotate_proof Bs Bi m prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   655
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   656
    val params = Term.strip_all_vars Bi;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   657
    val asms = Logic.strip_imp_prems (Term.strip_all_body Bi);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   658
    val i = length asms;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   659
    val j = length Bs;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   660
  in
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   661
    mk_AbsP (j+1, proof_combP (prf, map PBound
23178
07ba6b58b3d2 simplified/unified list fold;
wenzelm
parents: 22846
diff changeset
   662
      (j downto 1) @ [mk_Abst params (mk_AbsP (i,
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   663
        proof_combP (proof_combt (PBound i, map Bound ((length params - 1) downto 0)),
23178
07ba6b58b3d2 simplified/unified list fold;
wenzelm
parents: 22846
diff changeset
   664
          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
   665
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   666
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   667
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   668
(***** permute premises *****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   669
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   670
fun permute_prems_prf prems j k prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   671
  let val n = length prems
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   672
  in mk_AbsP (n, proof_combP (prf,
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   673
    map PBound ((n-1 downto n-j) @ (k-1 downto 0) @ (n-j-1 downto k))))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   674
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   675
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   676
19908
f035261fb5b9 added generalize rule;
wenzelm
parents: 19502
diff changeset
   677
(***** generalization *****)
f035261fb5b9 added generalize rule;
wenzelm
parents: 19502
diff changeset
   678
20000
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   679
fun generalize (tfrees, frees) idx =
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   680
  map_proof_terms_option
20509
073a5ed7dd71 moved term subst functions to TermSubst;
wenzelm
parents: 20300
diff changeset
   681
    (TermSubst.generalize_option (tfrees, frees) idx)
073a5ed7dd71 moved term subst functions to TermSubst;
wenzelm
parents: 20300
diff changeset
   682
    (TermSubst.generalizeT_option tfrees idx);
19908
f035261fb5b9 added generalize rule;
wenzelm
parents: 19502
diff changeset
   683
f035261fb5b9 added generalize rule;
wenzelm
parents: 19502
diff changeset
   684
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   685
(***** instantiation *****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   686
20000
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   687
fun instantiate (instT, inst) =
2fa767ab91aa added map_proof_terms_option;
wenzelm
parents: 19908
diff changeset
   688
  map_proof_terms_option
20509
073a5ed7dd71 moved term subst functions to TermSubst;
wenzelm
parents: 20300
diff changeset
   689
    (TermSubst.instantiate_option (instT, map (apsnd remove_types) inst))
073a5ed7dd71 moved term subst functions to TermSubst;
wenzelm
parents: 20300
diff changeset
   690
    (TermSubst.instantiateT_option instT);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   691
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   692
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   693
(***** lifting *****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   694
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   695
fun lift_proof Bi inc prop prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   696
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   697
    fun lift'' Us Ts t = strip_abs Ts (Logic.incr_indexes (Us, inc) (mk_abs Ts t));
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   698
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   699
    fun lift' Us Ts (Abst (s, T, prf)) =
22662
3e492ba59355 canonical merge operations
haftmann
parents: 21646
diff changeset
   700
          (Abst (s, apsome' (same (op =) (Logic.incr_tvar inc)) T, lifth' Us (dummyT::Ts) prf)
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   701
           handle SAME => Abst (s, T, lift' Us (dummyT::Ts) prf))
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   702
      | lift' Us Ts (AbsP (s, t, prf)) =
22662
3e492ba59355 canonical merge operations
haftmann
parents: 21646
diff changeset
   703
          (AbsP (s, apsome' (same (op =) (lift'' Us Ts)) t, lifth' Us Ts prf)
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   704
           handle SAME => AbsP (s, t, lift' Us Ts prf))
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   705
      | lift' Us Ts (prf % t) = (lift' Us Ts prf % Option.map (lift'' Us Ts) t
22662
3e492ba59355 canonical merge operations
haftmann
parents: 21646
diff changeset
   706
          handle SAME => prf % apsome' (same (op =) (lift'' Us Ts)) t)
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   707
      | lift' Us Ts (prf1 %% prf2) = (lift' Us Ts prf1 %% lifth' Us Ts prf2
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   708
          handle SAME => prf1 %% lift' Us Ts prf2)
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   709
      | lift' _ _ (PAxm (s, prop, Ts)) =
22662
3e492ba59355 canonical merge operations
haftmann
parents: 21646
diff changeset
   710
          PAxm (s, prop, apsome' (same (op =) (map (Logic.incr_tvar inc))) Ts)
28828
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
   711
      | lift' _ _ (Oracle (s, prop, Ts)) =
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
   712
          Oracle (s, prop, apsome' (same (op =) (map (Logic.incr_tvar inc))) Ts)
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
   713
      | lift' _ _ (Promise (i, prop, Ts)) =
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
   714
          Promise (i, prop, same (op =) (map (Logic.incr_tvar inc)) Ts)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   715
      | lift' _ _ (PThm (i, ((s, prop, Ts), body))) =
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   716
          PThm (i, ((s, prop, apsome' (same (op =) (map (Logic.incr_tvar inc))) Ts), body))
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   717
      | lift' _ _ _ = raise SAME
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   718
    and lifth' Us Ts prf = (lift' Us Ts prf handle SAME => prf);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   719
18030
5dadabde8fe4 Logic.lift_all;
wenzelm
parents: 17756
diff changeset
   720
    val ps = map (Logic.lift_all inc Bi) (Logic.strip_imp_prems prop);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   721
    val k = length ps;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   722
23178
07ba6b58b3d2 simplified/unified list fold;
wenzelm
parents: 22846
diff changeset
   723
    fun mk_app b (i, j, prf) =
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   724
          if b then (i-1, j, prf %% PBound i) else (i, j-1, prf %> Bound j);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   725
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   726
    fun lift Us bs i j (Const ("==>", _) $ A $ B) =
20147
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   727
            AbsP ("H", NONE (*A*), lift Us (true::bs) (i+1) j B)
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20853
diff changeset
   728
      | lift Us bs i j (Const ("all", _) $ Abs (a, T, t)) =
20147
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
   729
            Abst (a, NONE (*T*), lift (T::Us) (false::bs) i (j+1) t)
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   730
      | lift Us bs i j _ = proof_combP (lifth' (rev Us) [] prf,
23178
07ba6b58b3d2 simplified/unified list fold;
wenzelm
parents: 22846
diff changeset
   731
            map (fn k => (#3 (fold_rev mk_app bs (i-1, j-1, PBound k))))
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   732
              (i + k - 1 downto i));
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   733
  in
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   734
    mk_AbsP (k, lift [] [] 0 0 Bi)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   735
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   736
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   737
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   738
(***** proof by assumption *****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   739
23296
25f28f9c28a3 Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents: 23178
diff changeset
   740
fun mk_asm_prf t i m =
25f28f9c28a3 Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents: 23178
diff changeset
   741
  let
25f28f9c28a3 Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents: 23178
diff changeset
   742
    fun imp_prf _ i 0 = PBound i
25f28f9c28a3 Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents: 23178
diff changeset
   743
      | imp_prf (Const ("==>", _) $ A $ B) i m = AbsP ("H", NONE (*A*), imp_prf B (i+1) (m-1))
25f28f9c28a3 Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents: 23178
diff changeset
   744
      | imp_prf _ i _ = PBound i;
25f28f9c28a3 Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents: 23178
diff changeset
   745
    fun all_prf (Const ("all", _) $ Abs (a, T, t)) = Abst (a, NONE (*T*), all_prf t)
25f28f9c28a3 Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents: 23178
diff changeset
   746
      | all_prf t = imp_prf t (~i) m
25f28f9c28a3 Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents: 23178
diff changeset
   747
  in all_prf t end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   748
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   749
fun assumption_proof Bs Bi n prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   750
  mk_AbsP (length Bs, proof_combP (prf,
23296
25f28f9c28a3 Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents: 23178
diff changeset
   751
    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
   752
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   753
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   754
(***** Composition of object rule with proof state *****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   755
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   756
fun flatten_params_proof i j n (Const ("==>", _) $ A $ B, k) =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   757
      AbsP ("H", NONE (*A*), flatten_params_proof (i+1) j n (B, k))
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   758
  | flatten_params_proof i j n (Const ("all", _) $ Abs (a, T, t), k) =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   759
      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
   760
  | flatten_params_proof i j n (_, k) = proof_combP (proof_combt (PBound (k+i),
19304
15f001295a7b remove (op =);
wenzelm
parents: 19222
diff changeset
   761
      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
   762
23296
25f28f9c28a3 Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents: 23178
diff changeset
   763
fun bicompose_proof flatten Bs oldAs newAs A n m rprf sprf =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   764
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   765
    val la = length newAs;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   766
    val lb = length Bs;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   767
  in
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   768
    mk_AbsP (lb+la, proof_combP (sprf,
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   769
      map PBound (lb + la - 1 downto la)) %%
23296
25f28f9c28a3 Adapted Proofterm.bicompose_proof to Larry's changes in
berghofe
parents: 23178
diff changeset
   770
        proof_combP (rprf, (if n>0 then [mk_asm_prf (the A) n m] else []) @
18485
5959295f82d3 bicompose_proof: no_flatten;
wenzelm
parents: 18316
diff changeset
   771
          map (if flatten then flatten_params_proof 0 0 n else PBound o snd)
5959295f82d3 bicompose_proof: no_flatten;
wenzelm
parents: 18316
diff changeset
   772
            (oldAs ~~ (la - 1 downto 0))))
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   773
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   774
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   775
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   776
(***** axioms for equality *****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   777
14854
61bdf2ae4dc5 removed obsolete sort 'logic';
wenzelm
parents: 14787
diff changeset
   778
val aT = TFree ("'a", []);
61bdf2ae4dc5 removed obsolete sort 'logic';
wenzelm
parents: 14787
diff changeset
   779
val bT = TFree ("'b", []);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   780
val x = Free ("x", aT);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   781
val y = Free ("y", aT);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   782
val z = Free ("z", aT);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   783
val A = Free ("A", propT);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   784
val B = Free ("B", propT);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   785
val f = Free ("f", aT --> bT);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   786
val g = Free ("g", aT --> bT);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   787
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   788
local open Logic in
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
val equality_axms =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   791
  [("reflexive", mk_equals (x, x)),
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   792
   ("symmetric", mk_implies (mk_equals (x, y), mk_equals (y, x))),
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   793
   ("transitive", list_implies ([mk_equals (x, y), mk_equals (y, z)], mk_equals (x, z))),
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   794
   ("equal_intr", list_implies ([mk_implies (A, B), mk_implies (B, A)], mk_equals (A, B))),
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   795
   ("equal_elim", list_implies ([mk_equals (A, B), A], B)),
27330
1af2598b5f7d Logic.all/mk_equals/mk_implies;
wenzelm
parents: 26631
diff changeset
   796
   ("abstract_rule", mk_implies
1af2598b5f7d Logic.all/mk_equals/mk_implies;
wenzelm
parents: 26631
diff changeset
   797
      (all x (mk_equals (f $ x, g $ x)), mk_equals (lambda x (f $ x), lambda x (g $ x)))),
1af2598b5f7d Logic.all/mk_equals/mk_implies;
wenzelm
parents: 26631
diff changeset
   798
   ("combination", list_implies
1af2598b5f7d Logic.all/mk_equals/mk_implies;
wenzelm
parents: 26631
diff changeset
   799
      ([mk_equals (f, g), mk_equals (x, y)], mk_equals (f $ x, g $ y)))];
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   800
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   801
val [reflexive_axm, symmetric_axm, transitive_axm, equal_intr_axm,
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   802
  equal_elim_axm, abstract_rule_axm, combination_axm] =
26424
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 26328
diff changeset
   803
    map (fn (s, t) => PAxm ("Pure." ^ s, varify t, NONE)) equality_axms;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   804
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   805
end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   806
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   807
val reflexive = reflexive_axm % NONE;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   808
26424
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 26328
diff changeset
   809
fun symmetric (prf as PAxm ("Pure.reflexive", _, _) % _) = prf
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   810
  | symmetric prf = symmetric_axm % NONE % NONE %% prf;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   811
26424
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 26328
diff changeset
   812
fun transitive _ _ (PAxm ("Pure.reflexive", _, _) % _) prf2 = prf2
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 26328
diff changeset
   813
  | transitive _ _ prf1 (PAxm ("Pure.reflexive", _, _) % _) = prf1
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   814
  | transitive u (Type ("prop", [])) prf1 prf2 =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   815
      transitive_axm % NONE % SOME (remove_types u) % NONE %% prf1 %% prf2
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   816
  | transitive u T prf1 prf2 =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   817
      transitive_axm % NONE % NONE % NONE %% prf1 %% prf2;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   818
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   819
fun abstract_rule x a prf =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   820
  abstract_rule_axm % NONE % NONE %% forall_intr_proof x a prf;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   821
26424
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 26328
diff changeset
   822
fun check_comb (PAxm ("Pure.combination", _, _) % f % g % _ % _ %% prf %% _) =
19502
wenzelm
parents: 19482
diff changeset
   823
      is_some f orelse check_comb prf
26424
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 26328
diff changeset
   824
  | check_comb (PAxm ("Pure.transitive", _, _) % _ % _ % _ %% prf1 %% prf2) =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   825
      check_comb prf1 andalso check_comb prf2
26424
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 26328
diff changeset
   826
  | check_comb (PAxm ("Pure.symmetric", _, _) % _ % _ %% prf) = check_comb prf
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   827
  | check_comb _ = false;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   828
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   829
fun combination f g t u (Type (_, [T, U])) prf1 prf2 =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   830
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   831
    val f = Envir.beta_norm f;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   832
    val g = Envir.beta_norm g;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   833
    val prf =  if check_comb prf1 then
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   834
        combination_axm % NONE % NONE
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   835
      else (case prf1 of
26424
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 26328
diff changeset
   836
          PAxm ("Pure.reflexive", _, _) % _ =>
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   837
            combination_axm %> remove_types f % NONE
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   838
        | _ => combination_axm %> remove_types f %> remove_types g)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   839
  in
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   840
    (case T of
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   841
       Type ("fun", _) => prf %
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   842
         (case head_of f of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   843
            Abs _ => SOME (remove_types t)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   844
          | Var _ => SOME (remove_types t)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   845
          | _ => NONE) %
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   846
         (case head_of g of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   847
            Abs _ => SOME (remove_types u)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   848
          | Var _ => SOME (remove_types u)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   849
          | _ => NONE) %% prf1 %% prf2
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   850
     | _ => prf % NONE % NONE %% prf1 %% prf2)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   851
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   852
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   853
fun equal_intr A B prf1 prf2 =
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   854
  equal_intr_axm %> remove_types A %> remove_types B %% prf1 %% prf2;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   855
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   856
fun equal_elim A B prf1 prf2 =
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   857
  equal_elim_axm %> remove_types A %> remove_types B %% prf1 %% prf2;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   858
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   859
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   860
(***** axioms and theorems *****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   861
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   862
val proofs = ref 2;
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   863
28812
413695e07bd4 Frees in PThms are now quantified in the order of their appearance in the
berghofe
parents: 28803
diff changeset
   864
fun vars_of t = map Var (rev (Term.add_vars t []));
413695e07bd4 Frees in PThms are now quantified in the order of their appearance in the
berghofe
parents: 28803
diff changeset
   865
fun frees_of t = map Free (rev (Term.add_frees t []));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   866
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   867
fun test_args _ [] = true
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   868
  | test_args is (Bound i :: ts) =
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   869
      not (member (op =) is i) andalso test_args (i :: is) ts
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   870
  | test_args _ _ = false;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   871
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   872
fun is_fun (Type ("fun", _)) = true
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   873
  | is_fun (TVar _) = true
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   874
  | is_fun _ = false;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   875
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   876
fun add_funvars Ts (vs, t) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   877
  if is_fun (fastype_of1 (Ts, t)) then
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19357
diff changeset
   878
    vs union map_filter (fn Var (ixn, T) =>
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   879
      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
   880
  else vs;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   881
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   882
fun add_npvars q p Ts (vs, Const ("==>", _) $ t $ u) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   883
      add_npvars q p Ts (add_npvars q (not p) Ts (vs, t), u)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   884
  | add_npvars q p Ts (vs, Const ("all", Type (_, [Type (_, [T, _]), _])) $ t) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   885
      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
   886
  | 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
   887
  | add_npvars _ _ Ts (vs, t) = add_npvars' Ts (vs, t)
27214c16ebe4 Fixed bug in function add_npvars.
berghofe
parents: 11999
diff changeset
   888
and add_npvars' Ts (vs, t) = (case strip_comb t of
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   889
    (Var (ixn, _), ts) => if test_args [] ts then vs
17314
04e21a27c0ad introduces some modern-style AList operations
haftmann
parents: 17221
diff changeset
   890
      else Library.foldl (add_npvars' Ts)
04e21a27c0ad introduces some modern-style AList operations
haftmann
parents: 17221
diff changeset
   891
        (AList.update (op =) (ixn,
04e21a27c0ad introduces some modern-style AList operations
haftmann
parents: 17221
diff changeset
   892
          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
   893
  | (Abs (_, T, u), ts) => Library.foldl (add_npvars' (T::Ts)) (vs, u :: ts)
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   894
  | (_, ts) => Library.foldl (add_npvars' Ts) (vs, ts));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   895
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   896
fun prop_vars (Const ("==>", _) $ P $ Q) = prop_vars P union prop_vars Q
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   897
  | prop_vars (Const ("all", _) $ Abs (_, _, t)) = prop_vars t
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   898
  | prop_vars t = (case strip_comb t of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   899
      (Var (ixn, _), _) => [ixn] | _ => []);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   900
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   901
fun is_proj t =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   902
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   903
    fun is_p i t = (case strip_comb t of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   904
        (Bound j, []) => false
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   905
      | (Bound j, ts) => j >= i orelse exists (is_p i) ts
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   906
      | (Abs (_, _, u), _) => is_p (i+1) u
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   907
      | (_, ts) => exists (is_p i) ts)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   908
  in (case strip_abs_body t of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   909
        Bound _ => true
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   910
      | t' => is_p 0 t')
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   911
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   912
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20853
diff changeset
   913
fun needed_vars prop =
20853
3ff5a2e05810 *** empty log message ***
haftmann
parents: 20548
diff changeset
   914
  Library.foldl (op union)
3ff5a2e05810 *** empty log message ***
haftmann
parents: 20548
diff changeset
   915
    ([], map (uncurry (insert (op =))) (add_npvars true true [] ([], prop))) union
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   916
  prop_vars prop;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   917
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   918
fun gen_axm_proof c name prop =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   919
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   920
    val nvs = needed_vars prop;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   921
    val args = map (fn (v as Var (ixn, _)) =>
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   922
        if member (op =) nvs ixn then SOME v else NONE) (vars_of prop) @
28812
413695e07bd4 Frees in PThms are now quantified in the order of their appearance in the
berghofe
parents: 28803
diff changeset
   923
      map SOME (frees_of prop);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   924
  in
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
   925
    proof_combt' (c (name, prop, NONE), args)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   926
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   927
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   928
val axm_proof = gen_axm_proof PAxm;
17017
fa8e32209734 - Tuned handling of oracles
berghofe
parents: 16983
diff changeset
   929
fa8e32209734 - Tuned handling of oracles
berghofe
parents: 16983
diff changeset
   930
val dummy = Const (Term.dummy_patternN, dummyT);
fa8e32209734 - Tuned handling of oracles
berghofe
parents: 16983
diff changeset
   931
fa8e32209734 - Tuned handling of oracles
berghofe
parents: 16983
diff changeset
   932
fun oracle_proof name prop =
fa8e32209734 - Tuned handling of oracles
berghofe
parents: 16983
diff changeset
   933
  if !proofs = 0 then Oracle (name, dummy, NONE)
fa8e32209734 - Tuned handling of oracles
berghofe
parents: 16983
diff changeset
   934
  else gen_axm_proof Oracle name prop;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   935
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   936
fun shrink_proof thy =
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   937
  let
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   938
    fun shrink ls lev (prf as Abst (a, T, body)) =
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   939
          let val (b, is, ch, body') = shrink ls (lev+1) body
26631
d6b6c74a8bcf rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents: 26424
diff changeset
   940
          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
   941
      | shrink ls lev (prf as AbsP (a, t, body)) =
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   942
          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
   943
          in (b orelse member (op =) is 0, map_filter (fn 0 => NONE | i => SOME (i-1)) is,
26631
d6b6c74a8bcf rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents: 26424
diff changeset
   944
            ch, if ch then AbsP (a, t, body') else prf)
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   945
          end
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   946
      | shrink ls lev prf =
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   947
          let val (is, ch, _, prf') = shrink' ls lev [] [] prf
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   948
          in (false, is, ch, prf') end
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   949
    and shrink' ls lev ts prfs (prf as prf1 %% prf2) =
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   950
          let
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   951
            val p as (_, is', ch', prf') = shrink ls lev prf2;
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   952
            val (is, ch, ts', prf'') = shrink' ls lev ts (p::prfs) prf1
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   953
          in (is union is', ch orelse ch', ts',
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   954
              if ch orelse ch' then prf'' %% prf' else prf)
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   955
          end
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   956
      | shrink' ls lev ts prfs (prf as prf1 % t) =
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   957
          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
   958
          in (is, ch orelse ch', ts',
26631
d6b6c74a8bcf rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents: 26424
diff changeset
   959
              if ch orelse ch' then prf' % t' else prf) end
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   960
      | shrink' ls lev ts prfs (prf as PBound i) =
30146
a77fc0209723 eliminated NJ's List.nth;
wenzelm
parents: 29642
diff changeset
   961
          (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
   962
             orelse has_duplicates (op =)
042608ffa2ec subsituted gen_duplicates / has_duplicates for duplicates whenever appropriate
haftmann
parents: 18485
diff changeset
   963
               (Library.foldl (fn (js, SOME (Bound j)) => j :: js | (js, _) => js) ([], ts))
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   964
             orelse exists #1 prfs then [i] else [], false, map (pair false) ts, prf)
26631
d6b6c74a8bcf rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents: 26424
diff changeset
   965
      | shrink' ls lev ts prfs (Hyp t) = ([], false, map (pair false) ts, Hyp t)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   966
      | shrink' ls lev ts prfs MinProof = ([], false, map (pair false) ts, MinProof)
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   967
      | shrink' ls lev ts prfs prf =
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   968
          let
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   969
            val prop =
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   970
              (case prf of
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   971
                PAxm (_, prop, _) => prop
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   972
              | Oracle (_, prop, _) => prop
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   973
              | Promise (_, prop, _) => prop
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
   974
              | PThm (_, ((_, prop, _), _)) => prop
28319
13cb2108c2b9 added Promise constructor, which is similar to Oracle but may be replaced later;
wenzelm
parents: 27330
diff changeset
   975
              | _ => error "shrink: proof not in normal form");
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   976
            val vs = vars_of prop;
19012
wenzelm
parents: 18928
diff changeset
   977
            val (ts', ts'') = chop (length vs) ts;
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   978
            val insts = Library.take (length ts', map (fst o dest_Var) vs) ~~ ts';
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   979
            val nvs = Library.foldl (fn (ixns', (ixn, ixns)) =>
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   980
              insert (op =) ixn (case AList.lookup (op =) insts ixn of
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   981
                  SOME (SOME t) => if is_proj t then ixns union ixns' else ixns'
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   982
                | _ => ixns union ixns'))
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   983
                  (needed prop ts'' prfs, add_npvars false true [] ([], prop));
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   984
            val insts' = map
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   985
              (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
   986
                | (_, x) => (false, x)) insts
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   987
          in ([], false, insts' @ map (pair false) ts'', prf) end
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   988
    and needed (Const ("==>", _) $ t $ u) ts ((b, _, _, _)::prfs) =
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   989
          (if b then map (fst o dest_Var) (vars_of t) else []) union needed u ts prfs
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   990
      | needed (Var (ixn, _)) (_::_) _ = [ixn]
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   991
      | needed _ _ _ = [];
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
   992
  in shrink end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   993
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   994
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   995
(**** Simple first order matching functions for terms and proofs ****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   996
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   997
exception PMatch;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   998
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   999
(** see pattern.ML **)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1000
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
  1001
fun flt (i: int) = List.filter (fn n => n < i);
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1002
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1003
fun fomatch Ts tymatch j =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1004
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1005
    fun mtch (instsp as (tyinsts, insts)) = fn
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1006
        (Var (ixn, T), t)  =>
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1007
          if j>0 andalso not (null (flt j (loose_bnos t)))
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1008
          then raise PMatch
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1009
          else (tymatch (tyinsts, fn () => (T, fastype_of1 (Ts, t))),
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1010
            (ixn, t) :: insts)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1011
      | (Free (a, T), Free (b, U)) =>
20147
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
  1012
          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
  1013
      | (Const (a, T), Const (b, U))  =>
20147
7aa076a45cb4 fold_proof_terms: canonical arguments;
wenzelm
parents: 20071
diff changeset
  1014
          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
  1015
      | (f $ t, g $ u) => mtch (mtch instsp (f, g)) (t, u)
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1016
      | (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
  1017
      | _ => raise PMatch
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1018
  in mtch end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1019
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1020
fun match_proof Ts tymatch =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1021
  let
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1022
    fun optmatch _ inst (NONE, _) = inst
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1023
      | optmatch _ _ (SOME _, NONE) = raise PMatch
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1024
      | optmatch mtch inst (SOME x, SOME y) = mtch inst (x, y)
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1025
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1026
    fun matcht Ts j (pinst, tinst) (t, u) =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1027
      (pinst, fomatch Ts tymatch j tinst (t, Envir.beta_norm u));
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1028
    fun matchT (pinst, (tyinsts, insts)) p =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1029
      (pinst, (tymatch (tyinsts, K p), insts));
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
  1030
    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
  1031
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1032
    fun mtch Ts i j (pinst, tinst) (Hyp (Var (ixn, _)), prf) =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1033
          if i = 0 andalso j = 0 then ((ixn, prf) :: pinst, tinst)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1034
          else (case apfst (flt i) (apsnd (flt j)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1035
                  (prf_add_loose_bnos 0 0 prf ([], []))) of
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1036
              ([], []) => ((ixn, incr_pboundvars (~i) (~j) prf) :: pinst, tinst)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1037
            | ([], _) => if j = 0 then
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1038
                   ((ixn, incr_pboundvars (~i) (~j) prf) :: pinst, tinst)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1039
                 else raise PMatch
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1040
            | _ => raise PMatch)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1041
      | mtch Ts i j inst (prf1 % opt1, prf2 % opt2) =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1042
          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
  1043
      | mtch Ts i j inst (prf1 %% prf2, prf1' %% prf2') =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1044
          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
  1045
      | mtch Ts i j inst (Abst (_, opT, prf1), Abst (_, opU, prf2)) =
18485
5959295f82d3 bicompose_proof: no_flatten;
wenzelm
parents: 18316
diff changeset
  1046
          mtch (the_default dummyT opU :: Ts) i (j+1)
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1047
            (optmatch matchT inst (opT, opU)) (prf1, prf2)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1048
      | mtch Ts i j inst (prf1, Abst (_, opU, prf2)) =
18485
5959295f82d3 bicompose_proof: no_flatten;
wenzelm
parents: 18316
diff changeset
  1049
          mtch (the_default dummyT opU :: Ts) i (j+1) inst
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1050
            (incr_pboundvars 0 1 prf1 %> Bound 0, prf2)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1051
      | mtch Ts i j inst (AbsP (_, opt, prf1), AbsP (_, opu, prf2)) =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1052
          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
  1053
      | mtch Ts i j inst (prf1, AbsP (_, _, prf2)) =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1054
          mtch Ts (i+1) j inst (incr_pboundvars 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
  1055
      | 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
  1056
          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
  1057
          else raise PMatch
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1058
      | mtch Ts i j inst (PThm (_, ((name1, prop1, opTs), _)), PThm (_, ((name2, prop2, opUs), _))) =
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1059
          if name1 = name2 andalso prop1 = prop2 then
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1060
            optmatch matchTs inst (opTs, opUs)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1061
          else raise PMatch
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1062
      | 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
  1063
      | mtch _ _ _ _ _ = raise PMatch
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1064
  in mtch Ts 0 0 end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1065
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1066
fun prf_subst (pinst, (tyinsts, insts)) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1067
  let
15797
a63605582573 - Eliminated nodup_vars check.
berghofe
parents: 15632
diff changeset
  1068
    val substT = Envir.typ_subst_TVars tyinsts;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1069
17325
d9d50222808e introduced new-style AList operations
haftmann
parents: 17314
diff changeset
  1070
    fun subst' lev (t as Var (ixn, _)) = (case AList.lookup (op =) insts ixn of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1071
          NONE => t
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1072
        | SOME u => incr_boundvars lev u)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1073
      | subst' lev (Const (s, T)) = Const (s, substT T)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1074
      | subst' lev (Free (s, T)) = Free (s, substT T)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1075
      | subst' lev (Abs (a, T, body)) = Abs (a, substT T, subst' (lev+1) body)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1076
      | subst' lev (f $ t) = subst' lev f $ subst' lev t
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1077
      | subst' _ t = t;
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
    fun subst plev tlev (AbsP (a, t, body)) =
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
  1080
          AbsP (a, Option.map (subst' tlev) t, subst (plev+1) tlev body)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1081
      | subst plev tlev (Abst (a, T, body)) =
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
  1082
          Abst (a, Option.map substT T, subst plev (tlev+1) body)
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
  1083
      | subst plev tlev (prf %% prf') = subst plev tlev prf %% subst plev tlev prf'
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
  1084
      | subst plev tlev (prf % t) = subst plev tlev prf % Option.map (subst' tlev) t
17325
d9d50222808e introduced new-style AList operations
haftmann
parents: 17314
diff changeset
  1085
      | subst plev tlev (prf as Hyp (Var (ixn, _))) = (case AList.lookup (op =) pinst ixn of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1086
          NONE => prf
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1087
        | SOME prf' => incr_pboundvars plev tlev prf')
28828
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
  1088
      | subst _ _ (PAxm (id, prop, Ts)) = PAxm (id, prop, Option.map (map substT) Ts)
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
  1089
      | subst _ _ (Oracle (id, prop, Ts)) = Oracle (id, prop, Option.map (map substT) Ts)
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
  1090
      | subst _ _ (Promise (i, prop, Ts)) = Promise (i, prop, (map substT) Ts)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1091
      | subst _ _ (PThm (i, ((id, prop, Ts), body))) =
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1092
          PThm (i, ((id, prop, Option.map (map substT) Ts), body))
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1093
      | subst _ _ t = t;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1094
  in subst 0 0 end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1095
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20853
diff changeset
  1096
(*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
  1097
  Terms must be NORMAL.  Treats all Vars as distinct. *)
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1098
fun could_unify prf1 prf2 =
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1099
  let
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1100
    fun matchrands (prf1 %% prf2) (prf1' %% prf2') =
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1101
          could_unify prf2 prf2' andalso matchrands prf1 prf1'
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1102
      | 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
  1103
          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
  1104
      | matchrands (prf % _) (prf' % _) = matchrands prf prf'
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1105
      | matchrands _ _ = true
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1106
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1107
    fun head_of (prf %% _) = head_of prf
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1108
      | head_of (prf % _) = head_of prf
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1109
      | head_of prf = prf
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1110
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1111
  in case (head_of prf1, head_of prf2) of
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1112
        (_, Hyp (Var _)) => true
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1113
      | (Hyp (Var _), _) => true
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1114
      | (PAxm (a, _, _), PAxm (b, _, _)) => a = b andalso matchrands prf1 prf2
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1115
      | (PThm (_, ((a, propa, _), _)), PThm (_, ((b, propb, _), _))) =>
12871
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1116
          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
  1117
      | (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
  1118
      | (AbsP _, _) =>  true   (*because of possible eta equality*)
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1119
      | (Abst _, _) =>  true
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1120
      | (_, AbsP _) =>  true
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1121
      | (_, Abst _) =>  true
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1122
      | _ => false
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1123
  end;
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1124
28329
e6a5fa9f1e41 added conditional add_oracles, keep oracles_of_proof private;
wenzelm
parents: 28319
diff changeset
  1125
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1126
(**** rewriting on proof terms ****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1127
13102
b6f8aae5f152 Added skeletons to speed up rewriting on proof terms.
berghofe
parents: 12923
diff changeset
  1128
val skel0 = PBound 0;
b6f8aae5f152 Added skeletons to speed up rewriting on proof terms.
berghofe
parents: 12923
diff changeset
  1129
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1130
fun rewrite_prf tymatch (rules, procs) prf =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1131
  let
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1132
    fun rew _ (Abst (_, _, body) % SOME t) = SOME (prf_subst_bounds [t] body, skel0)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1133
      | rew _ (AbsP (_, _, body) %% prf) = SOME (prf_subst_pbounds [prf] body, skel0)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1134
      | rew Ts prf = (case get_first (fn r => r Ts prf) procs of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1135
          SOME prf' => SOME (prf', skel0)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1136
        | NONE => get_first (fn (prf1, prf2) => SOME (prf_subst
13102
b6f8aae5f152 Added skeletons to speed up rewriting on proof terms.
berghofe
parents: 12923
diff changeset
  1137
            (match_proof Ts tymatch ([], (Vartab.empty, [])) (prf1, prf)) prf2, prf2)
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1138
               handle PMatch => NONE) (filter (could_unify prf o fst) rules));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1139
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
  1140
    fun rew0 Ts (prf as AbsP (_, _, prf' %% PBound 0)) =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1141
          if prf_loose_Pbvar1 prf' 0 then rew Ts prf
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1142
          else
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1143
            let val prf'' = incr_pboundvars (~1) 0 prf'
19502
wenzelm
parents: 19482
diff changeset
  1144
            in SOME (the_default (prf'', skel0) (rew Ts prf'')) end
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1145
      | rew0 Ts (prf as Abst (_, _, prf' % SOME (Bound 0))) =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1146
          if prf_loose_bvar1 prf' 0 then rew Ts prf
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1147
          else
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1148
            let val prf'' = incr_pboundvars 0 (~1) prf'
19502
wenzelm
parents: 19482
diff changeset
  1149
            in SOME (the_default (prf'', skel0) (rew Ts prf'')) end
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1150
      | rew0 Ts prf = rew Ts prf;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1151
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1152
    fun rew1 _ (Hyp (Var _)) _ = NONE
13102
b6f8aae5f152 Added skeletons to speed up rewriting on proof terms.
berghofe
parents: 12923
diff changeset
  1153
      | rew1 Ts skel prf = (case rew2 Ts skel prf of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1154
          SOME prf1 => (case rew0 Ts prf1 of
19502
wenzelm
parents: 19482
diff changeset
  1155
              SOME (prf2, skel') => SOME (the_default prf2 (rew1 Ts skel' prf2))
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1156
            | NONE => SOME prf1)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1157
        | NONE => (case rew0 Ts prf of
19502
wenzelm
parents: 19482
diff changeset
  1158
              SOME (prf1, skel') => SOME (the_default prf1 (rew1 Ts skel' prf1))
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1159
            | NONE => NONE))
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1160
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1161
    and rew2 Ts skel (prf % SOME t) = (case prf of
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1162
            Abst (_, _, body) =>
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1163
              let val prf' = prf_subst_bounds [t] body
19502
wenzelm
parents: 19482
diff changeset
  1164
              in SOME (the_default prf' (rew2 Ts skel0 prf')) end
13102
b6f8aae5f152 Added skeletons to speed up rewriting on proof terms.
berghofe
parents: 12923
diff changeset
  1165
          | _ => (case rew1 Ts (case skel of skel' % _ => skel' | _ => skel0) prf of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1166
              SOME prf' => SOME (prf' % SOME t)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1167
            | NONE => NONE))
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
  1168
      | rew2 Ts skel (prf % NONE) = Option.map (fn prf' => prf' % NONE)
13102
b6f8aae5f152 Added skeletons to speed up rewriting on proof terms.
berghofe
parents: 12923
diff changeset
  1169
          (rew1 Ts (case skel of skel' % _ => skel' | _ => skel0) prf)
b6f8aae5f152 Added skeletons to speed up rewriting on proof terms.
berghofe
parents: 12923
diff changeset
  1170
      | rew2 Ts skel (prf1 %% prf2) = (case prf1 of
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1171
            AbsP (_, _, body) =>
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1172
              let val prf' = prf_subst_pbounds [prf2] body
19502
wenzelm
parents: 19482
diff changeset
  1173
              in SOME (the_default prf' (rew2 Ts skel0 prf')) end
13102
b6f8aae5f152 Added skeletons to speed up rewriting on proof terms.
berghofe
parents: 12923
diff changeset
  1174
          | _ =>
b6f8aae5f152 Added skeletons to speed up rewriting on proof terms.
berghofe
parents: 12923
diff changeset
  1175
            let val (skel1, skel2) = (case skel of
b6f8aae5f152 Added skeletons to speed up rewriting on proof terms.
berghofe
parents: 12923
diff changeset
  1176
                skel1 %% skel2 => (skel1, skel2)
b6f8aae5f152 Added skeletons to speed up rewriting on proof terms.
berghofe
parents: 12923
diff changeset
  1177
              | _ => (skel0, skel0))
b6f8aae5f152 Added skeletons to speed up rewriting on proof terms.
berghofe
parents: 12923
diff changeset
  1178
            in case rew1 Ts skel1 prf1 of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1179
                SOME prf1' => (case rew1 Ts skel2 prf2 of
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1180
                    SOME prf2' => SOME (prf1' %% prf2')
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1181
                  | NONE => SOME (prf1' %% prf2))
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1182
              | NONE => (case rew1 Ts skel2 prf2 of
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1183
                    SOME prf2' => SOME (prf1 %% prf2')
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1184
                  | NONE => NONE)
13102
b6f8aae5f152 Added skeletons to speed up rewriting on proof terms.
berghofe
parents: 12923
diff changeset
  1185
            end)
19502
wenzelm
parents: 19482
diff changeset
  1186
      | rew2 Ts skel (Abst (s, T, prf)) = (case rew1 (the_default dummyT T :: Ts)
13102
b6f8aae5f152 Added skeletons to speed up rewriting on proof terms.
berghofe
parents: 12923
diff changeset
  1187
              (case skel of Abst (_, _, skel') => skel' | _ => skel0) prf of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1188
            SOME prf' => SOME (Abst (s, T, prf'))
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1189
          | NONE => NONE)
13102
b6f8aae5f152 Added skeletons to speed up rewriting on proof terms.
berghofe
parents: 12923
diff changeset
  1190
      | rew2 Ts skel (AbsP (s, t, prf)) = (case rew1 Ts
b6f8aae5f152 Added skeletons to speed up rewriting on proof terms.
berghofe
parents: 12923
diff changeset
  1191
              (case skel of AbsP (_, _, skel') => skel' | _ => skel0) prf of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1192
            SOME prf' => SOME (AbsP (s, t, prf'))
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1193
          | NONE => NONE)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15030
diff changeset
  1194
      | rew2 _ _ _ = NONE
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1195
19502
wenzelm
parents: 19482
diff changeset
  1196
  in the_default prf (rew1 [] skel0 prf) end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1197
17203
29b2563f5c11 refer to theory instead of low-level tsig;
wenzelm
parents: 17017
diff changeset
  1198
fun rewrite_proof thy = rewrite_prf (fn (tyenv, f) =>
29b2563f5c11 refer to theory instead of low-level tsig;
wenzelm
parents: 17017
diff changeset
  1199
  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
  1200
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
  1201
fun rewrite_proof_notypes rews = rewrite_prf fst rews;
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
  1202
16940
d14ec6f2d29b adapted Type.typ_match;
wenzelm
parents: 16880
diff changeset
  1203
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1204
(**** theory data ****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1205
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 15797
diff changeset
  1206
structure ProofData = TheoryDataFun
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22662
diff changeset
  1207
(
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1208
  type T = (stamp * (proof * proof)) list * (stamp * (typ list -> proof -> proof option)) list;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1209
12233
3348aa8061d1 - Fixed bug in shrink
berghofe
parents: 12123
diff changeset
  1210
  val empty = ([], []);
3348aa8061d1 - Fixed bug in shrink
berghofe
parents: 12123
diff changeset
  1211
  val copy = I;
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 15797
diff changeset
  1212
  val extend = I;
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1213
  fun merge _ ((rules1, procs1), (rules2, procs2)) : T =
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1214
    (AList.merge (op =) (K true) (rules1, rules2),
22662
3e492ba59355 canonical merge operations
haftmann
parents: 21646
diff changeset
  1215
      AList.merge (op =) (K true) (procs1, procs2));
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22662
diff changeset
  1216
);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1217
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1218
fun get_data thy = let val (rules, procs) = ProofData.get thy in (map #2 rules, map #2 procs) end;
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1219
fun rew_proof thy = rewrite_prf fst (get_data thy);
23780
a0e7305dd0cb Added function rew_proof (for pre-normalizing proofs).
berghofe
parents: 23296
diff changeset
  1220
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1221
fun add_prf_rrule r = (ProofData.map o apfst) (cons (stamp (), r));
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1222
fun add_prf_rproc p = (ProofData.map o apsnd) (cons (stamp (), p));
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1223
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1224
28828
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
  1225
(***** promises *****)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1226
28828
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
  1227
fun promise_proof thy i prop =
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
  1228
  let
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
  1229
    val _ = prop |> Term.exists_subterm (fn t =>
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
  1230
      (Term.is_Free t orelse Term.is_Var t) andalso
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
  1231
        error ("promise_proof: illegal variable " ^ Syntax.string_of_term_global thy t));
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
  1232
    val _ = prop |> Term.exists_type (Term.exists_subtype
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
  1233
      (fn TFree (a, _) => error ("promise_proof: illegal type variable " ^ quote a)
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
  1234
        | _ => false));
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
  1235
  in Promise (i, prop, map TVar (Term.add_tvars prop [])) end;
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
  1236
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
  1237
fun fulfill_proof _ [] body0 = body0
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
  1238
  | fulfill_proof thy promises body0 =
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
  1239
      let
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
  1240
        val PBody {oracles = oracles0, thms = thms0, proof = proof0} = body0;
28846
9c6025c721d7 fulfill_proof/thm_proof: commuted lazyness;
wenzelm
parents: 28830
diff changeset
  1241
        val (oracles, thms) = fold (merge_body o make_body o #2) promises (oracles0, thms0);
28875
c1c0e23ed063 eliminated finish_proof, keep pre/post normalization of results separate;
wenzelm
parents: 28846
diff changeset
  1242
c1c0e23ed063 eliminated finish_proof, keep pre/post normalization of results separate;
wenzelm
parents: 28846
diff changeset
  1243
        val tab = Inttab.make promises;
c1c0e23ed063 eliminated finish_proof, keep pre/post normalization of results separate;
wenzelm
parents: 28846
diff changeset
  1244
        fun fill (Promise (i, prop, Ts)) =
c1c0e23ed063 eliminated finish_proof, keep pre/post normalization of results separate;
wenzelm
parents: 28846
diff changeset
  1245
            (case Inttab.lookup tab i of
c1c0e23ed063 eliminated finish_proof, keep pre/post normalization of results separate;
wenzelm
parents: 28846
diff changeset
  1246
              NONE => NONE
c1c0e23ed063 eliminated finish_proof, keep pre/post normalization of results separate;
wenzelm
parents: 28846
diff changeset
  1247
            | SOME p => SOME (instantiate (Term.add_tvars prop [] ~~ Ts, []) p))
c1c0e23ed063 eliminated finish_proof, keep pre/post normalization of results separate;
wenzelm
parents: 28846
diff changeset
  1248
          | fill _ = NONE;
c1c0e23ed063 eliminated finish_proof, keep pre/post normalization of results separate;
wenzelm
parents: 28846
diff changeset
  1249
        val (rules, procs) = get_data thy;
c1c0e23ed063 eliminated finish_proof, keep pre/post normalization of results separate;
wenzelm
parents: 28846
diff changeset
  1250
        val proof = rewrite_prf fst (rules, K fill :: procs) proof0;
28828
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
  1251
      in PBody {oracles = oracles, thms = thms, proof = proof} end;
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
  1252
29642
be22ba214475 thm_proof: recovered single-threaded version;
wenzelm
parents: 29636
diff changeset
  1253
fun fulfill_proof_future _ [] body = Future.value body
be22ba214475 thm_proof: recovered single-threaded version;
wenzelm
parents: 29636
diff changeset
  1254
  | fulfill_proof_future thy promises body =
be22ba214475 thm_proof: recovered single-threaded version;
wenzelm
parents: 29636
diff changeset
  1255
      Future.fork_deps (map snd promises) (fn () =>
be22ba214475 thm_proof: recovered single-threaded version;
wenzelm
parents: 29636
diff changeset
  1256
        fulfill_proof thy (map (apsnd Future.join) promises) body);
be22ba214475 thm_proof: recovered single-threaded version;
wenzelm
parents: 29636
diff changeset
  1257
28828
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
  1258
c25dd83a6f9f unified treatment of PAxm/Oracle/Promise in basic proof term operations;
wenzelm
parents: 28815
diff changeset
  1259
(***** theorems *****)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1260
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1261
fun thm_proof thy name hyps prop promises body =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1262
  let
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1263
    val PBody {oracles = oracles0, thms = thms0, proof = prf} = body;
12923
9ba7c5358fa0 fixed get_name_tags in order to work with hyps;
wenzelm
parents: 12907
diff changeset
  1264
    val prop = Logic.list_implies (hyps, prop);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1265
    val nvs = needed_vars prop;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1266
    val args = map (fn (v as Var (ixn, _)) =>
17492
714c95aab8bc shrink: compress terms and types;
wenzelm
parents: 17412
diff changeset
  1267
        if member (op =) nvs ixn then SOME v else NONE) (vars_of prop) @
28812
413695e07bd4 Frees in PThms are now quantified in the order of their appearance in the
berghofe
parents: 28803
diff changeset
  1268
      map SOME (frees_of prop);
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1269
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1270
    val proof0 =
28876
wenzelm
parents: 28875
diff changeset
  1271
      if ! proofs = 2 then
wenzelm
parents: 28875
diff changeset
  1272
        #4 (shrink_proof thy [] 0 (rew_proof thy (fold_rev implies_intr_proof hyps prf)))
wenzelm
parents: 28875
diff changeset
  1273
      else MinProof;
29642
be22ba214475 thm_proof: recovered single-threaded version;
wenzelm
parents: 29636
diff changeset
  1274
    val body0 = PBody {oracles = oracles0, thms = thms0, proof = proof0};
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1275
29642
be22ba214475 thm_proof: recovered single-threaded version;
wenzelm
parents: 29636
diff changeset
  1276
    fun new_prf () = (serial (), name, prop, fulfill_proof_future thy promises body0);
28815
80bb72a0f577 proof_body/pthm: removed redundant types field;
wenzelm
parents: 28812
diff changeset
  1277
    val (i, name, prop, body') =
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1278
      (case strip_combt (fst (strip_combP prf)) of
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1279
        (PThm (i, ((old_name, prop', NONE), body')), args') =>
28815
80bb72a0f577 proof_body/pthm: removed redundant types field;
wenzelm
parents: 28812
diff changeset
  1280
          if (old_name = "" orelse old_name = name) andalso prop = prop' andalso args = args'
80bb72a0f577 proof_body/pthm: removed redundant types field;
wenzelm
parents: 28812
diff changeset
  1281
          then (i, name, prop, body')
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1282
          else new_prf ()
28815
80bb72a0f577 proof_body/pthm: removed redundant types field;
wenzelm
parents: 28812
diff changeset
  1283
      | _ => new_prf ());
80bb72a0f577 proof_body/pthm: removed redundant types field;
wenzelm
parents: 28812
diff changeset
  1284
    val head = PThm (i, ((name, prop, NONE), body'));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1285
  in
28815
80bb72a0f577 proof_body/pthm: removed redundant types field;
wenzelm
parents: 28812
diff changeset
  1286
    ((i, (name, prop, body')), proof_combP (proof_combt' (head, args), map Hyp hyps))
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1287
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1288
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20853
diff changeset
  1289
fun get_name hyps prop prf =
12923
9ba7c5358fa0 fixed get_name_tags in order to work with hyps;
wenzelm
parents: 12907
diff changeset
  1290
  let val prop = Logic.list_implies (hyps, prop) in
9ba7c5358fa0 fixed get_name_tags in order to work with hyps;
wenzelm
parents: 12907
diff changeset
  1291
    (case strip_combt (fst (strip_combP prf)) of
28803
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1292
      (PAxm (name, prop', _), _) => if prop = prop' then name else ""   (* FIXME !? *)
d90258bbb18f reworked type proof: MinProof is vacous, added Promise, refined PThm (with serial);
wenzelm
parents: 28329
diff changeset
  1293
    | (PThm (_, ((name, prop', _), _)), _) => if prop = prop' then name else ""
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20853
diff changeset
  1294
    | _ => "")
12923
9ba7c5358fa0 fixed get_name_tags in order to work with hyps;
wenzelm
parents: 12907
diff changeset
  1295
  end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1296
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1297
end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1298
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1299
structure BasicProofterm : BASIC_PROOFTERM = Proofterm;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1300
open BasicProofterm;