src/Pure/Proof/proof_rewrite_rules.ML
author krauss
Tue, 30 Mar 2010 15:25:30 +0200
changeset 36042 85efdadee8ae
parent 33722 e588744f14da
child 36744 6e1f3d609a68
permissions -rw-r--r--
switched PThm/PAxm etc. to use canonical order of type variables (term variables unchanged)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
11522
42fbb6abed5a Initial revision of tools for proof terms.
berghofe
parents:
diff changeset
     1
(*  Title:      Pure/Proof/proof_rewrite_rules.ML
11539
0f17da240450 tuned headers;
wenzelm
parents: 11522
diff changeset
     2
    Author:     Stefan Berghofer, TU Muenchen
11522
42fbb6abed5a Initial revision of tools for proof terms.
berghofe
parents:
diff changeset
     3
12906
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
     4
Simplification functions for proof terms involving meta level rules.
11522
42fbb6abed5a Initial revision of tools for proof terms.
berghofe
parents:
diff changeset
     5
*)
42fbb6abed5a Initial revision of tools for proof terms.
berghofe
parents:
diff changeset
     6
42fbb6abed5a Initial revision of tools for proof terms.
berghofe
parents:
diff changeset
     7
signature PROOF_REWRITE_RULES =
42fbb6abed5a Initial revision of tools for proof terms.
berghofe
parents:
diff changeset
     8
sig
33722
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 29271
diff changeset
     9
  val rew : bool -> typ list -> Proofterm.proof -> (Proofterm.proof * Proofterm.proof) option
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 29271
diff changeset
    10
  val rprocs : bool ->
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 29271
diff changeset
    11
    (typ list -> Proofterm.proof -> (Proofterm.proof * Proofterm.proof) option) list
12906
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
    12
  val rewrite_terms : (term -> term) -> Proofterm.proof -> Proofterm.proof
17203
29b2563f5c11 refer to theory instead of low-level tsig;
wenzelm
parents: 17137
diff changeset
    13
  val elim_defs : theory -> bool -> thm list -> Proofterm.proof -> Proofterm.proof
13608
9a6f43b8eae1 Added function elim_vars.
berghofe
parents: 13341
diff changeset
    14
  val elim_vars : (typ -> term) -> Proofterm.proof -> Proofterm.proof
22280
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
    15
  val hhf_proof : term -> term -> Proofterm.proof -> Proofterm.proof
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
    16
  val un_hhf_proof : term -> term -> Proofterm.proof -> Proofterm.proof
11522
42fbb6abed5a Initial revision of tools for proof terms.
berghofe
parents:
diff changeset
    17
end;
42fbb6abed5a Initial revision of tools for proof terms.
berghofe
parents:
diff changeset
    18
42fbb6abed5a Initial revision of tools for proof terms.
berghofe
parents:
diff changeset
    19
structure ProofRewriteRules : PROOF_REWRITE_RULES =
42fbb6abed5a Initial revision of tools for proof terms.
berghofe
parents:
diff changeset
    20
struct
42fbb6abed5a Initial revision of tools for proof terms.
berghofe
parents:
diff changeset
    21
42fbb6abed5a Initial revision of tools for proof terms.
berghofe
parents:
diff changeset
    22
open Proofterm;
42fbb6abed5a Initial revision of tools for proof terms.
berghofe
parents:
diff changeset
    23
19309
8ea43e9ad83a avoid polymorphic equality;
wenzelm
parents: 19126
diff changeset
    24
fun rew b _ =
12866
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
    25
  let
17137
0f48fbb60a61 replaced ? by ??
haftmann
parents: 17018
diff changeset
    26
    fun ?? x = if b then SOME x else NONE;
12866
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
    27
    fun ax (prf as PAxm (s, prop, _)) Ts =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 14981
diff changeset
    28
      if b then PAxm (s, prop, SOME Ts) else prf;
12866
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
    29
    fun ty T = if b then
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
    30
        let val Type (_, [Type (_, [U, _]), _]) = T
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 14981
diff changeset
    31
        in SOME U end
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 14981
diff changeset
    32
      else NONE;
12866
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
    33
    val equal_intr_axm = ax equal_intr_axm [];
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
    34
    val equal_elim_axm = ax equal_elim_axm [];
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
    35
    val symmetric_axm = ax symmetric_axm [propT];
11522
42fbb6abed5a Initial revision of tools for proof terms.
berghofe
parents:
diff changeset
    36
28806
ba0ffe4cfc2b rewrite_proof: simplified simprocs (no name required);
wenzelm
parents: 26463
diff changeset
    37
    fun rew' (PThm (_, (("Pure.protectD", _, _), _)) % _ %%
