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