src/Pure/proofterm.ML
author wenzelm
Tue, 19 Feb 2002 23:49:26 +0100
changeset 12900 2be514a36aec
parent 12890 75b254b1c8ba
child 12907 27e6d344d724
permissions -rw-r--r--
Paulson:1989;
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
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
     2
    ID:         $Id$
11540
23794728cdb7 fixed header;
wenzelm
parents: 11519
diff changeset
     3
    Author:     Stefan Berghofer, TU Muenchen
23794728cdb7 fixed header;
wenzelm
parents: 11519
diff changeset
     4
    License:    GPL (GNU GENERAL PUBLIC LICENSE)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
     5
11540
23794728cdb7 fixed header;
wenzelm
parents: 11519
diff changeset
     6
LF style proof terms.
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
     7
*)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
     8
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
     9
infix 8 % %% %>;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    10
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    11
signature BASIC_PROOFTERM =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    12
sig
11543
d61b913431c5 renamed `keep_derivs' to `proofs', and made an integer;
wenzelm
parents: 11540
diff changeset
    13
  val proofs: int ref
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    14
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    15
  datatype proof =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    16
     PBound of int
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    17
   | Abst of string * typ option * proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    18
   | AbsP of string * term option * proof
12890
75b254b1c8ba made MLWorks happy;
wenzelm
parents: 12871
diff changeset
    19
   | % of proof * term option
75b254b1c8ba made MLWorks happy;
wenzelm
parents: 12871
diff changeset
    20
   | %% of proof * proof
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    21
   | Hyp of term
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    22
   | PThm of (string * (string * string list) list) * proof * term * typ list option
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    23
   | PAxm of string * term * typ list option
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    24
   | Oracle of string * term * typ list option
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    25
   | MinProof of proof list;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    26
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
    27
  val %> : proof * term -> proof
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    28
end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    29
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    30
signature PROOFTERM =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    31
sig
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    32
  include BASIC_PROOFTERM
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    33
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    34
  val infer_derivs : (proof -> proof -> proof) -> bool * proof -> bool * proof -> bool * proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    35
  val infer_derivs' : (proof -> proof) -> (bool * proof -> bool * proof)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    36
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    37
  (** primitive operations **)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    38
  val proof_combt : proof * term list -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    39
  val proof_combt' : proof * term option list -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    40
  val proof_combP : proof * proof list -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    41
  val strip_combt : proof -> proof * term option list
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    42
  val strip_combP : proof -> proof * proof list
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    43
  val strip_thm : proof -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    44
  val map_proof_terms : (term -> term) -> (typ -> typ) -> proof -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    45
  val fold_proof_terms : (term * 'a -> 'a) -> (typ * 'a -> 'a) -> 'a * proof -> 'a
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    46
  val add_prf_names : string list * proof -> string list
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    47
  val add_prf_tfree_names : string list * proof -> string list
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    48
  val add_prf_tvar_ixns : indexname list * proof -> indexname list
12868
cdf338ef5fad New function maxidx_of_proof.
berghofe
parents: 12497
diff changeset
    49
  val maxidx_of_proof : proof -> int
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    50
  val prf_abstract_over : term -> proof -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    51
  val prf_incr_bv : int -> int -> int -> int -> proof -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    52
  val incr_pboundvars : int -> int -> proof -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    53
  val prf_loose_bvar1 : proof -> int -> bool
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    54
  val prf_loose_Pbvar1 : proof -> int -> bool
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
    55
  val prf_add_loose_bnos : int -> int -> proof ->
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
    56
    int list * int list -> int list * int list
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    57
  val norm_proof : Envir.env -> proof -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    58
  val norm_proof' : Envir.env -> proof -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    59
  val prf_subst_bounds : term list -> proof -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    60
  val prf_subst_pbounds : proof list -> proof -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    61
  val freeze_thaw_prf : proof -> proof * (proof -> proof)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    62
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    63
  val thms_of_proof : (term * proof) list Symtab.table -> proof ->
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    64
    (term * proof) list Symtab.table
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    65
  val axms_of_proof : proof Symtab.table -> proof -> proof Symtab.table
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    66
  val oracles_of_proof : proof list -> proof -> proof list
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    67
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    68
  (** proof terms for specific inference rules **)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    69
  val implies_intr_proof : term -> proof -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    70
  val forall_intr_proof : term -> string -> proof -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    71
  val varify_proof : term -> string list -> proof -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    72
  val freezeT : term -> proof -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    73
  val rotate_proof : term list -> term -> int -> proof -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    74
  val permute_prems_prf : term list -> int -> int -> proof -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    75
  val instantiate : (indexname * typ) list -> (term * term) list -> proof -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    76
  val lift_proof : term -> int -> term -> proof -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    77
  val assumption_proof : term list -> term -> int -> proof -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    78
  val bicompose_proof : term list -> term list -> term list -> term option ->
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    79
    int -> proof -> proof -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    80
  val equality_axms : (string * term) list
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    81
  val reflexive_axm : proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    82
  val symmetric_axm : proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    83
  val transitive_axm : proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    84
  val equal_intr_axm : proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    85
  val equal_elim_axm : proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    86
  val abstract_rule_axm : proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    87
  val combination_axm : proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    88
  val reflexive : proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    89
  val symmetric : proof -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    90
  val transitive : term -> typ -> proof -> proof -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    91
  val abstract_rule : term -> string -> proof -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    92
  val combination : term -> term -> term -> term -> typ -> proof -> proof -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    93
  val equal_intr : term -> term -> proof -> proof -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    94
  val equal_elim : term -> term -> proof -> proof -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    95
  val axm_proof : string -> term -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    96
  val oracle_proof : string -> term -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    97
  val thm_proof : Sign.sg -> string * (string * string list) list ->
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    98
    term list -> term -> proof -> proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
    99
  val get_name_tags : term -> proof -> string * (string * string list) list
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   100
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   101
  (** rewriting on proof terms **)
12233
3348aa8061d1 - Fixed bug in shrink
berghofe
parents: 12123
diff changeset
   102
  val add_prf_rrules : (proof * proof) list -> theory -> theory
3348aa8061d1 - Fixed bug in shrink
berghofe
parents: 12123
diff changeset
   103
  val add_prf_rprocs : (string * (Term.typ list -> proof -> proof option)) list ->
3348aa8061d1 - Fixed bug in shrink
berghofe
parents: 12123
diff changeset
   104
    theory -> theory
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   105
  val rewrite_proof : Type.type_sig -> (proof * proof) list *
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   106
    (string * (typ list -> proof -> proof option)) list -> proof -> proof
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   107
  val rewrite_proof_notypes : (proof * proof) list *
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   108
    (string * (typ list -> proof -> proof option)) list -> proof -> proof
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   109
  val init : theory -> theory
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   110
  
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   111
end
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   112
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   113
structure Proofterm : PROOFTERM =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   114
struct
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   115
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   116
open Envir;
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   117
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   118
datatype proof =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   119
   PBound of int
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   120
 | Abst of string * typ option * proof
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   121
 | AbsP of string * term option * proof
12497
ec6ba9e6eef3 type_env;
wenzelm
parents: 12311
diff changeset
   122
 | op % of proof * term option