ba0ffe4cfc2b rewrite_proof: simplified simprocs (no name required);
wenzelm
parents: 26463
diff changeset
    38
        (PThm (_, (("Pure.protectI", _, _), _)) % _ %% prf)) = SOME prf
ba0ffe4cfc2b rewrite_proof: simplified simprocs (no name required);
wenzelm
parents: 26463
diff changeset
    39
      | rew' (PThm (_, (("Pure.conjunctionD1", _, _), _)) % _ % _ %%
ba0ffe4cfc2b rewrite_proof: simplified simprocs (no name required);
wenzelm
parents: 26463
diff changeset
    40
        (PThm (_, (("Pure.conjunctionI", _, _), _)) % _ % _ %% prf %% _)) = SOME prf
ba0ffe4cfc2b rewrite_proof: simplified simprocs (no name required);
wenzelm
parents: 26463
diff changeset
    41
      | rew' (PThm (_, (("Pure.conjunctionD2", _, _), _)) % _ % _ %%
ba0ffe4cfc2b rewrite_proof: simplified simprocs (no name required);
wenzelm
parents: 26463
diff changeset
    42
        (PThm (_, (("Pure.conjunctionI", _, _), _)) % _ % _ %% _ %% prf)) = SOME prf
26424
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
    43
      | rew' (PAxm ("Pure.equal_elim", _, _) % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
    44
        (PAxm ("Pure.equal_intr", _, _) % _ % _ %% prf %% _)) = SOME prf
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
    45
      | rew' (PAxm ("Pure.symmetric", _, _) % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
    46
        (PAxm ("Pure.equal_intr", _, _) % A % B %% prf1 %% prf2)) =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 14981
diff changeset
    47
            SOME (equal_intr_axm % B % A %% prf2 %% prf1)
12002
bc9b5bad0e7b Additional rules for simplifying inside "Goal"
berghofe
parents: 11612
diff changeset
    48
26424
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
    49
      | rew' (PAxm ("Pure.equal_elim", _, _) % SOME (_ $ A) % SOME (_ $ B) %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
    50
        (PAxm ("Pure.combination", _, _) % SOME (Const ("prop", _)) %
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
    51
          _ % _ % _ %% (PAxm ("Pure.reflexive", _, _) % _) %% prf1) %%
28806
ba0ffe4cfc2b rewrite_proof: simplified simprocs (no name required);
wenzelm
parents: 26463
diff changeset
    52
        ((tg as PThm (_, (("Pure.protectI", _, _), _))) % _ %% prf2)) =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 14981
diff changeset
    53
        SOME (tg %> B %% (equal_elim_axm %> A %> B %% prf1 %% prf2))
12002
bc9b5bad0e7b Additional rules for simplifying inside "Goal"
berghofe
parents: 11612
diff changeset
    54
26424
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
    55
      | rew' (PAxm ("Pure.equal_elim", _, _) % SOME (_ $ A) % SOME (_ $ B) %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
    56
        (PAxm ("Pure.symmetric", _, _) % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
    57
          (PAxm ("Pure.combination", _, _) % SOME (Const ("prop", _)) %
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
    58
             _ % _ % _ %% (PAxm ("Pure.reflexive", _, _) % _) %% prf1)) %%
28806
ba0ffe4cfc2b rewrite_proof: simplified simprocs (no name required);
wenzelm
parents: 26463
diff changeset
    59
        ((tg as PThm (_, (("Pure.protectI", _, _), _))) % _ %% prf2)) =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 14981
diff changeset
    60
        SOME (tg %> B %% (equal_elim_axm %> A %> B %%
17137
0f48fbb60a61 replaced ? by ??
haftmann
parents: 17018
diff changeset
    61
          (symmetric_axm % ?? B % ?? A %% prf1) %% prf2))
11522
42fbb6abed5a Initial revision of tools for proof terms.
berghofe
parents:
diff changeset
    62
26424
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
    63
      | rew' (PAxm ("Pure.equal_elim", _, _) % SOME X % SOME Y %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
    64
        (PAxm ("Pure.combination", _, _) % _ % _ % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
    65
          (PAxm ("Pure.combination", _, _) % SOME (Const ("==>", _)) % _ % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
    66
             (PAxm ("Pure.reflexive", _, _) % _) %% prf1) %% prf2)) =
12866
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
    67
        let
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
    68
          val _ $ A $ C = Envir.beta_norm X;
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
    69
          val _ $ B $ D = Envir.beta_norm Y
17137
0f48fbb60a61 replaced ? by ??
haftmann
parents: 17018
diff changeset
    70
        in SOME (AbsP ("H1", ?? X, AbsP ("H2", ?? B,
12866
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
    71
          equal_elim_axm %> C %> D %% incr_pboundvars 2 0 prf2 %%
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
    72
            (PBound 1 %% (equal_elim_axm %> B %> A %%
17137
0f48fbb60a61 replaced ? by ??
haftmann
parents: 17018
diff changeset
    73
              (symmetric_axm % ?? A % ?? B %% incr_pboundvars 2 0 prf1) %% PBound 0)))))
12866
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
    74
        end
11522
42fbb6abed5a Initial revision of tools for proof terms.
berghofe
parents:
diff changeset
    75
26424
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
    76
      | rew' (PAxm ("Pure.equal_elim", _, _) % SOME X % SOME Y %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
    77
        (PAxm ("Pure.symmetric", _, _) % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
    78
          (PAxm ("Pure.combination", _, _) % _ % _ % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
    79
            (PAxm ("Pure.combination", _, _) % SOME (Const ("==>", _)) % _ % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
    80
               (PAxm ("Pure.reflexive", _, _) % _) %% prf1) %% prf2))) =
12866
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
    81
        let
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
    82
          val _ $ A $ C = Envir.beta_norm Y;
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
    83
          val _ $ B $ D = Envir.beta_norm X
17137
0f48fbb60a61 replaced ? by ??
haftmann
parents: 17018
diff changeset
    84
        in SOME (AbsP ("H1", ?? X, AbsP ("H2", ?? A,
12866
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
    85
          equal_elim_axm %> D %> C %%
17137
0f48fbb60a61 replaced ? by ??
haftmann
parents: 17018
diff changeset
    86
            (symmetric_axm % ?? C % ?? D %% incr_pboundvars 2 0 prf2)
12866
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
    87
              %% (PBound 1 %% (equal_elim_axm %> A %> B %% incr_pboundvars 2 0 prf1 %% PBound 0)))))
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
    88
        end
11522
42fbb6abed5a Initial revision of tools for proof terms.
berghofe
parents:
diff changeset
    89
26424
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
    90
      | rew' (PAxm ("Pure.equal_elim", _, _) % SOME X % SOME Y %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
    91
        (PAxm ("Pure.combination", _, _) % SOME (Const ("all", _)) % _ % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
    92
          (PAxm ("Pure.reflexive", _, _) % _) %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
    93
            (PAxm ("Pure.abstract_rule", _, _) % _ % _ %% prf))) =
12866
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
    94
        let
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
    95
          val Const (_, T) $ P = Envir.beta_norm X;
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
    96
          val _ $ Q = Envir.beta_norm Y;
17137
0f48fbb60a61 replaced ? by ??
haftmann
parents: 17018
diff changeset
    97
        in SOME (AbsP ("H", ?? X, Abst ("x", ty T,
12866
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
    98
            equal_elim_axm %> incr_boundvars 1 P $ Bound 0 %> incr_boundvars 1 Q $ Bound 0 %%
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
    99
              (incr_pboundvars 1 1 prf %> Bound 0) %% (PBound 0 %> Bound 0))))
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
   100
        end
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
   101
26424
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   102
      | rew' (PAxm ("Pure.equal_elim", _, _) % SOME X % SOME Y %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   103
        (PAxm ("Pure.symmetric", _, _) % _ % _ %%        
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   104
          (PAxm ("Pure.combination", _, _) % SOME (Const ("all", _)) % _ % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   105
            (PAxm ("Pure.reflexive", _, _) % _) %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   106
              (PAxm ("Pure.abstract_rule", _, _) % _ % _ %% prf)))) =
12866
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
   107
        let
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
   108
          val Const (_, T) $ P = Envir.beta_norm X;
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
   109
          val _ $ Q = Envir.beta_norm Y;
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
   110
          val t = incr_boundvars 1 P $ Bound 0;
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
   111
          val u = incr_boundvars 1 Q $ Bound 0
17137
0f48fbb60a61 replaced ? by ??
haftmann
parents: 17018
diff changeset
   112
        in SOME (AbsP ("H", ?? X, Abst ("x", ty T,
12866
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
   113
          equal_elim_axm %> t %> u %%
17137
0f48fbb60a61 replaced ? by ??
haftmann
parents: 17018
diff changeset
   114
            (symmetric_axm % ?? u % ?? t %% (incr_pboundvars 1 1 prf %> Bound 0))
12866
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
   115
              %% (PBound 0 %> Bound 0))))
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
   116
        end
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
   117