ec6ba9e6eef3 type_env;
wenzelm
parents: 12311
diff changeset
   123
 | op %% of proof * proof
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   124
 | Hyp of term
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   125
 | PThm of (string * (string * string list) list) * proof * term * typ list option
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   126
 | PAxm of string * term * typ list option
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   127
 | Oracle of string * term * typ list option
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   128
 | MinProof of proof list;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   129
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   130
fun oracles_of_proof prfs prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   131
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   132
    fun oras_of (tabs, Abst (_, _, prf)) = oras_of (tabs, prf)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   133
      | oras_of (tabs, AbsP (_, _, prf)) = oras_of (tabs, prf)
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   134
      | oras_of (tabs, prf % _) = oras_of (tabs, prf)
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   135
      | oras_of (tabs, prf1 %% prf2) = oras_of (oras_of (tabs, prf1), prf2)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   136
      | oras_of (tabs as (thms, oras), PThm ((name, _), prf, prop, _)) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   137
          (case Symtab.lookup (thms, name) of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   138
             None => oras_of ((Symtab.update ((name, [prop]), thms), oras), prf)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   139
           | Some ps => if prop mem ps then tabs else
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   140
               oras_of ((Symtab.update ((name, prop::ps), thms), oras), prf))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   141
      | oras_of ((thms, oras), prf as Oracle _) = (thms, prf ins oras)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   142
      | oras_of (tabs, MinProof prfs) = foldl oras_of (tabs, prfs)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   143
      | oras_of (tabs, _) = tabs
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   144
  in
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   145
    snd (oras_of ((Symtab.empty, prfs), prf))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   146
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   147
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   148
fun thms_of_proof tab (Abst (_, _, prf)) = thms_of_proof tab prf
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   149
  | thms_of_proof tab (AbsP (_, _, prf)) = thms_of_proof tab prf
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   150
  | thms_of_proof tab (prf1 %% prf2) = thms_of_proof (thms_of_proof tab prf1) prf2
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   151
  | thms_of_proof tab (prf % _) = thms_of_proof tab prf
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   152
  | thms_of_proof tab (prf' as PThm ((s, _), prf, prop, _)) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   153
      (case Symtab.lookup (tab, s) of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   154
         None => thms_of_proof (Symtab.update ((s, [(prop, prf')]), tab)) prf
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   155
       | Some ps => if exists (equal prop o fst) ps then tab else
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   156
           thms_of_proof (Symtab.update ((s, (prop, prf')::ps), tab)) prf)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   157
  | thms_of_proof tab _ = tab;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   158
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   159
fun axms_of_proof tab (Abst (_, _, prf)) = axms_of_proof tab prf
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   160
  | axms_of_proof tab (AbsP (_, _, prf)) = axms_of_proof tab prf
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   161
  | axms_of_proof tab (prf1 %% prf2) = axms_of_proof (axms_of_proof tab prf1) prf2
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   162
  | axms_of_proof tab (prf % _) = axms_of_proof tab prf
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   163
  | axms_of_proof tab (prf as PAxm (s, _, _)) = Symtab.update ((s, prf), tab)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   164
  | axms_of_proof tab _ = tab;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   165
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   166
(** collect all theorems, axioms and oracles **)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   167
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   168
fun mk_min_proof (prfs, Abst (_, _, prf)) = mk_min_proof (prfs, prf)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   169
  | mk_min_proof (prfs, AbsP (_, _, prf)) = mk_min_proof (prfs, prf)
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   170
  | mk_min_proof (prfs, prf % _) = mk_min_proof (prfs, prf)
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   171
  | mk_min_proof (prfs, prf1 %% prf2) = mk_min_proof (mk_min_proof (prfs, prf1), prf2)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   172
  | mk_min_proof (prfs, prf as PThm _) = prf ins prfs
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   173
  | mk_min_proof (prfs, prf as PAxm _) = prf ins prfs
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   174
  | mk_min_proof (prfs, prf as Oracle _) = prf ins prfs
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   175
  | mk_min_proof (prfs, MinProof prfs') = prfs union prfs'
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   176
  | mk_min_proof (prfs, _) = prfs;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   177
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   178
(** proof objects with different levels of detail **)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   179
11543
d61b913431c5 renamed `keep_derivs' to `proofs', and made an integer;
wenzelm
parents: 11540
diff changeset
   180
val proofs = ref 2;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   181
11543
d61b913431c5 renamed `keep_derivs' to `proofs', and made an integer;
wenzelm
parents: 11540
diff changeset
   182
fun err_illegal_level i =
d61b913431c5 renamed `keep_derivs' to `proofs', and made an integer;
wenzelm
parents: 11540
diff changeset
   183
  error ("Illegal level of detail for proof objects: " ^ string_of_int i);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   184
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   185
fun if_ora b = if b then oracles_of_proof else K;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   186
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   187
fun infer_derivs f (ora1, prf1) (ora2, prf2) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   188
  (ora1 orelse ora2, 
11543
d61b913431c5 renamed `keep_derivs' to `proofs', and made an integer;
wenzelm
parents: 11540
diff changeset
   189
   case !proofs of
d61b913431c5 renamed `keep_derivs' to `proofs', and made an integer;
wenzelm
parents: 11540
diff changeset
   190
     2 => f prf1 prf2
d61b913431c5 renamed `keep_derivs' to `proofs', and made an integer;
wenzelm
parents: 11540
diff changeset
   191
   | 1 => MinProof (mk_min_proof (mk_min_proof ([], prf1), prf2))
d61b913431c5 renamed `keep_derivs' to `proofs', and made an integer;
wenzelm
parents: 11540
diff changeset
   192
   | 0 => MinProof (if_ora ora2 (if_ora ora1 [] prf1) prf2)
d61b913431c5 renamed `keep_derivs' to `proofs', and made an integer;
wenzelm
parents: 11540
diff changeset
   193
   | i => err_illegal_level i);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   194
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   195
fun infer_derivs' f (ora, prf) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   196
  (ora,
11543
d61b913431c5 renamed `keep_derivs' to `proofs', and made an integer;
wenzelm
parents: 11540
diff changeset
   197
   case !proofs of
d61b913431c5 renamed `keep_derivs' to `proofs', and made an integer;
wenzelm
parents: 11540
diff changeset
   198
     2 => f prf
d61b913431c5 renamed `keep_derivs' to `proofs', and made an integer;
wenzelm
parents: 11540
diff changeset
   199
   | 1 => MinProof (mk_min_proof ([], prf))
d61b913431c5 renamed `keep_derivs' to `proofs', and made an integer;
wenzelm
parents: 11540
diff changeset
   200
   | 0 => MinProof (if_ora ora [] prf)
d61b913431c5 renamed `keep_derivs' to `proofs', and made an integer;
wenzelm
parents: 11540
diff changeset
   201
   | i => err_illegal_level i);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   202
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   203
fun (prf %> t) = prf % Some t;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   204
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   205
val proof_combt = foldl (op %>);
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   206
val proof_combt' = foldl (op %);
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   207
val proof_combP = foldl (op %%);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   208
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   209
fun strip_combt prf = 
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   210
    let fun stripc (prf % t, ts) = stripc (prf, t::ts)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   211
          | stripc  x =  x 
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   212
    in  stripc (prf, [])  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   213
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   214
fun strip_combP prf = 
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   215
    let fun stripc (prf %% prf', prfs) = stripc (prf, prf'::prfs)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   216
          | stripc  x =  x
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   217
    in  stripc (prf, [])  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   218
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   219
fun strip_thm prf = (case strip_combt (fst (strip_combP prf)) of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   220
      (PThm (_, prf', _, _), _) => prf'
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   221
    | _ => prf);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   222
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   223
val mk_Abst = foldr (fn ((s, T:typ), prf) => Abst (s, None, prf));
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   224
fun mk_AbsP (i, prf) = funpow i (fn prf => AbsP ("H", None, prf)) prf;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   225
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   226
fun apsome' f None = raise SAME
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   227
  | apsome' f (Some x) = Some (f x);
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   228
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   229
fun same f x =
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   230
  let val x' = f x
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   231
  in if x = x' then raise SAME else x' end;
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   232
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   233
fun map_proof_terms f g =
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   234
  let
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   235
    fun mapp (Abst (s, T, prf)) = (Abst (s, apsome' (same g) T, mapph prf)
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   236
          handle SAME => Abst (s, T, mapp prf))
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   237
      | mapp (AbsP (s, t, prf)) = (AbsP (s, apsome' (same f) t, mapph prf)
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   238
          handle SAME => AbsP (s, t, mapp prf))
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   239
      | mapp (prf % t) = (mapp prf % apsome f t
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   240
          handle SAME => prf % apsome' (same f) t)
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   241
      | mapp (prf1 %% prf2) = (mapp prf1 %% mapph prf2
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   242
          handle SAME => prf1 %% mapp prf2)
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   243
      | mapp (PThm (a, prf, prop, Some Ts)) =
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   244
          PThm (a, prf, prop, Some (same (map g) Ts))
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   245
      | mapp (PAxm (a, prop, Some Ts)) =
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   246
          PAxm (a, prop, Some (same (map g) Ts))
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   247
      | mapp _ = raise SAME
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   248
    and mapph prf = (mapp prf handle SAME => prf)
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   249
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   250
  in mapph end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   251
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   252
fun fold_proof_terms f g (a, Abst (_, Some T, prf)) = fold_proof_terms f g (g (T, a), prf)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   253
  | fold_proof_terms f g (a, Abst (_, None, prf)) = fold_proof_terms f g (a, prf)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   254
  | fold_proof_terms f g (a, AbsP (_, Some t, prf)) = fold_proof_terms f g (f (t, a), prf)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   255
  | fold_proof_terms f g (a, AbsP (_, None, prf)) = fold_proof_terms f g (a, prf)
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   256
  | fold_proof_terms f g (a, prf % Some t) = f (t, fold_proof_terms f g (a, prf))
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   257
  | fold_proof_terms f g (a, prf % None) = fold_proof_terms f g (a, prf)
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   258
  | fold_proof_terms f g (a, prf1 %% prf2) = fold_proof_terms f g
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   259
      (fold_proof_terms f g (a, prf1), prf2)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   260
  | fold_proof_terms _ g (a, PThm (_, _, _, Some Ts)) = foldr g (Ts, a)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   261
  | fold_proof_terms _ g (a, PAxm (_, prop, Some Ts)) = foldr g (Ts, a)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   262
  | fold_proof_terms _ _ (a, _) = a;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   263
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   264
val add_prf_names = fold_proof_terms add_term_names ((uncurry K) o swap);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   265
val add_prf_tfree_names = fold_proof_terms add_term_tfree_names add_typ_tfree_names;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   266
val add_prf_tvar_ixns = fold_proof_terms add_term_tvar_ixns (add_typ_ixns o swap);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   267
12868
cdf338ef5fad New function maxidx_of_proof.
berghofe
parents: 12497
diff changeset
   268
fun maxidx_of_proof prf = fold_proof_terms
cdf338ef5fad New function maxidx_of_proof.
berghofe
parents: 12497
diff changeset
   269
  (Int.max o apfst maxidx_of_term) (Int.max o apfst maxidx_of_typ) (~1, prf); 
cdf338ef5fad New function maxidx_of_proof.
berghofe
parents: 12497
diff changeset
   270
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   271
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   272
(***** utilities *****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   273
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   274
fun strip_abs (_::Ts) (Abs (_, _, t)) = strip_abs Ts t
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   275
  | strip_abs _ t = t;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   276
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   277
fun mk_abs Ts t = foldl (fn (t', T) => Abs ("", T, t')) (t, Ts);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   278
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   279
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   280
(*Abstraction of a proof term over its occurrences of v, 
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   281
    which must contain no loose bound variables.
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   282
  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
   283
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   284
fun prf_abstract_over v =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   285
  let
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   286
    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
   287
      (case u of
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   288
         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
   289
       | 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
   290
       | _ => raise SAME)
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   291
    and absth' lev t = (abst' lev t handle SAME => t);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   292
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   293
    fun abst lev (AbsP (a, t, prf)) =
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   294
          (AbsP (a, apsome' (abst' lev) t, absth lev prf)
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   295
           handle SAME => AbsP (a, t, abst lev prf))
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   296
      | 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
   297
      | 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
   298
          handle SAME => prf1 %% abst lev prf2)
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   299
      | abst lev (prf % t) = (abst lev prf % apsome (absth' lev) t
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   300
          handle SAME => prf % apsome' (abst' lev) t)
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   301
      | abst _ _ = raise SAME
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   302
    and absth lev prf = (abst lev prf handle SAME => prf)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   303
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   304
  in absth 0 end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   305
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   306
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   307
(*increments a proof term's non-local bound variables
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   308
  required when moving a proof term within abstractions
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   309
     inc is  increment for bound variables
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   310
     lev is  level at which a bound variable is considered 'loose'*)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   311
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   312
fun incr_bv' inct tlev t = incr_bv (inct, tlev, t);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   313
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   314
fun prf_incr_bv' incP inct Plev tlev (PBound i) =
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   315
      if i >= Plev then PBound (i+incP) else raise SAME 
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   316
  | prf_incr_bv' incP inct Plev tlev (AbsP (a, t, body)) =
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   317
      (AbsP (a, apsome' (same (incr_bv' inct tlev)) t,
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   318
         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
   319
           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
   320
  | 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
   321
      Abst (a, T, prf_incr_bv' incP inct Plev (tlev+1) body)
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   322
  | prf_incr_bv' incP inct Plev tlev (prf %% prf') = 
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   323
      (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
   324
       handle SAME => prf %% prf_incr_bv' incP inct Plev tlev prf')
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   325
  | prf_incr_bv' incP inct Plev tlev (prf % t) = 
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   326
      (prf_incr_bv' incP inct Plev tlev prf % apsome (incr_bv' inct tlev) t
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   327
       handle SAME => prf % apsome' (same (incr_bv' inct tlev)) t)
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   328
  | prf_incr_bv' _ _ _ _ _ = raise SAME
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   329
and prf_incr_bv incP inct Plev tlev prf =
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   330
      (prf_incr_bv' incP inct Plev tlev prf handle SAME => prf);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   331
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   332
fun incr_pboundvars  0 0 prf = prf
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   333
  | 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
   334
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   335
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   336
fun prf_loose_bvar1 (prf1 %% prf2) k = prf_loose_bvar1 prf1 k orelse prf_loose_bvar1 prf2 k
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   337
  | prf_loose_bvar1 (prf % Some t) k = prf_loose_bvar1 prf k orelse loose_bvar1 (t, k)
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   338
  | prf_loose_bvar1 (_ % None) _ = true
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   339
  | prf_loose_bvar1 (AbsP (_, Some t, prf)) k = loose_bvar1 (t, k) orelse prf_loose_bvar1 prf k
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   340
  | prf_loose_bvar1 (AbsP (_, None, _)) k = true
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   341
  | prf_loose_bvar1 (Abst (_, _, prf)) k = prf_loose_bvar1 prf (k+1)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   342
  | prf_loose_bvar1 _ _ = false;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   343
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   344
fun prf_loose_Pbvar1 (PBound i) k = i = k
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   345
  | 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
   346
  | prf_loose_Pbvar1 (prf % _) k = prf_loose_Pbvar1 prf k
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   347
  | prf_loose_Pbvar1 (AbsP (_, _, prf)) k = prf_loose_Pbvar1 prf (k+1)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   348
  | prf_loose_Pbvar1 (Abst (_, _, prf)) k = prf_loose_Pbvar1 prf k
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   349
  | prf_loose_Pbvar1 _ _ = false;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   350
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   351
fun prf_add_loose_bnos plev tlev (PBound i) (is, js) =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   352
      if i < plev then (is, js) else ((i-plev) ins is, js)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   353
  | prf_add_loose_bnos plev tlev (prf1 %% prf2) p =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   354
      prf_add_loose_bnos plev tlev prf2
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   355
        (prf_add_loose_bnos plev tlev prf1 p)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   356
  | prf_add_loose_bnos plev tlev (prf % opt) (is, js) =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   357
      prf_add_loose_bnos plev tlev prf (case opt of
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   358
          None => (is, ~1 ins js)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   359
        | Some t => (is, add_loose_bnos (t, tlev, js)))
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   360
  | prf_add_loose_bnos plev tlev (AbsP (_, opt, prf)) (is, js) =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   361
      prf_add_loose_bnos (plev+1) tlev prf (case opt of
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   362
          None => (is, ~1 ins js)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   363
        | Some t => (is, add_loose_bnos (t, tlev, js)))
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   364
  | prf_add_loose_bnos plev tlev (Abst (_, _, prf)) p =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   365
      prf_add_loose_bnos plev (tlev+1) prf p
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   366
  | prf_add_loose_bnos _ _ _ _ = ([], []);
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   367
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
(**** substitutions ****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   370
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   371
fun norm_proof env =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   372
  let
12497
ec6ba9e6eef3 type_env;
wenzelm
parents: 12311
diff changeset
   373
    val envT = type_env env;
ec6ba9e6eef3 type_env;
wenzelm
parents: 12311
diff changeset
   374
    fun norm (Abst (s, T, prf)) = (Abst (s, apsome' (norm_type_same envT) T, normh prf)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   375
          handle SAME => Abst (s, T, norm prf))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   376
      | norm (AbsP (s, t, prf)) = (AbsP (s, apsome' (norm_term_same env) t, normh prf)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   377
          handle SAME => AbsP (s, t, norm prf))
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   378
      | norm (prf % t) = (norm prf % apsome (norm_term env) t
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   379
          handle SAME => prf % apsome' (norm_term_same env) t)
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   380
      | norm (prf1 %% prf2) = (norm prf1 %% normh prf2
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   381
          handle SAME => prf1 %% norm prf2)
12497
ec6ba9e6eef3 type_env;
wenzelm
parents: 12311
diff changeset
   382
      | norm (PThm (s, prf, t, Ts)) = PThm (s, prf, t, apsome' (norm_types_same envT) Ts)
ec6ba9e6eef3 type_env;
wenzelm
parents: 12311
diff changeset
   383
      | norm (PAxm (s, prop, Ts)) = PAxm (s, prop, apsome' (norm_types_same envT) Ts)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   384
      | norm _ = raise SAME
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   385
    and normh prf = (norm prf handle SAME => prf);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   386
  in normh end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   387
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   388
(***** Remove some types in proof term (to save space) *****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   389
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   390
fun remove_types (Abs (s, _, t)) = Abs (s, dummyT, remove_types t)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   391
  | remove_types (t $ u) = remove_types t $ remove_types u
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   392
  | remove_types (Const (s, _)) = Const (s, dummyT)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   393
  | remove_types t = t;
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 remove_types_env (Envir.Envir {iTs, asol, maxidx}) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   396
  Envir.Envir {iTs = iTs, asol = Vartab.map remove_types asol, maxidx = maxidx};
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
fun norm_proof' env prf = norm_proof (remove_types_env env) prf;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   399
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   400
(**** substitution of bound variables ****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   401
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   402
fun prf_subst_bounds args prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   403
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   404
    val n = length args;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   405
    fun subst' lev (Bound i) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   406
         (if i<lev then raise SAME    (*var is locally bound*)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   407
          else  incr_boundvars lev (List.nth (args, i-lev))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   408
                  handle Subscript => Bound (i-n)  (*loose: change it*))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   409
      | 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
   410
      | subst' lev (f $ t) = (subst' lev f $ substh' lev t
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   411
          handle SAME => f $ subst' lev t)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   412
      | subst' _ _ = raise SAME
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   413
    and substh' lev t = (subst' lev t handle SAME => t);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   414
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   415
    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
   416
          handle SAME => AbsP (a, t, subst lev body))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   417
      | subst lev (Abst (a, T, body)) = Abst (a, T, subst (lev+1) body)
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   418
      | subst lev (prf %% prf') = (subst lev prf %% substh lev prf'
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   419
          handle SAME => prf %% subst lev prf')
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   420
      | subst lev (prf % t) = (subst lev prf % apsome (substh' lev) t
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   421
          handle SAME => prf % apsome' (subst' lev) t)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   422
      | subst _ _ = raise SAME
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   423
    and substh lev prf = (subst lev prf handle SAME => prf)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   424
  in case args of [] => prf | _ => substh 0 prf end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   425
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   426
fun prf_subst_pbounds args prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   427
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   428
    val n = length args;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   429
    fun subst (PBound i) Plev tlev =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   430
 	 (if i < Plev then raise SAME    (*var is locally bound*)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   431
          else incr_pboundvars Plev tlev (List.nth (args, i-Plev))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   432
                 handle Subscript => PBound (i-n)  (*loose: change it*))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   433
      | 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
   434
      | subst (Abst (a, T, body)) Plev tlev = Abst (a, T, subst body Plev (tlev+1))
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   435
      | subst (prf %% prf') Plev tlev = (subst prf Plev tlev %% substh prf' Plev tlev
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   436
          handle SAME => prf %% subst prf' Plev tlev)
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   437
      | subst (prf % t) Plev tlev = subst prf Plev tlev % t
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   438
      | subst  prf _ _ = raise SAME
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   439
    and substh prf Plev tlev = (subst prf Plev tlev handle SAME => prf)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   440
  in case args of [] => prf | _ => substh prf 0 0 end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   441
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   442
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   443
(**** Freezing and thawing of variables in proof terms ****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   444
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   445
fun frzT names =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   446
  map_type_tvar (fn (ixn, xs) => TFree (the (assoc (names, ixn)), xs));
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   447
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   448
fun thawT names =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   449
  map_type_tfree (fn (s, xs) => case assoc (names, s) of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   450
      None => TFree (s, xs)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   451
    | Some ixn => TVar (ixn, xs));
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   452
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   453
fun freeze names names' (t $ u) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   454
      freeze names names' t $ freeze names names' u
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   455
  | freeze names names' (Abs (s, T, t)) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   456
      Abs (s, frzT names' T, freeze names names' t)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   457
  | freeze names names' (Const (s, T)) = Const (s, frzT names' T)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   458
  | freeze names names' (Free (s, T)) = Free (s, frzT names' T)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   459
  | freeze names names' (Var (ixn, T)) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   460
      Free (the (assoc (names, ixn)), frzT names' T)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   461
  | freeze names names' t = t;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   462
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   463
fun thaw names names' (t $ u) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   464
      thaw names names' t $ thaw names names' u
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   465
  | thaw names names' (Abs (s, T, t)) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   466
      Abs (s, thawT names' T, thaw names names' t)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   467
  | thaw names names' (Const (s, T)) = Const (s, thawT names' T)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   468
  | thaw names names' (Free (s, T)) = 
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   469
      let val T' = thawT names' T
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   470
      in case assoc (names, s) of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   471
          None => Free (s, T')
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   472
        | Some ixn => Var (ixn, T')
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   473
      end
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   474
  | thaw names names' (Var (ixn, T)) = Var (ixn, thawT names' T)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   475
  | thaw names names' t = t;
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 freeze_thaw_prf prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   478
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   479
    val (fs, Tfs, vs, Tvs) = fold_proof_terms
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   480
      (fn (t, (fs, Tfs, vs, Tvs)) =>
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   481
         (add_term_frees (t, fs), add_term_tfree_names (t, Tfs),
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   482
          add_term_vars (t, vs), add_term_tvar_ixns (t, Tvs)))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   483
      (fn (T, (fs, Tfs, vs, Tvs)) =>
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   484
         (fs, add_typ_tfree_names (T, Tfs),
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   485
          vs, add_typ_ixns (Tvs, T)))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   486
            (([], [], [], []), prf);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   487
    val fs' = map (fst o dest_Free) fs;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   488
    val vs' = map (fst o dest_Var) vs;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   489
    val names = vs' ~~ variantlist (map fst vs', fs');
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   490
    val names' = Tvs ~~ variantlist (map fst Tvs, Tfs);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   491
    val rnames = map swap names;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   492
    val rnames' = map swap names';
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   493
  in
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   494
    (map_proof_terms (freeze names names') (frzT names') prf,
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   495
     map_proof_terms (thaw rnames rnames') (thawT rnames'))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   496
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   497
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   498
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   499
(***** implication introduction *****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   500
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   501
fun implies_intr_proof h prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   502
  let
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   503
    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
   504
      | abshyp i (Abst (s, T, prf)) = Abst (s, T, abshyp i prf)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   505
      | abshyp i (AbsP (s, t, prf)) = AbsP (s, t, abshyp (i+1) prf)
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   506
      | abshyp i (prf % t) = abshyp i prf % t
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   507
      | 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
   508
          handle SAME => prf1 %% abshyp i prf2)
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   509
      | abshyp _ _ = raise SAME
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   510
    and abshyph i prf = (abshyp i prf handle SAME => prf)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   511
  in
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   512
    AbsP ("H", None (*h*), abshyph 0 prf)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   513
  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
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   516
(***** forall introduction *****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   517
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   518
fun forall_intr_proof x a prf = Abst (a, None, prf_abstract_over x prf);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   520
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   521
(***** varify *****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   522
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   523
fun varify_proof t fixed prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   524
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   525
    val fs = add_term_tfree_names (t, []) \\ fixed;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   526
    val ixns = add_term_tvar_ixns (t, []);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   527
    val fmap = fs ~~ variantlist (fs, map #1 ixns)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   528
    fun thaw (f as (a, S)) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   529
      (case assoc (fmap, a) of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   530
        None => TFree f
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   531
      | Some b => TVar ((b, 0), S));
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   532
  in map_proof_terms (map_term_types (map_type_tfree thaw)) (map_type_tfree thaw) prf
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   533
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   534
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   535
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   536
local
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   537
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   538
fun new_name (ix, (pairs,used)) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   539
  let val v = variant used (string_of_indexname ix)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   540
  in  ((ix, v) :: pairs, v :: used)  end;
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_one alist (ix, sort) = (case assoc (alist, ix) of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   543
    None => TVar (ix, sort)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   544
  | Some name => TFree (name, sort));
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   545
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   546
in
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   547
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   548
fun freezeT t prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   549
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   550
    val used = it_term_types add_typ_tfree_names (t, [])
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   551
    and tvars = map #1 (it_term_types add_typ_tvars (t, []));
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   552
    val (alist, _) = foldr new_name (tvars, ([], used));
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   553
  in
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   554
    (case alist of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   555
      [] => prf (*nothing to do!*)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   556
    | _ =>
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   557
      let val frzT = map_type_tvar (freeze_one alist)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   558
      in map_proof_terms (map_term_types frzT) frzT prf end)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   559
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   560
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   561
end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   562
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   563
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   564
(***** rotate assumptions *****)
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 rotate_proof Bs Bi m 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 params = Term.strip_all_vars Bi;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   569
    val asms = Logic.strip_imp_prems (Term.strip_all_body Bi);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   570
    val i = length asms;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   571
    val j = length Bs;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   572
  in
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   573
    mk_AbsP (j+1, proof_combP (prf, map PBound
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   574
      (j downto 1) @ [mk_Abst (params, mk_AbsP (i,
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   575
        proof_combP (proof_combt (PBound i, map Bound ((length params - 1) downto 0)),
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   576
          map PBound (((i-m-1) downto 0) @ ((i-1) downto (i-m))))))]))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   577
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   578
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   579
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   580
(***** permute premises *****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   581
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   582
fun permute_prems_prf prems j k prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   583
  let val n = length prems
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   584
  in mk_AbsP (n, proof_combP (prf,
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   585
    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
   586
  end;
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
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   589
(***** instantiation *****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   590
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   591
fun instantiate vTs tpairs =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   592
  map_proof_terms (subst_atomic (map (apsnd remove_types) tpairs) o
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   593
    subst_TVars vTs) (typ_subst_TVars vTs);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   594
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   595
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   596
(***** lifting *****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   597
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   598
fun lift_proof Bi inc prop prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   599
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   600
    val (_, lift_all) = Logic.lift_fns (Bi, inc);
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
    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
   603
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   604
    fun lift' Us Ts (Abst (s, T, prf)) =
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   605
          (Abst (s, apsome' (same (incr_tvar inc)) T, lifth' Us (dummyT::Ts) prf)
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   606
           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
   607
      | lift' Us Ts (AbsP (s, t, prf)) =
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   608
          (AbsP (s, apsome' (same (lift'' Us Ts)) t, lifth' Us Ts prf)
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   609
           handle SAME => AbsP (s, t, lift' Us Ts prf))
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   610
      | lift' Us Ts (prf % t) = (lift' Us Ts prf % apsome (lift'' Us Ts) t
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   611
          handle SAME => prf % apsome' (same (lift'' Us Ts)) t)
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   612
      | 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
   613
          handle SAME => prf1 %% lift' Us Ts prf2)
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   614
      | lift' _ _ (PThm (s, prf, prop, Ts)) =
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   615
          PThm (s, prf, prop, apsome' (same (map (incr_tvar inc))) Ts)
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   616
      | lift' _ _ (PAxm (s, prop, Ts)) =
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   617
          PAxm (s, prop, apsome' (same (map (incr_tvar inc))) Ts)
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   618
      | lift' _ _ _ = raise SAME
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
   619
    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
   620
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   621
    val ps = map lift_all (Logic.strip_imp_prems (snd (Logic.strip_flexpairs prop)));
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   622
    val k = length ps;
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
    fun mk_app (b, (i, j, prf)) = 
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   625
          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
   626
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   627
    fun lift Us bs i j (Const ("==>", _) $ A $ B) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   628
	    AbsP ("H", None (*A*), lift Us (true::bs) (i+1) j B)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   629
      | lift Us bs i j (Const ("all", _) $ Abs (a, T, t)) = 
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   630
	    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
   631
      | lift Us bs i j _ = proof_combP (lifth' (rev Us) [] prf,
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   632
            map (fn k => (#3 (foldr mk_app (bs, (i-1, j-1, PBound k)))))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   633
              (i + k - 1 downto i));
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
    mk_AbsP (k, lift [] [] 0 0 Bi)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   636
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   637
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   638
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   639
(***** proof by assumption *****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   640
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   641
fun mk_asm_prf (Const ("==>", _) $ A $ B) i = AbsP ("H", None (*A*), mk_asm_prf B (i+1))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   642
  | mk_asm_prf (Const ("all", _) $ Abs (a, T, t)) i = Abst (a, None (*T*), mk_asm_prf t i)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   643
  | mk_asm_prf _ i = PBound i;
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
fun assumption_proof Bs Bi n prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   646
  mk_AbsP (length Bs, proof_combP (prf,
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   647
    map PBound (length Bs - 1 downto 0) @ [mk_asm_prf Bi (~n)]));
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
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   650
(***** Composition of object rule with proof state *****)
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
fun flatten_params_proof i j n (Const ("==>", _) $ A $ B, k) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   653
      AbsP ("H", None (*A*), flatten_params_proof (i+1) j n (B, k))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   654
  | flatten_params_proof i j n (Const ("all", _) $ Abs (a, T, t), k) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   655
      Abst (a, None (*T*), flatten_params_proof i (j+1) n (t, k))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   656
  | flatten_params_proof i j n (_, k) = proof_combP (proof_combt (PBound (k+i),
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   657
      map Bound (j-1 downto 0)), map PBound (i-1 downto 0 \ i-n));
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   658
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   659
fun bicompose_proof Bs oldAs newAs A n rprf sprf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   660
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   661
    val la = length newAs;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   662
    val lb = length Bs;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   663
  in
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   664
    mk_AbsP (lb+la, proof_combP (sprf,
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   665
      map PBound (lb + la - 1 downto la)) %%
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   666
        proof_combP (rprf, (if n>0 then [mk_asm_prf (the A) (~n)] else []) @
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   667
          map (flatten_params_proof 0 0 n) (oldAs ~~ (la - 1 downto 0))))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   668
  end;
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
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   671
(***** axioms for equality *****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   672
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   673
val aT = TFree ("'a", ["logic"]);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   674
val bT = TFree ("'b", ["logic"]);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   675
val x = Free ("x", aT);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   676
val y = Free ("y", aT);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   677
val z = Free ("z", aT);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   678
val A = Free ("A", propT);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   679
val B = Free ("B", propT);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   680
val f = Free ("f", aT --> bT);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   681
val g = Free ("g", aT --> bT);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   682
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   683
local open Logic in
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   684
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   685
val equality_axms =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   686
  [("reflexive", mk_equals (x, x)),
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   687
   ("symmetric", mk_implies (mk_equals (x, y), mk_equals (y, x))),
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   688
   ("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
   689
   ("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
   690
   ("equal_elim", list_implies ([mk_equals (A, B), A], B)),
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   691
   ("abstract_rule", Logic.mk_implies
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   692
      (all aT $ Abs ("x", aT, equals bT $ (f $ Bound 0) $ (g $ Bound 0)),
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   693
       equals (aT --> bT) $
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   694
         Abs ("x", aT, f $ Bound 0) $ Abs ("x", aT, g $ Bound 0))),
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   695
   ("combination", Logic.list_implies
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   696
      ([Logic.mk_equals (f, g), Logic.mk_equals (x, y)],
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   697
       Logic.mk_equals (f $ x, g $ y)))];
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   698
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   699
val [reflexive_axm, symmetric_axm, transitive_axm, equal_intr_axm,
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   700
  equal_elim_axm, abstract_rule_axm, combination_axm] =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   701
    map (fn (s, t) => PAxm ("ProtoPure." ^ s, varify t, None)) equality_axms;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   702
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   703
end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   704
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   705
val reflexive = reflexive_axm % None;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   706
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   707
fun symmetric (prf as PAxm ("ProtoPure.reflexive", _, _) % _) = prf
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   708
  | symmetric prf = symmetric_axm % None % None %% prf;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   709
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   710
fun transitive _ _ (PAxm ("ProtoPure.reflexive", _, _) % _) prf2 = prf2
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   711
  | transitive _ _ prf1 (PAxm ("ProtoPure.reflexive", _, _) % _) = prf1
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   712
  | transitive u (Type ("prop", [])) prf1 prf2 =
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   713
      transitive_axm % None % Some (remove_types u) % None %% prf1 %% prf2
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   714
  | transitive u T prf1 prf2 =
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   715
      transitive_axm % None % None % None %% prf1 %% prf2;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   716
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   717
fun abstract_rule x a prf =
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   718
  abstract_rule_axm % None % None %% forall_intr_proof x a prf;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   719
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   720
fun check_comb (PAxm ("ProtoPure.combination", _, _) % f % g % _ % _ %% prf %% _) =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   721
      is_some f orelse check_comb prf
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   722
  | check_comb (PAxm ("ProtoPure.transitive", _, _) % _ % _ % _ %% prf1 %% prf2) =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   723
      check_comb prf1 andalso check_comb prf2
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   724
  | check_comb (PAxm ("ProtoPure.symmetric", _, _) % _ % _ %% prf) = check_comb prf
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   725
  | check_comb _ = false;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   726
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   727
fun combination f g t u (Type (_, [T, U])) prf1 prf2 =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   728
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   729
    val f = Envir.beta_norm f;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   730
    val g = Envir.beta_norm g;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   731
    val prf =  if check_comb prf1 then
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   732
        combination_axm % None % None
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   733
      else (case prf1 of
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   734
          PAxm ("ProtoPure.reflexive", _, _) % _ =>
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   735
            combination_axm %> remove_types f % None
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   736
        | _ => combination_axm %> remove_types f %> remove_types g)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   737
  in
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   738
    (case T of
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   739
       Type ("fun", _) => prf %
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   740
         (case head_of f of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   741
            Abs _ => Some (remove_types t)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   742
          | Var _ => Some (remove_types t)
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   743
          | _ => None) %
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   744
         (case head_of g of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   745
            Abs _ => Some (remove_types u)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   746
          | Var _ => Some (remove_types u)
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   747
          | _ => None) %% prf1 %% prf2
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   748
     | _ => prf % None % None %% prf1 %% prf2)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   749
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   750
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   751
fun equal_intr A B prf1 prf2 =
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   752
  equal_intr_axm %> remove_types A %> remove_types B %% prf1 %% prf2;
11519
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
fun equal_elim A B prf1 prf2 =
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   755
  equal_elim_axm %> remove_types A %> remove_types B %% prf1 %% prf2;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   756
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   757
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   758
(***** axioms and theorems *****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   759
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   760
fun vars_of t = rev (foldl_aterms
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   761
  (fn (vs, v as Var _) => v ins vs | (vs, _) => vs) ([], t));
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   762
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   763
fun test_args _ [] = true
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   764
  | test_args is (Bound i :: ts) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   765
      not (i mem is) andalso test_args (i :: is) ts
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   766
  | test_args _ _ = false;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   767
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   768
fun is_fun (Type ("fun", _)) = true
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   769
  | is_fun (TVar _) = true
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   770
  | is_fun _ = false;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   771
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   772
fun add_funvars Ts (vs, t) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   773
  if is_fun (fastype_of1 (Ts, t)) then
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   774
    vs union mapfilter (fn Var (ixn, T) =>
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   775
      if is_fun T then Some ixn else None | _ => None) (vars_of t)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   776
  else vs;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   777
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   778
fun add_npvars q p Ts (vs, Const ("==>", _) $ t $ u) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   779
      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
   780
  | add_npvars q p Ts (vs, Const ("all", Type (_, [Type (_, [T, _]), _])) $ t) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   781
      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
   782
  | 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
   783
  | add_npvars _ _ Ts (vs, t) = add_npvars' Ts (vs, t)
27214c16ebe4 Fixed bug in function add_npvars.
berghofe
parents: 11999
diff changeset
   784
and add_npvars' Ts (vs, t) = (case strip_comb t of
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   785
    (Var (ixn, _), ts) => if test_args [] ts then vs
12041
27214c16ebe4 Fixed bug in function add_npvars.
berghofe
parents: 11999
diff changeset
   786
      else foldl (add_npvars' Ts) (overwrite (vs,
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   787
        (ixn, foldl (add_funvars Ts) (if_none (assoc (vs, ixn)) [], ts))), ts)
12041
27214c16ebe4 Fixed bug in function add_npvars.
berghofe
parents: 11999
diff changeset
   788
  | (Abs (_, T, u), ts) => foldl (add_npvars' (T::Ts)) (vs, u :: ts)
27214c16ebe4 Fixed bug in function add_npvars.
berghofe
parents: 11999
diff changeset
   789
  | (_, ts) => foldl (add_npvars' Ts) (vs, ts));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   790
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   791
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
   792
  | prop_vars (Const ("all", _) $ Abs (_, _, t)) = prop_vars t
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   793
  | prop_vars t = (case strip_comb t of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   794
      (Var (ixn, _), _) => [ixn] | _ => []);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   795
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   796
fun is_proj t =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   797
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   798
    fun is_p i t = (case strip_comb t of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   799
        (Bound j, []) => false
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   800
      | (Bound j, ts) => j >= i orelse exists (is_p i) ts
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   801
      | (Abs (_, _, u), _) => is_p (i+1) u
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   802
      | (_, ts) => exists (is_p i) ts)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   803
  in (case strip_abs_body t of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   804
        Bound _ => true
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   805
      | t' => is_p 0 t')
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   806
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   807
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   808
fun needed_vars prop = 
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   809
  foldl op union ([], map op ins (add_npvars true true [] ([], prop))) union
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   810
  prop_vars prop;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   811
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   812
fun gen_axm_proof c name prop =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   813
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   814
    val nvs = needed_vars prop;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   815
    val args = map (fn (v as Var (ixn, _)) =>
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   816
        if ixn mem nvs then Some v else None) (vars_of prop) @
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   817
      map Some (sort (make_ord atless) (term_frees prop));
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   818
  in
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   819
    proof_combt' (c (name, prop, None), args)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   820
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   821
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   822
val axm_proof = gen_axm_proof PAxm;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   823
val oracle_proof = gen_axm_proof Oracle;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   824
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   825
fun shrink ls lev (prf as Abst (a, T, body)) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   826
      let val (b, is, ch, body') = shrink ls (lev+1) body
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   827
      in (b, is, ch, if ch then Abst (a, T, body') else prf) end
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   828
  | shrink ls lev (prf as AbsP (a, t, body)) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   829
      let val (b, is, ch, body') = shrink (lev::ls) lev body
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   830
      in (b orelse 0 mem is, mapfilter (fn 0 => None | i => Some (i-1)) is,
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   831
        ch, if ch then AbsP (a, t, body') else prf)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   832
      end
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   833
  | shrink ls lev prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   834
      let val (is, ch, _, prf') = shrink' ls lev [] [] prf
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   835
      in (false, is, ch, prf') end
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   836
and shrink' ls lev ts prfs (prf as prf1 %% prf2) =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   837
      let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   838
        val p as (_, is', ch', prf') = shrink ls lev prf2;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   839
        val (is, ch, ts', prf'') = shrink' ls lev ts (p::prfs) prf1
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   840
      in (is union is', ch orelse ch', ts',
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   841
          if ch orelse ch' then prf'' %% prf' else prf)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   842
      end
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   843
  | shrink' ls lev ts prfs (prf as prf1 % t) =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   844
      let val (is, ch, (ch', t')::ts', prf') = shrink' ls lev (t::ts) prfs prf1
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   845
      in (is, ch orelse ch', ts', if ch orelse ch' then prf' % t' else prf) end
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   846
  | shrink' ls lev ts prfs (prf as PBound i) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   847
      (if exists (fn Some (Bound j) => lev-j <= nth_elem (i, ls) | _ => true) ts
12233
3348aa8061d1 - Fixed bug in shrink
berghofe
parents: 12123
diff changeset
   848
         orelse not (null (duplicates
3348aa8061d1 - Fixed bug in shrink
berghofe
parents: 12123
diff changeset
   849
           (foldl (fn (js, Some (Bound j)) => j :: js | (js, _) => js) ([], ts))))
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   850
         orelse exists #1 prfs then [i] else [], false, map (pair false) ts, prf)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   851
  | shrink' ls lev ts prfs (prf as Hyp _) = ([], false, map (pair false) ts, prf)
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   852
  | shrink' ls lev ts prfs (prf as MinProof _) =
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   853
      ([], false, map (pair false) ts, prf)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   854
  | shrink' ls lev ts prfs prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   855
      let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   856
        val prop = (case prf of PThm (_, _, prop, _) => prop | PAxm (_, prop, _) => prop
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   857
          | Oracle (_, prop, _) => prop | _ => error "shrink: proof not in normal form");
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   858
        val vs = vars_of prop;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   859
        val ts' = take (length vs, ts)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   860
        val ts'' = drop (length vs, ts)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   861
        val insts = take (length ts', map (fst o dest_Var) vs) ~~ ts';
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   862
        val nvs = foldl (fn (ixns', (ixn, ixns)) =>
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   863
          ixn ins (case assoc (insts, ixn) of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   864
              Some (Some t) => if is_proj t then ixns union ixns' else ixns'
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   865
            | _ => ixns union ixns'))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   866
              (needed prop ts'' prfs, add_npvars false true [] ([], prop));
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   867
        val insts' = map
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   868
          (fn (ixn, x as Some _) => if ixn mem nvs then (false, x) else (true, None)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   869
            | (_, x) => (false, x)) insts
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   870
      in ([], false, insts' @ map (pair false) ts'', prf) end
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   871
and needed (Const ("==>", _) $ t $ u) ts ((b, _, _, _)::prfs) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   872
      (if b then map (fst o dest_Var) (vars_of t) else []) union needed u ts prfs
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   873
  | needed (Var (ixn, _)) (_::_) _ = [ixn]
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   874
  | needed _ _ _ = [];
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
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   877
(**** Simple first order matching functions for terms and proofs ****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   878
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   879
exception PMatch;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   880
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   881
(** see pattern.ML **)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   882
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   883
fun flt i = filter (fn n => n < i);
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   884
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   885
fun fomatch Ts tymatch j =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   886
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   887
    fun mtch (instsp as (tyinsts, insts)) = fn
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   888
        (Var (ixn, T), t)  =>
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   889
          if j>0 andalso not (null (flt j (loose_bnos t)))
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   890
          then raise PMatch
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   891
          else (tymatch (tyinsts, fn () => (T, fastype_of1 (Ts, t))),
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   892
            (ixn, t) :: insts)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   893
      | (Free (a, T), Free (b, U)) =>
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   894
	  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
   895
      | (Const (a, T), Const (b, U))  =>
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   896
	  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
   897
      | (f $ t, g $ u) => mtch (mtch instsp (f, g)) (t, u)
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   898
      | (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
   899
      | _ => raise PMatch
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   900
  in mtch end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   901
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   902
fun match_proof Ts tymatch =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   903
  let
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   904
    fun optmatch _ inst (None, _) = inst
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   905
      | optmatch _ _ (Some _, None) = raise PMatch
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   906
      | optmatch mtch inst (Some x, Some y) = mtch inst (x, y)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   907
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   908
    fun matcht Ts j (pinst, tinst) (t, u) =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   909
      (pinst, fomatch Ts tymatch j tinst (t, Envir.beta_norm u));
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   910
    fun matchT (pinst, (tyinsts, insts)) p =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   911
      (pinst, (tymatch (tyinsts, K p), insts));
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   912
    fun matchTs inst (Ts, Us) = foldl (uncurry matchT) (inst, Ts ~~ Us);
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   913
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   914
    fun mtch Ts i j (pinst, tinst) (Hyp (Var (ixn, _)), prf) =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   915
          if i = 0 andalso j = 0 then ((ixn, prf) :: pinst, tinst)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   916
          else (case apfst (flt i) (apsnd (flt j)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   917
                  (prf_add_loose_bnos 0 0 prf ([], []))) of
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   918
              ([], []) => ((ixn, incr_pboundvars (~i) (~j) prf) :: pinst, tinst)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   919
            | ([], _) => if j = 0 then
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   920
                   ((ixn, incr_pboundvars (~i) (~j) prf) :: pinst, tinst)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   921
                 else raise PMatch
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   922
            | _ => raise PMatch)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   923
      | mtch Ts i j inst (prf1 % opt1, prf2 % opt2) =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   924
          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
   925
      | mtch Ts i j inst (prf1 %% prf2, prf1' %% prf2') =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   926
          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
   927
      | mtch Ts i j inst (Abst (_, opT, prf1), Abst (_, opU, prf2)) =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   928
          mtch (if_none opU dummyT :: Ts) i (j+1)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   929
            (optmatch matchT inst (opT, opU)) (prf1, prf2)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   930
      | mtch Ts i j inst (prf1, Abst (_, opU, prf2)) =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   931
          mtch (if_none opU dummyT :: Ts) i (j+1) inst
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   932
            (incr_pboundvars 0 1 prf1 %> Bound 0, prf2)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   933
      | mtch Ts i j inst (AbsP (_, opt, prf1), AbsP (_, opu, prf2)) =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   934
          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
   935
      | mtch Ts i j inst (prf1, AbsP (_, _, prf2)) =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   936
          mtch Ts (i+1) j inst (incr_pboundvars 1 0 prf1 %% PBound 0, prf2)
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   937
      | mtch Ts i j inst (PThm ((name1, _), _, prop1, opTs),
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   938
            PThm ((name2, _), _, prop2, opUs)) =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   939
          if name1=name2 andalso prop1=prop2 then
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   940
            optmatch matchTs inst (opTs, opUs)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   941
          else raise PMatch
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   942
      | mtch Ts i j inst (PAxm (s1, _, opTs), PAxm (s2, _, opUs)) =
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   943
          if s1=s2 then optmatch matchTs inst (opTs, opUs)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   944
          else raise PMatch
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   945
      | 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
   946
      | mtch _ _ _ _ _ = raise PMatch
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
   947
  in mtch Ts 0 0 end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   948
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   949
fun prf_subst (pinst, (tyinsts, insts)) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   950
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   951
    val substT = typ_subst_TVars_Vartab tyinsts;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   952
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   953
    fun subst' lev (t as Var (ixn, _)) = (case assoc (insts, ixn) of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   954
          None => t
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   955
        | Some u => incr_boundvars lev u)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   956
      | subst' lev (Const (s, T)) = Const (s, substT T)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   957
      | subst' lev (Free (s, T)) = Free (s, substT T)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   958
      | 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
   959
      | subst' lev (f $ t) = subst' lev f $ subst' lev t
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   960
      | subst' _ t = t;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   961
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   962
    fun subst plev tlev (AbsP (a, t, body)) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   963
          AbsP (a, apsome (subst' tlev) t, subst (plev+1) tlev body)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   964
      | subst plev tlev (Abst (a, T, body)) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   965
          Abst (a, apsome substT T, subst plev (tlev+1) body)
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   966
      | subst plev tlev (prf %% prf') = subst plev tlev prf %% subst plev tlev prf'
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
   967
      | subst plev tlev (prf % t) = subst plev tlev prf % apsome (subst' tlev) t
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   968
      | subst plev tlev (prf as Hyp (Var (ixn, _))) = (case assoc (pinst, ixn) of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   969
          None => prf
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   970
        | Some prf' => incr_pboundvars plev tlev prf')
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   971
      | subst _ _ (PThm (id, prf, prop, Ts)) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   972
          PThm (id, prf, prop, apsome (map substT) Ts)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   973
      | subst _ _ (PAxm (id, prop, Ts)) =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   974
          PAxm (id, prop, apsome (map substT) Ts)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   975
      | subst _ _ t = t
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   976
  in subst 0 0 end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
   977
12871
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
   978
(*A fast unification filter: true unless the two terms cannot be unified. 
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
   979
  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
   980
fun could_unify prf1 prf2 =
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
   981
  let
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
   982
    fun matchrands (prf1 %% prf2) (prf1' %% prf2') =
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
   983
          could_unify prf2 prf2' andalso matchrands prf1 prf1'
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
   984
      | matchrands (prf % Some t) (prf' % Some t') =
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
   985
          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
   986
      | matchrands (prf % _) (prf' % _) = matchrands prf prf'
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
   987
      | matchrands _ _ = true
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
   988
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
   989
    fun head_of (prf %% _) = head_of prf
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
   990
      | head_of (prf % _) = head_of prf
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
   991
      | head_of prf = prf
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
   992
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
   993
  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
   994
        (_, Hyp (Var _)) => true
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
   995
      | (Hyp (Var _), _) => true
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
   996
      | (PThm ((a, _), _, propa, _), PThm ((b, _), _, propb, _)) =>
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
   997
          a = b andalso propa = propb andalso matchrands prf1 prf2
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
   998
      | (PAxm (a, _, _), PAxm (b, _, _)) => a = b andalso matchrands prf1 prf2
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
   999
      | (PBound i, PBound j) =>  i = j andalso matchrands prf1 prf2
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1000
      | (AbsP _, _) =>  true   (*because of possible eta equality*)
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1001
      | (Abst _, _) =>  true
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1002
      | (_, AbsP _) =>  true
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1003
      | (_, Abst _) =>  true
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1004
      | _ => false
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1005
  end;
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1006
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1007
(**** rewriting on proof terms ****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1008
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1009
fun rewrite_prf tymatch (rules, procs) prf =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1010
  let
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
  1011
    fun rew _ (Abst (_, _, body) % Some t) = Some (prf_subst_bounds [t] body)
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
  1012
      | rew _ (AbsP (_, _, body) %% prf) = Some (prf_subst_pbounds [prf] body)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1013
      | rew Ts prf = (case get_first (fn (_, r) => r Ts prf) procs of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1014
          Some prf' => Some prf'
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1015
        | None => get_first (fn (prf1, prf2) => Some (prf_subst
12279
dc3020e938e2 Extended match_proof to handle abstractions.
berghofe
parents: 12233
diff changeset
  1016
            (match_proof Ts tymatch ([], (Vartab.empty, [])) (prf1, prf)) prf2)
12871
21486a0557d1 Added function could_unify to speed up rewriting of proof terms.
berghofe
parents: 12868
diff changeset
  1017
               handle PMatch => None) (filter (could_unify prf o fst) rules));
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1018
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
  1019
    fun rew0 Ts (prf as AbsP (_, _, prf' %% PBound 0)) =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1020
          if prf_loose_Pbvar1 prf' 0 then rew Ts prf
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1021
          else
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1022
            let val prf'' = incr_pboundvars (~1) 0 prf'
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1023
            in Some (if_none (rew Ts prf'') prf'') end
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
  1024
      | rew0 Ts (prf as Abst (_, _, prf' % Some (Bound 0))) =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1025
          if prf_loose_bvar1 prf' 0 then rew Ts prf
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1026
          else
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1027
            let val prf'' = incr_pboundvars 0 (~1) prf'
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1028
            in Some (if_none (rew Ts prf'') prf'') end
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1029
      | rew0 Ts prf = rew Ts prf;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1030
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1031
    fun rew1 Ts prf = (case rew2 Ts prf of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1032
          Some prf1 => (case rew0 Ts prf1 of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1033
              Some prf2 => Some (if_none (rew1 Ts prf2) prf2)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1034
            | None => Some prf1)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1035
        | None => (case rew0 Ts prf of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1036
              Some prf1 => Some (if_none (rew1 Ts prf1) prf1)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1037
            | None => None))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1038
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
  1039
    and rew2 Ts (prf % Some t) = (case prf of
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1040
            Abst (_, _, body) =>
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1041
              let val prf' = prf_subst_bounds [t] body
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1042
              in Some (if_none (rew2 Ts prf') prf') end
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1043
          | _ => (case rew1 Ts prf of
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
  1044
              Some prf' => Some (prf' % Some t)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1045
            | None => None))
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
  1046
      | rew2 Ts (prf % None) = apsome (fn prf' => prf' % None) (rew1 Ts prf)
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
  1047
      | rew2 Ts (prf1 %% prf2) = (case prf1 of
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1048
            AbsP (_, _, body) =>
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1049
              let val prf' = prf_subst_pbounds [prf2] body
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1050
              in Some (if_none (rew2 Ts prf') prf') end
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1051
          | _ => (case rew1 Ts prf1 of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1052
              Some prf1' => (case rew1 Ts prf2 of
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
  1053
                  Some prf2' => Some (prf1' %% prf2')
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
  1054
                | None => Some (prf1' %% prf2))
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1055
            | None => (case rew1 Ts prf2 of
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
  1056
                  Some prf2' => Some (prf1 %% prf2')
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1057
                | None => None)))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1058
      | rew2 Ts (Abst (s, T, prf)) = (case rew1 (if_none T dummyT :: Ts) prf of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1059
            Some prf' => Some (Abst (s, T, prf'))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1060
          | None => None)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1061
      | rew2 Ts (AbsP (s, t, prf)) = (case rew1 Ts prf of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1062
            Some prf' => Some (AbsP (s, t, prf'))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1063
          | None => None)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1064
      | rew2 _ _ = None
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
  in if_none (rew1 [] prf) prf end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1067
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1068
fun rewrite_proof tsig = rewrite_prf (fn (tab, f) =>
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1069
  Type.typ_match tsig (tab, f ()) handle Type.TYPE_MATCH => raise PMatch);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1070
11715
592923615f77 Tuned several functions to improve sharing of unchanged subproofs.
berghofe
parents: 11652
diff changeset
  1071
fun rewrite_proof_notypes rews = rewrite_prf fst rews;
11615
ca7be12b2cbc - Exchanged % and %%.
berghofe
parents: 11543
diff changeset
  1072
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1073
(**** theory data ****)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1074
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1075
(* data kind 'Pure/proof' *)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1076
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1077
structure ProofArgs =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1078
struct
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1079
  val name = "Pure/proof";
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1080
  type T = ((proof * proof) list *
12233
3348aa8061d1 - Fixed bug in shrink
berghofe
parents: 12123
diff changeset
  1081
    (string * (typ list -> proof -> proof option)) list);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1082
12233
3348aa8061d1 - Fixed bug in shrink
berghofe
parents: 12123
diff changeset
  1083
  val empty = ([], []);
3348aa8061d1 - Fixed bug in shrink
berghofe
parents: 12123
diff changeset
  1084
  val copy = I;
3348aa8061d1 - Fixed bug in shrink
berghofe
parents: 12123
diff changeset
  1085
  val prep_ext = I;
3348aa8061d1 - Fixed bug in shrink
berghofe
parents: 12123
diff changeset
  1086
  fun merge ((rules1, procs1), (rules2, procs2)) =
12293
ce14a4faeded use merge_lists, merge_alists;
wenzelm
parents: 12279
diff changeset
  1087
    (merge_lists rules1 rules2, merge_alists procs1 procs2);
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1088
  fun print _ _ = ();
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1089
end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1090
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1091
structure ProofData = TheoryDataFun(ProofArgs);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1092
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1093
val init = ProofData.init;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1094
12233
3348aa8061d1 - Fixed bug in shrink
berghofe
parents: 12123
diff changeset
  1095
fun add_prf_rrules rs thy =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1096
  let val r = ProofData.get thy
12233
3348aa8061d1 - Fixed bug in shrink
berghofe
parents: 12123
diff changeset
  1097
  in ProofData.put (rs @ fst r, snd r) thy end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1098
12233
3348aa8061d1 - Fixed bug in shrink
berghofe
parents: 12123
diff changeset
  1099
fun add_prf_rprocs ps thy =
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1100
  let val r = ProofData.get thy
12233
3348aa8061d1 - Fixed bug in shrink
berghofe
parents: 12123
diff changeset
  1101
  in ProofData.put (fst r, ps @ snd r) thy end;
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1102
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1103
fun thm_proof sign (name, tags) hyps prop prf =
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1104
  let
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1105
    val hyps' = gen_distinct op aconv hyps;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1106
    val prop = Logic.list_implies (hyps', prop);
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1107
    val nvs = needed_vars prop;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1108
    val args = map (fn (v as Var (ixn, _)) =>
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1109
        if ixn mem nvs then Some v else None) (vars_of prop) @
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1110
      map Some (sort (make_ord atless) (term_frees prop));
11543
d61b913431c5 renamed `keep_derivs' to `proofs', and made an integer;
wenzelm
parents: 11540
diff changeset
  1111
    val opt_prf = if ! proofs = 2 then
12233
3348aa8061d1 - Fixed bug in shrink
berghofe
parents: 12123
diff changeset
  1112
        #4 (shrink [] 0 (rewrite_prf fst (ProofData.get_sg sign)
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1113
          (foldr (uncurry implies_intr_proof) (hyps', prf))))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1114
      else MinProof (mk_min_proof ([], prf));
12233
3348aa8061d1 - Fixed bug in shrink
berghofe
parents: 12123
diff changeset
  1115
    val head = (case strip_combt (fst (strip_combP prf)) of
11519
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1116
        (PThm ((old_name, _), prf', prop', None), args') =>
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1117
          if (old_name="" orelse old_name=name) andalso
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1118
             prop = prop' andalso args = args' then
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1119
            PThm ((name, tags), prf', prop, None)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1120
          else
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1121
            PThm ((name, tags), opt_prf, prop, None)
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1122
      | _ => PThm ((name, tags), opt_prf, prop, None))
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1123
  in
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1124
    proof_combP (proof_combt' (head, args), map Hyp hyps')
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1125
  end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1126
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1127
fun get_name_tags prop prf = (case strip_combt (fst (strip_combP prf)) of
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1128
      (PThm ((name, tags), _, prop', _), _) =>
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1129
        if prop=prop' then (name, tags) else ("", [])
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1130
    | (PAxm (name, prop', _), _) =>
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1131
        if prop=prop' then (name, []) else ("", [])
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1132
    | _ => ("", []));
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1133
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1134
end;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1135
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1136
structure BasicProofterm : BASIC_PROOFTERM = Proofterm;
0c96830636a1 New implementation of LF style proof terms.
berghofe
parents:
diff changeset
  1137
open BasicProofterm;