26424
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   118
      | rew' (PAxm ("Pure.equal_elim", _, _) % SOME A % SOME C %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   119
        (PAxm ("Pure.transitive", _, _) % _ % SOME B % _ %% prf1 %% prf2) %% prf3) =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 14981
diff changeset
   120
           SOME (equal_elim_axm %> B %> C %% prf2 %%
12866
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
   121
             (equal_elim_axm %> A %> B %% prf1 %% prf3))
26424
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   122
      | rew' (PAxm ("Pure.equal_elim", _, _) % SOME A % SOME C %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   123
        (PAxm ("Pure.symmetric", _, _) % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   124
          (PAxm ("Pure.transitive", _, _) % _ % SOME B % _ %% prf1 %% prf2)) %% prf3) =
17137
0f48fbb60a61 replaced ? by ??
haftmann
parents: 17018
diff changeset
   125
           SOME (equal_elim_axm %> B %> C %% (symmetric_axm % ?? C % ?? B %% prf1) %%
0f48fbb60a61 replaced ? by ??
haftmann
parents: 17018
diff changeset
   126
             (equal_elim_axm %> A %> B %% (symmetric_axm % ?? B % ?? A %% prf2) %% prf3))
12866
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
   127
26424
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   128
      | rew' (PAxm ("Pure.equal_elim", _, _) % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   129
        (PAxm ("Pure.reflexive", _, _) % _) %% prf) = SOME prf
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   130
      | rew' (PAxm ("Pure.equal_elim", _, _) % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   131
        (PAxm ("Pure.symmetric", _, _) % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   132
          (PAxm ("Pure.reflexive", _, _) % _)) %% prf) = SOME prf
12866
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
   133
26424
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   134
      | rew' (PAxm ("Pure.symmetric", _, _) % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   135
        (PAxm ("Pure.symmetric", _, _) % _ % _ %% prf)) = SOME prf
11522
42fbb6abed5a Initial revision of tools for proof terms.
berghofe
parents:
diff changeset
   136
26424
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   137
      | rew' (PAxm ("Pure.equal_elim", _, _) % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   138
        (PAxm ("Pure.equal_elim", _, _) % SOME (_ $ A $ C) % SOME (_ $ B $ D) %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   139
          (PAxm ("Pure.combination", _, _) % _ % _ % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   140
            (PAxm ("Pure.combination", _, _) % SOME (Const ("==", _)) % _ % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   141
              (PAxm ("Pure.reflexive", _, _) % _) %% prf1) %% prf2) %% prf3) %% prf4) =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 14981
diff changeset
   142
          SOME (equal_elim_axm %> C %> D %% prf2 %%
12866
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
   143
            (equal_elim_axm %> A %> C %% prf3 %%
17137
0f48fbb60a61 replaced ? by ??
haftmann
parents: 17018
diff changeset
   144
              (equal_elim_axm %> B %> A %% (symmetric_axm % ?? A % ?? B %% prf1) %% prf4)))
12866
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
   145
26424
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   146
      | rew' (PAxm ("Pure.equal_elim", _, _) % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   147
        (PAxm ("Pure.symmetric", _, _) % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   148
          (PAxm ("Pure.equal_elim", _, _) % SOME (_ $ A $ C) % SOME (_ $ B $ D) %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   149
            (PAxm ("Pure.combination", _, _) % _ % _ % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   150
              (PAxm ("Pure.combination", _, _) % SOME (Const ("==", _)) % _ % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   151
                (PAxm ("Pure.reflexive", _, _) % _) %% prf1) %% prf2) %% prf3)) %% prf4) =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 14981
diff changeset
   152
          SOME (equal_elim_axm %> A %> B %% prf1 %%
17137
0f48fbb60a61 replaced ? by ??
haftmann
parents: 17018
diff changeset
   153
            (equal_elim_axm %> C %> A %% (symmetric_axm % ?? A % ?? C %% prf3) %%
0f48fbb60a61 replaced ? by ??
haftmann
parents: 17018
diff changeset
   154
              (equal_elim_axm %> D %> C %% (symmetric_axm % ?? C % ?? D %% prf2) %% prf4)))
11522
42fbb6abed5a Initial revision of tools for proof terms.
berghofe
parents:
diff changeset
   155
26424
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   156
      | rew' (PAxm ("Pure.equal_elim", _, _) % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   157
        (PAxm ("Pure.equal_elim", _, _) % SOME (_ $ B $ D) % SOME (_ $ A $ C) %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   158
          (PAxm ("Pure.symmetric", _, _) % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   159
            (PAxm ("Pure.combination", _, _) % _ % _ % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   160
              (PAxm ("Pure.combination", _, _) % SOME (Const ("==", _)) % _ % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   161
                (PAxm ("Pure.reflexive", _, _) % _) %% prf1) %% prf2)) %% prf3) %% prf4) =
17137
0f48fbb60a61 replaced ? by ??
haftmann
parents: 17018
diff changeset
   162
          SOME (equal_elim_axm %> D %> C %% (symmetric_axm % ?? C % ?? D %% prf2) %%
12866
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
   163
            (equal_elim_axm %> B %> D %% prf3 %%
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
   164
              (equal_elim_axm %> A %> B %% prf1 %% prf4)))
11522
42fbb6abed5a Initial revision of tools for proof terms.
berghofe
parents:
diff changeset
   165
26424
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   166
      | rew' (PAxm ("Pure.equal_elim", _, _) % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   167
        (PAxm ("Pure.symmetric", _, _) % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   168
          (PAxm ("Pure.equal_elim", _, _) % SOME (_ $ B $ D) % SOME (_ $ A $ C) %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   169
            (PAxm ("Pure.symmetric", _, _) % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   170
              (PAxm ("Pure.combination", _, _) % _ % _ % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   171
                (PAxm ("Pure.combination", _, _) % SOME (Const ("==", _)) % _ % _ % _ %%
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   172
                  (PAxm ("Pure.reflexive", _, _) % _) %% prf1) %% prf2)) %% prf3)) %% prf4) =
17137
0f48fbb60a61 replaced ? by ??
haftmann
parents: 17018
diff changeset
   173
          SOME (equal_elim_axm %> B %> A %% (symmetric_axm % ?? A % ?? B %% prf1) %%
0f48fbb60a61 replaced ? by ??
haftmann
parents: 17018
diff changeset
   174
            (equal_elim_axm %> D %> B %% (symmetric_axm % ?? B % ?? D %% prf3) %%
12866
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
   175
              (equal_elim_axm %> C %> D %% prf2 %% prf4)))
11522
42fbb6abed5a Initial revision of tools for proof terms.
berghofe
parents:
diff changeset
   176
26424
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   177
      | rew' ((prf as PAxm ("Pure.combination", _, _) %
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 14981
diff changeset
   178
        SOME ((eq as Const ("==", T)) $ t) % _ % _ % _) %%
26424
a6cad32a27b0 eliminated theory ProtoPure;
wenzelm
parents: 23178
diff changeset
   179
          (PAxm ("Pure.reflexive", _, _) % _)) =
13257
1b7104a1c0bd Additional rule for rewriting on ==.
berghofe
parents: 13198
diff changeset
   180
        let val (U, V) = (case T of
1b7104a1c0bd Additional rule for rewriting on ==.
berghofe
parents: 13198
diff changeset
   181
          Type (_, [U, V]) => (U, V) | _ => (dummyT, dummyT))
36042
85efdadee8ae switched PThm/PAxm etc. to use canonical order of type variables (term variables unchanged)
krauss
parents: 33722
diff changeset
   182
        in SOME (prf %% (ax combination_axm [U, V] %> eq % ?? eq % ?? t % ?? t %%
17137
0f48fbb60a61 replaced ? by ??
haftmann
parents: 17018
diff changeset
   183
          (ax reflexive_axm [T] % ?? eq) %% (ax reflexive_axm [U] % ?? t)))
13257
1b7104a1c0bd Additional rule for rewriting on ==.
berghofe
parents: 13198
diff changeset
   184
        end
1b7104a1c0bd Additional rule for rewriting on ==.
berghofe
parents: 13198
diff changeset
   185
19309
8ea43e9ad83a avoid polymorphic equality;
wenzelm
parents: 19126
diff changeset
   186
      | rew' _ = NONE;
33722
e588744f14da generalized procs for rewrite_proof: allow skeleton;
wenzelm
parents: 29271
diff changeset
   187
  in rew' #> Option.map (rpair no_skel) end;
12866
c00df7765656 Rewrite procedure now works for both compact and full proof objects.
berghofe
parents: 12237
diff changeset
   188
28806
ba0ffe4cfc2b rewrite_proof: simplified simprocs (no name required);
wenzelm
parents: 26463
diff changeset
   189
fun rprocs b = [rew b];
26463
9283b4185fdf Context.>> : operate on Context.generic;
wenzelm
parents: 26435
diff changeset
   190
val _ = Context.>> (Context.map_theory (fold Proofterm.add_prf_rproc (rprocs false)));
11522
42fbb6abed5a Initial revision of tools for proof terms.
berghofe
parents:
diff changeset
   191
12906
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   192
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   193
(**** apply rewriting function to all terms in proof ****)
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   194
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   195
fun rewrite_terms r =
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   196
  let
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   197
    fun rew_term Ts t =
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   198
      let
29271
1d685baea08e moved old add_type_XXX, add_term_XXX etc. to structure OldTerm;
wenzelm
parents: 28806
diff changeset
   199
        val frees =
1d685baea08e moved old add_type_XXX, add_term_XXX etc. to structure OldTerm;
wenzelm
parents: 28806
diff changeset
   200
          map Free (Name.invent_list (OldTerm.add_term_names (t, [])) "xa" (length Ts) ~~ Ts);
12906
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   201
        val t' = r (subst_bounds (frees, t));
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   202
        fun strip [] t = t
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   203
          | strip (_ :: xs) (Abs (_, _, t)) = strip xs t;
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   204
      in
19473
wenzelm
parents: 19466
diff changeset
   205
        strip Ts (fold lambda frees t')
12906
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   206
      end;
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   207
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   208
    fun rew Ts (prf1 %% prf2) = rew Ts prf1 %% rew Ts prf2
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 14981
diff changeset
   209
      | rew Ts (prf % SOME t) = rew Ts prf % SOME (rew_term Ts t)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 14981
diff changeset
   210
      | rew Ts (Abst (s, SOME T, prf)) = Abst (s, SOME T, rew (T :: Ts) prf)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 14981
diff changeset
   211
      | rew Ts (AbsP (s, SOME t, prf)) = AbsP (s, SOME (rew_term Ts t), rew Ts prf)
12906
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   212
      | rew _ prf = prf
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   213
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   214
  in rew [] end;
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   215
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   216
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   217
(**** eliminate definitions in proof ****)
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   218
16861
7446b4be013b tuned fold on terms;
wenzelm
parents: 16787
diff changeset
   219
fun vars_of t = rev (fold_aterms (fn v as Var _ => insert (op =) v | _ => I) t []);
12906
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   220
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   221
fun insert_refl defs Ts (prf1 %% prf2) =
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   222
      insert_refl defs Ts prf1 %% insert_refl defs Ts prf2
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 14981
diff changeset
   223
  | insert_refl defs Ts (Abst (s, SOME T, prf)) =
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 14981
diff changeset
   224
      Abst (s, SOME T, insert_refl defs (T :: Ts) prf)
12906
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   225
  | insert_refl defs Ts (AbsP (s, t, prf)) =
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   226
      AbsP (s, t, insert_refl defs Ts prf)
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   227
  | insert_refl defs Ts prf = (case strip_combt prf of
28806
ba0ffe4cfc2b rewrite_proof: simplified simprocs (no name required);
wenzelm
parents: 26463
diff changeset
   228
        (PThm (_, ((s, prop, SOME Ts), _)), ts) =>
20664
ffbc5a57191a member (op =);
wenzelm
parents: 20076
diff changeset
   229
          if member (op =) defs s then
12906
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   230
            let
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   231
              val vs = vars_of prop;
36042
85efdadee8ae switched PThm/PAxm etc. to use canonical order of type variables (term variables unchanged)
krauss
parents: 33722
diff changeset
   232
              val tvars = Term.add_tvars prop [] |> rev;
12906
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   233
              val (_, rhs) = Logic.dest_equals prop;
18185
9d51fad6bb1f Term.betapplys;
wenzelm
parents: 18024
diff changeset
   234
              val rhs' = Term.betapplys (subst_TVars (map fst tvars ~~ Ts)
23178
07ba6b58b3d2 simplified/unified list fold;
wenzelm
parents: 22662
diff changeset
   235
                (fold_rev (fn x => fn b => Abs ("", dummyT, abstract_over (x, b))) vs rhs),
19466
wenzelm
parents: 19309
diff changeset
   236
                map the ts);
12906
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   237
            in
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 14981
diff changeset
   238
              change_type (SOME [fastype_of1 (Ts, rhs')]) reflexive_axm %> rhs'
12906
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   239
            end
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   240
          else prf
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   241
      | (_, []) => prf
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   242
      | (prf', ts) => proof_combt' (insert_refl defs Ts prf', ts));
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   243
17203
29b2563f5c11 refer to theory instead of low-level tsig;
wenzelm
parents: 17137
diff changeset
   244
fun elim_defs thy r defs prf =
12906
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   245
  let
13341
f15ed50d16cf - Moved abs_def to drule.ML
berghofe
parents: 13257
diff changeset
   246
    val defs' = map (Logic.dest_equals o prop_of o Drule.abs_def) defs
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20664
diff changeset
   247
    val defnames = map Thm.get_name defs;
13341
f15ed50d16cf - Moved abs_def to drule.ML
berghofe
parents: 13257
diff changeset
   248
    val f = if not r then I else
f15ed50d16cf - Moved abs_def to drule.ML
berghofe
parents: 13257
diff changeset
   249
      let
f15ed50d16cf - Moved abs_def to drule.ML
berghofe
parents: 13257
diff changeset
   250
        val cnames = map (fst o dest_Const o fst) defs';
28806
ba0ffe4cfc2b rewrite_proof: simplified simprocs (no name required);
wenzelm
parents: 26463
diff changeset
   251
        val thms = fold_proof_atoms true
ba0ffe4cfc2b rewrite_proof: simplified simprocs (no name required);
wenzelm
parents: 26463
diff changeset
   252
          (fn PThm (_, ((name, prop, _), _)) =>
29271
1d685baea08e moved old add_type_XXX, add_term_XXX etc. to structure OldTerm;
wenzelm
parents: 28806
diff changeset
   253
              if member (op =) defnames name orelse
1d685baea08e moved old add_type_XXX, add_term_XXX etc. to structure OldTerm;
wenzelm
parents: 28806
diff changeset
   254
                not (exists_Const (member (op =) cnames o #1) prop)
1d685baea08e moved old add_type_XXX, add_term_XXX etc. to structure OldTerm;
wenzelm
parents: 28806
diff changeset
   255
              then I
28806
ba0ffe4cfc2b rewrite_proof: simplified simprocs (no name required);
wenzelm
parents: 26463
diff changeset
   256
              else cons (name, SOME prop)
ba0ffe4cfc2b rewrite_proof: simplified simprocs (no name required);
wenzelm
parents: 26463
diff changeset
   257
            | _ => I) [prf] [];
ba0ffe4cfc2b rewrite_proof: simplified simprocs (no name required);
wenzelm
parents: 26463
diff changeset
   258
      in Reconstruct.expand_proof thy thms end;
12906
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   259
  in
17203
29b2563f5c11 refer to theory instead of low-level tsig;
wenzelm
parents: 17137
diff changeset
   260
    rewrite_terms (Pattern.rewrite_term thy defs' [])
13341
f15ed50d16cf - Moved abs_def to drule.ML
berghofe
parents: 13257
diff changeset
   261
      (insert_refl defnames [] (f prf))
12906
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   262
  end;
165f4e1937f4 New function for eliminating definitions in proof term.
berghofe
parents: 12866
diff changeset
   263
13608
9a6f43b8eae1 Added function elim_vars.
berghofe
parents: 13341
diff changeset
   264
9a6f43b8eae1 Added function elim_vars.
berghofe
parents: 13341
diff changeset
   265
(**** eliminate all variables that don't occur in the proposition ****)
9a6f43b8eae1 Added function elim_vars.
berghofe
parents: 13341
diff changeset
   266
9a6f43b8eae1 Added function elim_vars.
berghofe
parents: 13341
diff changeset
   267
fun elim_vars mk_default prf =
9a6f43b8eae1 Added function elim_vars.
berghofe
parents: 13341
diff changeset
   268
  let
9a6f43b8eae1 Added function elim_vars.
berghofe
parents: 13341
diff changeset
   269
    val prop = Reconstruct.prop_of prf;
19309
8ea43e9ad83a avoid polymorphic equality;
wenzelm
parents: 19126
diff changeset
   270
    val tv = Term.add_vars prop [];
8ea43e9ad83a avoid polymorphic equality;
wenzelm
parents: 19126
diff changeset
   271
    val tf = Term.add_frees prop [];
8ea43e9ad83a avoid polymorphic equality;
wenzelm
parents: 19126
diff changeset
   272
8ea43e9ad83a avoid polymorphic equality;
wenzelm
parents: 19126
diff changeset
   273
    fun hidden_variable (Var v) = not (member (op =) tv v)
8ea43e9ad83a avoid polymorphic equality;
wenzelm
parents: 19126
diff changeset
   274
      | hidden_variable (Free f) = not (member (op =) tf f)
8ea43e9ad83a avoid polymorphic equality;
wenzelm
parents: 19126
diff changeset
   275
      | hidden_variable _ = false;
13917
a67c9e6570ac elim_vars now handles both Vars and Frees.
berghofe
parents: 13646
diff changeset
   276
a67c9e6570ac elim_vars now handles both Vars and Frees.
berghofe
parents: 13646
diff changeset
   277
    fun mk_default' T = list_abs
a67c9e6570ac elim_vars now handles both Vars and Frees.
berghofe
parents: 13646
diff changeset
   278
      (apfst (map (pair "x")) (apsnd mk_default (strip_type T)));
a67c9e6570ac elim_vars now handles both Vars and Frees.
berghofe
parents: 13646
diff changeset
   279
a67c9e6570ac elim_vars now handles both Vars and Frees.
berghofe
parents: 13646
diff changeset
   280
    fun elim_varst (t $ u) = elim_varst t $ elim_varst u
a67c9e6570ac elim_vars now handles both Vars and Frees.
berghofe
parents: 13646
diff changeset
   281
      | elim_varst (Abs (s, T, t)) = Abs (s, T, elim_varst t)
19309
8ea43e9ad83a avoid polymorphic equality;
wenzelm
parents: 19126
diff changeset
   282
      | elim_varst (t as Free (x, T)) = if member (op =) tf (x, T) then t else mk_default' T
8ea43e9ad83a avoid polymorphic equality;
wenzelm
parents: 19126
diff changeset
   283
      | elim_varst (t as Var (xi, T)) = if member (op =) tv (xi, T) then t else mk_default' T
8ea43e9ad83a avoid polymorphic equality;
wenzelm
parents: 19126
diff changeset
   284
      | elim_varst t = t;
13608
9a6f43b8eae1 Added function elim_vars.
berghofe
parents: 13341
diff changeset
   285
  in
19309
8ea43e9ad83a avoid polymorphic equality;
wenzelm
parents: 19126
diff changeset
   286
    map_proof_terms (fn t =>
8ea43e9ad83a avoid polymorphic equality;
wenzelm
parents: 19126
diff changeset
   287
      if Term.exists_subterm hidden_variable t then Envir.beta_norm (elim_varst t) else t) I prf
13608
9a6f43b8eae1 Added function elim_vars.
berghofe
parents: 13341
diff changeset
   288
  end;
9a6f43b8eae1 Added function elim_vars.
berghofe
parents: 13341
diff changeset
   289
22280
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   290
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   291
(**** convert between hhf and non-hhf form ****)
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   292
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   293
fun hhf_proof P Q prf =
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   294
  let
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   295
    val params = Logic.strip_params Q;
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   296
    val Hs = Logic.strip_assums_hyp P;
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   297
    val Hs' = Logic.strip_assums_hyp Q;
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   298
    val k = length Hs;
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   299
    val l = length params;
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   300
    fun mk_prf i j Hs Hs' (Const ("all", _) $ Abs (_, _, P)) prf =
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   301
          mk_prf i (j - 1) Hs Hs' P (prf %> Bound j)
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   302
      | mk_prf i j (H :: Hs) (H' :: Hs') (Const ("==>", _) $ _ $ P) prf =
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   303
          mk_prf (i - 1) j Hs Hs' P (prf %% un_hhf_proof H' H (PBound i))
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   304
      | mk_prf _ _ _ _ _ prf = prf
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   305
  in
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   306
    prf |> Proofterm.incr_pboundvars k l |> mk_prf (k - 1) (l - 1) Hs Hs' P |>
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   307
    fold_rev (fn P => fn prf => AbsP ("H", SOME P, prf)) Hs' |>
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   308
    fold_rev (fn (s, T) => fn prf => Abst (s, SOME T, prf)) params
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   309
  end
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   310
and un_hhf_proof P Q prf =
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   311
  let
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   312
    val params = Logic.strip_params Q;
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   313
    val Hs = Logic.strip_assums_hyp P;
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   314
    val Hs' = Logic.strip_assums_hyp Q;
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   315
    val k = length Hs;
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   316
    val l = length params;
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   317
    fun mk_prf (Const ("all", _) $ Abs (s, T, P)) prf =
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   318
          Abst (s, SOME T, mk_prf P prf)
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   319
      | mk_prf (Const ("==>", _) $ P $ Q) prf =
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   320
          AbsP ("H", SOME P, mk_prf Q prf)
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   321
      | mk_prf _ prf = prf
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   322
  in
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   323
    prf |> Proofterm.incr_pboundvars k l |>
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   324
    fold (fn i => fn prf => prf %> Bound i) (l - 1 downto 0) |>
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   325
    fold (fn ((H, H'), i) => fn prf => prf %% hhf_proof H' H (PBound i))
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   326
      (Hs ~~ Hs' ~~ (k - 1 downto 0)) |>
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   327
    mk_prf Q
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   328
  end;
a20a203c8f41 Added functions hhf_proof and un_hhf_proof.
berghofe
parents: 21646
diff changeset
   329
11522
42fbb6abed5a Initial revision of tools for proof terms.
berghofe
parents:
diff changeset
   330
end;