src/Pure/zterm.ML
author wenzelm
Fri, 08 Dec 2023 14:27:42 +0100
changeset 79200 f6bbe80f5f41
parent 79163 9ddcaca41ed2
child 79201 5d27271701a2
permissions -rw-r--r--
more operations;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/zterm.ML
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
     3
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
     4
Tight representation of types / terms / proof terms, notably for proof recording.
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
     5
*)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
     6
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
     7
(*** global ***)
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
     8
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
     9
(* types and terms *)
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    10
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    11
datatype ztyp =
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    12
    ZTVar of indexname * sort      (*free: index ~1*)
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    13
  | ZFun of ztyp * ztyp
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    14
  | ZProp
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    15
  | ZItself of ztyp
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    16
  | ZType0 of string               (*type constant*)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    17
  | ZType1 of string * ztyp        (*type constructor: 1 argument*)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    18
  | ZType of string * ztyp list    (*type constructor: >= 2 arguments*)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    19
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    20
datatype zterm =
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    21
    ZVar of indexname * ztyp       (*free: index ~1*)
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    22
  | ZBound of int
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    23
  | ZConst0 of string              (*monomorphic constant*)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    24
  | ZConst1 of string * ztyp       (*polymorphic constant: 1 type argument*)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    25
  | ZConst of string * ztyp list   (*polymorphic constant: >= 2 type arguments*)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    26
  | ZAbs of string * ztyp * zterm
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    27
  | ZApp of zterm * zterm
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    28
  | ZClass of ztyp * class         (*OFCLASS proposition*)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    29
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
    30
structure ZTerm =
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    31
struct
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    32
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    33
(* fold *)
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    34
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    35
fun fold_tvars f (ZTVar v) = f v
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    36
  | fold_tvars f (ZFun (T, U)) = fold_tvars f T #> fold_tvars f U
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    37
  | fold_tvars f (ZItself T) = fold_tvars f T
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    38
  | fold_tvars f (ZType1 (_, T)) = fold_tvars f T
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    39
  | fold_tvars f (ZType (_, Ts)) = fold (fold_tvars f) Ts
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    40
  | fold_tvars _ _ = I;
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    41
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    42
fun fold_aterms f (ZApp (t, u)) = fold_aterms f t #> fold_aterms f u
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    43
  | fold_aterms f (ZAbs (_, _, t)) = fold_aterms f t
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    44
  | fold_aterms f a = f a;
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    45
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    46
fun fold_types f (ZVar (_, T)) = f T
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    47
  | fold_types f (ZConst1 (_, T)) = f T
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    48
  | fold_types f (ZConst (_, As)) = fold f As
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    49
  | fold_types f (ZAbs (_, T, b)) = f T #> fold_types f b
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    50
  | fold_types f (ZApp (t, u)) = fold_types f t #> fold_types f u
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    51
  | fold_types f (ZClass (T, _)) = f T
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    52
  | fold_types _ _ = I;
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    53
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    54
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
    55
(* ordering *)
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    56
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    57
local
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    58
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    59
fun cons_nr (ZTVar _) = 0
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    60
  | cons_nr (ZFun _) = 1
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    61
  | cons_nr ZProp = 2
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    62
  | cons_nr (ZItself _) = 3
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    63
  | cons_nr (ZType0 _) = 4
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    64
  | cons_nr (ZType1 _) = 5
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    65
  | cons_nr (ZType _) = 6;
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    66
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    67
val fast_indexname_ord = Term_Ord.fast_indexname_ord;
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    68
val sort_ord = Term_Ord.sort_ord;
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    69
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    70
in
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    71
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    72
fun ztyp_ord TU =
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    73
  if pointer_eq TU then EQUAL
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    74
  else
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    75
    (case TU of
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    76
      (ZTVar (a, A), ZTVar (b, B)) =>
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    77
        (case fast_indexname_ord (a, b) of EQUAL => sort_ord (A, B) | ord => ord)
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    78
    | (ZFun (T, T'), ZFun (U, U')) =>
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    79
        (case ztyp_ord (T, U) of EQUAL => ztyp_ord (T', U') | ord => ord)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    80
    | (ZProp, ZProp) => EQUAL
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    81
    | (ZItself T, ZItself U) => ztyp_ord (T, U)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    82
    | (ZType0 a, ZType0 b) => fast_string_ord (a, b)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    83
    | (ZType1 (a, T), ZType1 (b, U)) =>
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    84
        (case fast_string_ord (a, b) of EQUAL => ztyp_ord (T, U) | ord => ord)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    85
    | (ZType (a, Ts), ZType (b, Us)) =>
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    86
        (case fast_string_ord (a, b) of EQUAL => dict_ord ztyp_ord (Ts, Us) | ord => ord)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    87
    | (T, U) => int_ord (cons_nr T, cons_nr U));
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    88
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    89
end;
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    90
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
    91
end;
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    92
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
    93
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
    94
(* term items *)
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
    95
79163
9ddcaca41ed2 more operations;
wenzelm
parents: 79161
diff changeset
    96
structure ZTypes = Table(type key = ztyp val ord = ZTerm.ztyp_ord);
9ddcaca41ed2 more operations;
wenzelm
parents: 79161
diff changeset
    97
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
    98
structure ZTVars:
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
    99
sig
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   100
  include TERM_ITEMS
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   101
  val add_tvarsT: ztyp -> set -> set
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   102
  val add_tvars: zterm -> set -> set
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   103
end =
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   104
struct
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   105
  open TVars;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   106
  val add_tvarsT = ZTerm.fold_tvars add_set;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   107
  val add_tvars = ZTerm.fold_types add_tvarsT;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   108
end;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   109
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   110
structure ZVars:
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   111
sig
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   112
  include TERM_ITEMS
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   113
  val add_vars: zterm -> set -> set
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   114
end =
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   115
struct
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   116
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   117
structure Term_Items = Term_Items
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   118
(
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   119
  type key = indexname * ztyp;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   120
  val ord = pointer_eq_ord (prod_ord Term_Ord.fast_indexname_ord ZTerm.ztyp_ord);
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   121
);
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   122
open Term_Items;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   123
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   124
val add_vars = ZTerm.fold_aterms (fn ZVar v => add_set v | _ => I);
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   125
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   126
end;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   127
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   128
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   129
(* proofs *)
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   130
79126
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   131
datatype zproof_name =
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   132
    ZAxiom of string
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   133
  | ZOracle of string
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   134
  | ZBox of serial;
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   135
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   136
datatype zproof =
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   137
    ZDummy                         (*dummy proof*)
79126
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   138
  | ZConstP of zproof_name * zterm * ztyp ZTVars.table * zterm ZVars.table
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   139
  | ZBoundP of int
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   140
  | ZHyp of zterm
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   141
  | ZAbst of string * ztyp * zproof
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   142
  | ZAbsP of string * zterm * zproof
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   143
  | ZAppt of zproof * zterm
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   144
  | ZAppP of zproof * zproof
79126
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   145
  | ZClassP of ztyp * class;       (*OFCLASS proof from sorts algebra*)
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   146
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   147
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   148
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   149
(*** local ***)
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   150
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   151
signature ZTERM =
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   152
sig
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   153
  datatype ztyp = datatype ztyp
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   154
  datatype zterm = datatype zterm
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   155
  datatype zproof = datatype zproof
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   156
  val fold_tvars: (indexname * sort -> 'a -> 'a) -> ztyp -> 'a -> 'a
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   157
  val fold_aterms: (zterm -> 'a -> 'a) -> zterm -> 'a -> 'a
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   158
  val fold_types: (ztyp -> 'a -> 'a) -> zterm -> 'a -> 'a
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   159
  val ztyp_ord: ztyp * ztyp -> order
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   160
  val aconv_zterm: zterm * zterm -> bool
79200
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   161
  val incr_bv_same: int -> int -> zterm Same.operation
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   162
  val incr_bv: int -> int -> zterm -> zterm
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   163
  val incr_boundvars: int -> zterm -> zterm
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   164
  val ztyp_of: typ -> ztyp
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   165
  val zterm_cache_consts: Consts.T -> {zterm: term -> zterm, ztyp: typ -> ztyp}
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   166
  val zterm_cache: theory -> {zterm: term -> zterm, ztyp: typ -> ztyp}
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   167
  val zterm_of: theory -> term -> zterm
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   168
  val typ_of: ztyp -> typ
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   169
  val term_of_consts: Consts.T -> zterm -> term
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   170
  val term_of: theory -> zterm -> term
79200
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   171
  val norm_type: Type.tyenv -> ztyp -> ztyp
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   172
  val norm_term_consts: Consts.T -> Envir.env -> zterm -> zterm
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   173
  val norm_term: theory -> Envir.env -> zterm -> zterm
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   174
  val dummy_proof: 'a -> zproof
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   175
  val todo_proof: 'a -> zproof
79126
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   176
  val axiom_proof:  theory -> string -> term -> zproof
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   177
  val oracle_proof:  theory -> string -> term -> zproof
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   178
  val assume_proof: theory -> term -> zproof
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   179
  val trivial_proof: theory -> term -> zproof
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   180
  val implies_intr_proof: theory -> term -> zproof -> zproof
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   181
  val forall_intr_proof: theory -> typ -> string * term -> zproof -> zproof
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   182
  val forall_elim_proof: theory -> term -> zproof -> zproof
79128
b6f5d4392388 more zproofs;
wenzelm
parents: 79126
diff changeset
   183
  val of_class_proof: typ * class -> zproof
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   184
  val reflexive_proof: theory -> typ -> term -> zproof
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   185
  val symmetric_proof: theory -> typ -> term -> term -> zproof -> zproof
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   186
  val transitive_proof: theory -> typ -> term -> term -> term -> zproof -> zproof -> zproof
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   187
  val equal_intr_proof: theory -> term -> term -> zproof -> zproof -> zproof
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   188
  val equal_elim_proof: theory -> term -> term -> zproof -> zproof -> zproof
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   189
  val abstract_rule_proof: theory -> typ -> typ -> string * term -> term -> term -> zproof -> zproof
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   190
  val combination_proof: theory -> typ -> typ -> term -> term -> term -> term ->
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   191
    zproof -> zproof -> zproof
79133
cfe995369655 more zproofs;
wenzelm
parents: 79132
diff changeset
   192
  val generalize_proof: Names.set * Names.set -> int -> zproof -> zproof
79149
810679c5ed3c more zproofs;
wenzelm
parents: 79148
diff changeset
   193
  val instantiate_proof: theory ->
810679c5ed3c more zproofs;
wenzelm
parents: 79148
diff changeset
   194
    ((indexname * sort) * typ) list * ((indexname * typ) * term) list -> zproof -> zproof
79135
db2dc7634d62 more zproofs;
wenzelm
parents: 79133
diff changeset
   195
  val varifyT_proof: ((string * sort) * (indexname * sort)) list -> zproof -> zproof
79152
4189e10f1524 more zproofs;
wenzelm
parents: 79150
diff changeset
   196
  val legacy_freezeT_proof: term -> zproof -> zproof
79150
1cdc685fe852 more zproofs;
wenzelm
parents: 79149
diff changeset
   197
  val incr_indexes_proof: int -> zproof -> zproof
79155
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   198
  val rotate_proof: theory -> term list -> term -> (string * typ) list ->
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   199
    term list -> int -> zproof -> zproof
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   200
  val permute_prems_proof: theory -> term list -> int -> int -> zproof -> zproof
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   201
end;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   202
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   203
structure ZTerm: ZTERM =
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   204
struct
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   205
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   206
datatype ztyp = datatype ztyp;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   207
datatype zterm = datatype zterm;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   208
datatype zproof = datatype zproof;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   209
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   210
open ZTerm;
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   211
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   212
fun aconv_zterm (tm1, tm2) =
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   213
  pointer_eq (tm1, tm2) orelse
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   214
    (case (tm1, tm2) of
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   215
      (ZApp (t1, u1), ZApp (t2, u2)) => aconv_zterm (t1, t2) andalso aconv_zterm (u1, u2)
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   216
    | (ZAbs (_, T1, t1), ZAbs (_, T2, t2)) => aconv_zterm (t1, t2) andalso T1 = T2
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   217
    | (a1, a2) => a1 = a2);
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   218
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   219
79155
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   220
(* derived operations *)
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   221
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   222
val mk_ZAbst = fold_rev (fn (x, T) => fn prf => ZAbst (x, T, prf));
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   223
val mk_ZAbsP = fold_rev (fn t => fn prf => ZAbsP ("H", t, prf));
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   224
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   225
val mk_ZAppt = Library.foldl ZAppt;
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   226
val mk_ZAppP = Library.foldl ZAppP;
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   227
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   228
79200
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   229
(* substitution of bound variables *)
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   230
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   231
fun incr_bv_same inc =
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   232
  if inc = 0 then fn _ => Same.same
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   233
  else
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   234
    let
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   235
      fun term lev (ZBound i) = if i >= lev then ZBound (i + inc) else raise Same.SAME
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   236
        | term lev (ZAbs (a, T, t)) = ZAbs (a, T, term (lev + 1) t)
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   237
        | term lev (ZApp (t, u)) =
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   238
            (ZApp (term lev t, Same.commit (term lev) u) handle Same.SAME =>
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   239
              ZApp (t, term lev u))
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   240
        | term _ _ = raise Same.SAME;
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   241
    in term end;
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   242
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   243
fun incr_bv inc lev = Same.commit (incr_bv_same inc lev);
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   244
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   245
fun incr_boundvars inc = incr_bv inc 0;
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   246
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   247
fun subst_bound arg body =
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   248
  let
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   249
    fun term lev (ZBound i) =
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   250
          if i < lev then raise Same.SAME   (*var is locally bound*)
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   251
          else if i = lev then incr_boundvars lev arg
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   252
          else ZBound (i - 1)   (*loose: change it*)
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   253
      | term lev (ZAbs (a, T, t)) = ZAbs (a, T, term (lev + 1) t)
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   254
      | term lev (ZApp (t, u)) =
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   255
          (ZApp (term lev t, Same.commit (term lev) u)
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   256
            handle Same.SAME => ZApp (t, term lev u))
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   257
      | term _ _ = raise Same.SAME;
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   258
  in Same.commit (term 0) body end;
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   259
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   260
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   261
(* direct substitution *)
79132
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   262
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   263
fun subst_type_same tvar =
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   264
  let
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   265
    fun typ (ZTVar x) = tvar x
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   266
      | typ (ZFun (T, U)) = (ZFun (typ T, Same.commit typ U) handle Same.SAME => ZFun (T, typ U))
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   267
      | typ ZProp = raise Same.SAME
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   268
      | typ (ZItself T) = ZItself (typ T)
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   269
      | typ (ZType0 _) = raise Same.SAME
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   270
      | typ (ZType1 (a, T)) = ZType1 (a, typ T)
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   271
      | typ (ZType (a, Ts)) = ZType (a, Same.map typ Ts);
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   272
  in typ end;
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   273
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   274
fun subst_term_same typ var =
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   275
  let
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   276
    fun term (ZVar (x, T)) =
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   277
          let val (T', same) = Same.commit_id typ T in
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   278
            (case Same.catch var (x, T') of
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   279
              NONE => if same then raise Same.SAME else ZVar (x, T')
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   280
            | SOME t' => t')
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   281
          end
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   282
      | term (ZBound _) = raise Same.SAME
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   283
      | term (ZConst0 _) = raise Same.SAME
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   284
      | term (ZConst1 (a, T)) = ZConst1 (a, typ T)
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   285
      | term (ZConst (a, Ts)) = ZConst (a, Same.map typ Ts)
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   286
      | term (ZAbs (a, T, t)) =
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   287
          (ZAbs (a, typ T, Same.commit term t) handle Same.SAME => ZAbs (a, T, term t))
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   288
      | term (ZApp (t, u)) =
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   289
          (ZApp (term t, Same.commit term u) handle Same.SAME => ZApp (t, term u))
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   290
      | term (ZClass (T, c)) = ZClass (typ T, c);
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   291
  in term end;
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   292
79145
a9c55fef42b0 tuned signature;
wenzelm
parents: 79144
diff changeset
   293
fun map_insts_same typ term (instT, inst) =
a9c55fef42b0 tuned signature;
wenzelm
parents: 79144
diff changeset
   294
  let
a9c55fef42b0 tuned signature;
wenzelm
parents: 79144
diff changeset
   295
    val changed = Unsynchronized.ref false;
79146
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   296
    fun apply f x =
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   297
      (case Same.catch f x of
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   298
        NONE => NONE
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   299
      | some => (changed := true; some));
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   300
79145
a9c55fef42b0 tuned signature;
wenzelm
parents: 79144
diff changeset
   301
    val instT' =
a9c55fef42b0 tuned signature;
wenzelm
parents: 79144
diff changeset
   302
      (instT, instT) |-> ZTVars.fold (fn (v, T) =>
79146
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   303
        (case apply typ T of
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   304
          NONE => I
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   305
        | SOME T' => ZTVars.update (v, T')));
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   306
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   307
    val vars' =
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   308
      (inst, ZVars.empty) |-> ZVars.fold (fn ((v, T), _) =>
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   309
        (case apply typ T of
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   310
          NONE => I
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   311
        | SOME T' => ZVars.add ((v, T), (v, T'))));
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   312
79145
a9c55fef42b0 tuned signature;
wenzelm
parents: 79144
diff changeset
   313
    val inst' =
79146
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   314
      if ZVars.is_empty vars' then
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   315
        (inst, inst) |-> ZVars.fold (fn (v, t) =>
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   316
          (case apply term t of
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   317
            NONE => I
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   318
          | SOME t' => ZVars.update (v, t')))
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   319
      else
79145
a9c55fef42b0 tuned signature;
wenzelm
parents: 79144
diff changeset
   320
        ZVars.dest inst
79146
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   321
        |> map (fn (v, t) => (the_default v (ZVars.lookup vars' v), the_default t (apply term t)))
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   322
        |> ZVars.make_strict;
79145
a9c55fef42b0 tuned signature;
wenzelm
parents: 79144
diff changeset
   323
  in if ! changed then (instT', inst') else raise Same.SAME end;
a9c55fef42b0 tuned signature;
wenzelm
parents: 79144
diff changeset
   324
79132
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   325
fun map_proof_same typ term =
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   326
  let
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   327
    fun proof ZDummy = raise Same.SAME
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   328
      | proof (ZConstP (a, A, instT, inst)) =
79148
99201e7b1d94 proper treatment of ZConstP: term represents body of closure;
wenzelm
parents: 79147
diff changeset
   329
          let val (instT', inst') = map_insts_same typ term (instT, inst)
99201e7b1d94 proper treatment of ZConstP: term represents body of closure;
wenzelm
parents: 79147
diff changeset
   330
          in ZConstP (a, A, instT', inst') end
79132
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   331
      | proof (ZBoundP _) = raise Same.SAME
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   332
      | proof (ZHyp h) = ZHyp (term h)
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   333
      | proof (ZAbst (a, T, p)) =
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   334
          (ZAbst (a, typ T, Same.commit proof p) handle Same.SAME => ZAbst (a, T, proof p))
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   335
      | proof (ZAbsP (a, t, p)) =
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   336
          (ZAbsP (a, term t, Same.commit proof p) handle Same.SAME => ZAbsP (a, t, proof p))
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   337
      | proof (ZAppt (p, t)) =
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   338
          (ZAppt (proof p, Same.commit term t) handle Same.SAME => ZAppt (p, term t))
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   339
      | proof (ZAppP (p, q)) =
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   340
          (ZAppP (proof p, Same.commit proof q) handle Same.SAME => ZAppP (p, proof q))
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   341
      | proof (ZClassP (T, c)) = ZClassP (typ T, c);
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   342
  in proof end;
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   343
79144
wenzelm
parents: 79136
diff changeset
   344
fun map_proof_types_same typ =
wenzelm
parents: 79136
diff changeset
   345
  map_proof_same typ (subst_term_same typ Same.same);
wenzelm
parents: 79136
diff changeset
   346
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   347
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   348
(* convert ztyp / zterm vs. regular typ / term *)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   349
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   350
fun ztyp_of (TFree (a, S)) = ZTVar ((a, ~1), S)
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   351
  | ztyp_of (TVar v) = ZTVar v
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   352
  | ztyp_of (Type ("fun", [T, U])) = ZFun (ztyp_of T, ztyp_of U)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   353
  | ztyp_of (Type (c, [])) = if c = "prop" then ZProp else ZType0 c
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   354
  | ztyp_of (Type (c, [T])) = if c = "itself" then ZItself (ztyp_of T) else ZType1 (c, ztyp_of T)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   355
  | ztyp_of (Type (c, ts)) = ZType (c, map ztyp_of ts);
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   356
79163
9ddcaca41ed2 more operations;
wenzelm
parents: 79161
diff changeset
   357
fun ztyp_cache () = Typtab.unsynchronized_cache ztyp_of;
9ddcaca41ed2 more operations;
wenzelm
parents: 79161
diff changeset
   358
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   359
fun zterm_cache_consts consts =
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   360
  let
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   361
    val typargs = Consts.typargs consts;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   362
79163
9ddcaca41ed2 more operations;
wenzelm
parents: 79161
diff changeset
   363
    val ztyp = ztyp_cache ();
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   364
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   365
    fun zterm (Free (x, T)) = ZVar ((x, ~1), ztyp T)
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   366
      | zterm (Var (xi, T)) = ZVar (xi, ztyp T)
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   367
      | zterm (Bound i) = ZBound i
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   368
      | zterm (Const (c, T)) =
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   369
          (case typargs (c, T) of
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   370
            [] => ZConst0 c
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   371
          | [T] => ZConst1 (c, ztyp T)
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   372
          | Ts => ZConst (c, map ztyp Ts))
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   373
      | zterm (Abs (a, T, b)) = ZAbs (a, ztyp T, zterm b)
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   374
      | zterm ((t as Const (c, _)) $ (u as Const ("Pure.type", _))) =
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   375
          if String.isSuffix Logic.class_suffix c then
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   376
            ZClass (ztyp (Logic.dest_type u), Logic.class_of_const c)
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   377
          else ZApp (zterm t, zterm u)
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   378
      | zterm (t $ u) = ZApp (zterm t, zterm u);
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   379
  in {ztyp = ztyp, zterm = zterm} end;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   380
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   381
val zterm_cache = zterm_cache_consts o Sign.consts_of;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   382
val zterm_of = #zterm o zterm_cache;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   383
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   384
fun typ_of (ZTVar ((a, ~1), S)) = TFree (a, S)
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   385
  | typ_of (ZTVar v) = TVar v
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   386
  | typ_of (ZFun (T, U)) = typ_of T --> typ_of U
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   387
  | typ_of ZProp = propT
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   388
  | typ_of (ZItself T) = Term.itselfT (typ_of T)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   389
  | typ_of (ZType0 c) = Type (c, [])
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   390
  | typ_of (ZType1 (c, T)) = Type (c, [typ_of T])
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   391
  | typ_of (ZType (c, Ts)) = Type (c, map typ_of Ts);
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   392
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   393
fun term_of_consts consts =
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   394
  let
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   395
    val instance = Consts.instance consts;
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   396
    fun const (c, Ts) = Const (c, instance (c, Ts));
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   397
    fun term (ZVar ((x, ~1), T)) = Free (x, typ_of T)
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   398
      | term (ZVar (xi, T)) = Var (xi, typ_of T)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   399
      | term (ZBound i) = Bound i
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   400
      | term (ZConst0 c) = const (c, [])
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   401
      | term (ZConst1 (c, T)) = const (c, [typ_of T])
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   402
      | term (ZConst (c, Ts)) = const (c, map typ_of Ts)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   403
      | term (ZAbs (a, T, b)) = Abs (a, typ_of T, term b)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   404
      | term (ZApp (t, u)) = term t $ term u
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   405
      | term (ZClass (T, c)) = Logic.mk_of_class (typ_of T, c);
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   406
  in term end;
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   407
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   408
val term_of = term_of_consts o Sign.consts_of;
79113
5109e4b2a292 pro-forma support for optional zproof: no proper content yet;
wenzelm
parents: 79098
diff changeset
   409
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   410
79200
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   411
(* beta normalization wrt. environment *)
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   412
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   413
local
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   414
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   415
fun norm_type_same ztyp tyenv =
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   416
  if Vartab.is_empty tyenv then Same.same
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   417
  else
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   418
    let
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   419
      fun norm (ZTVar v) =
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   420
            (case Type.lookup tyenv v of
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   421
              SOME U => Same.commit norm (ztyp U)
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   422
            | NONE => raise Same.SAME)
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   423
        | norm (ZFun (T, U)) =
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   424
            (ZFun (norm T, Same.commit norm U)
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   425
              handle Same.SAME => ZFun (T, norm U))
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   426
        | norm ZProp = raise Same.SAME
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   427
        | norm (ZItself T) = ZItself (norm T)
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   428
        | norm (ZType0 _) = raise Same.SAME
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   429
        | norm (ZType1 (a, T)) = ZType1 (a, norm T)
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   430
        | norm (ZType (a, Ts)) = ZType (a, Same.map norm Ts);
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   431
    in norm end;
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   432
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   433
fun norm_term_same consts (envir as Envir.Envir {tyenv, tenv, ...}) =
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   434
  if Envir.is_empty envir then Same.same
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   435
  else
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   436
    let
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   437
      val {ztyp, zterm} = zterm_cache_consts consts;
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   438
      val typ = ZTypes.unsynchronized_cache typ_of;
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   439
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   440
      val lookup =
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   441
        if Vartab.is_empty tenv then K NONE
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   442
        else ZVars.unsynchronized_cache (apsnd typ #> Envir.lookup envir #> Option.map zterm);
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   443
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   444
      val normT = norm_type_same ztyp tyenv;
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   445
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   446
      fun norm (ZVar (xi, T)) =
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   447
            (case lookup (xi, T) of
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   448
              SOME u => Same.commit norm u
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   449
            | NONE => ZVar (xi, normT T))
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   450
        | norm (ZBound _) = raise Same.SAME
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   451
        | norm (ZConst0 _) = raise Same.SAME
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   452
        | norm (ZConst1 (a, T)) = ZConst1 (a, normT T)
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   453
        | norm (ZConst (a, Ts)) = ZConst (a, Same.map normT Ts)
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   454
        | norm (ZAbs (a, T, t)) =
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   455
            (ZAbs (a, normT T, Same.commit norm t)
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   456
              handle Same.SAME => ZAbs (a, T, norm t))
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   457
        | norm (ZApp (ZAbs (_, _, body), t)) = Same.commit norm (subst_bound t body)
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   458
        | norm (ZApp (f, t)) =
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   459
            ((case norm f of
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   460
               ZAbs (_, _, body) => Same.commit norm (subst_bound t body)
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   461
             | nf => ZApp (nf, Same.commit norm t))
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   462
            handle Same.SAME => ZApp (f, norm t))
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   463
        | norm _ = raise Same.SAME;
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   464
    in norm end;
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   465
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   466
in
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   467
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   468
fun norm_type tyenv =
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   469
  Same.commit (norm_type_same (Typtab.unsynchronized_cache ztyp_of) tyenv);
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   470
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   471
fun norm_term_consts consts envir =
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   472
  Same.commit (norm_term_same consts envir);
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   473
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   474
val norm_term = norm_term_consts o Sign.consts_of;
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   475
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   476
end;
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   477
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   478
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   479
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   480
(** proof construction **)
79113
5109e4b2a292 pro-forma support for optional zproof: no proper content yet;
wenzelm
parents: 79098
diff changeset
   481
5109e4b2a292 pro-forma support for optional zproof: no proper content yet;
wenzelm
parents: 79098
diff changeset
   482
fun dummy_proof _ = ZDummy;
5109e4b2a292 pro-forma support for optional zproof: no proper content yet;
wenzelm
parents: 79098
diff changeset
   483
val todo_proof = dummy_proof;
5109e4b2a292 pro-forma support for optional zproof: no proper content yet;
wenzelm
parents: 79098
diff changeset
   484
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   485
79161
3f532c76d0ad tuned structure;
wenzelm
parents: 79160
diff changeset
   486
(* constants *)
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   487
79126
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   488
fun const_proof thy a A =
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   489
  let
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   490
    val t = zterm_of thy A;
79154
e47db1e15a22 minor performance tuning;
wenzelm
parents: 79153
diff changeset
   491
    val instT =
e47db1e15a22 minor performance tuning;
wenzelm
parents: 79153
diff changeset
   492
      ZTVars.build (t |> (fold_types o fold_tvars) (fn v => fn tab =>
e47db1e15a22 minor performance tuning;
wenzelm
parents: 79153
diff changeset
   493
        if ZTVars.defined tab v then tab else ZTVars.update (v, ZTVar v) tab));
e47db1e15a22 minor performance tuning;
wenzelm
parents: 79153
diff changeset
   494
    val inst =
e47db1e15a22 minor performance tuning;
wenzelm
parents: 79153
diff changeset
   495
      ZVars.build (t |> fold_aterms (fn a => fn tab =>
e47db1e15a22 minor performance tuning;
wenzelm
parents: 79153
diff changeset
   496
        (case a of
e47db1e15a22 minor performance tuning;
wenzelm
parents: 79153
diff changeset
   497
          ZVar v => if ZVars.defined tab v then tab else ZVars.update (v, a) tab
e47db1e15a22 minor performance tuning;
wenzelm
parents: 79153
diff changeset
   498
        | _ => tab)));
79126
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   499
  in ZConstP (a, t, instT, inst) end;
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   500
79161
3f532c76d0ad tuned structure;
wenzelm
parents: 79160
diff changeset
   501
fun map_const_proof (f, g) prf =
3f532c76d0ad tuned structure;
wenzelm
parents: 79160
diff changeset
   502
  (case prf of
3f532c76d0ad tuned structure;
wenzelm
parents: 79160
diff changeset
   503
    ZConstP (a, A, instT, inst) =>
3f532c76d0ad tuned structure;
wenzelm
parents: 79160
diff changeset
   504
      let
3f532c76d0ad tuned structure;
wenzelm
parents: 79160
diff changeset
   505
        val instT' = ZTVars.map (fn ((x, _), _) => fn y => the_default y (try f x)) instT;
3f532c76d0ad tuned structure;
wenzelm
parents: 79160
diff changeset
   506
        val inst' = ZVars.map (fn ((x, _), _) => fn y => the_default y (try g x)) inst;
3f532c76d0ad tuned structure;
wenzelm
parents: 79160
diff changeset
   507
      in ZConstP (a, A, instT', inst') end
3f532c76d0ad tuned structure;
wenzelm
parents: 79160
diff changeset
   508
  | _ => prf);
3f532c76d0ad tuned structure;
wenzelm
parents: 79160
diff changeset
   509
3f532c76d0ad tuned structure;
wenzelm
parents: 79160
diff changeset
   510
3f532c76d0ad tuned structure;
wenzelm
parents: 79160
diff changeset
   511
(* basic logic *)
3f532c76d0ad tuned structure;
wenzelm
parents: 79160
diff changeset
   512
3f532c76d0ad tuned structure;
wenzelm
parents: 79160
diff changeset
   513
fun axiom_proof thy name =
3f532c76d0ad tuned structure;
wenzelm
parents: 79160
diff changeset
   514
  const_proof thy (ZAxiom name);
3f532c76d0ad tuned structure;
wenzelm
parents: 79160
diff changeset
   515
3f532c76d0ad tuned structure;
wenzelm
parents: 79160
diff changeset
   516
fun oracle_proof thy name =
3f532c76d0ad tuned structure;
wenzelm
parents: 79160
diff changeset
   517
  const_proof thy (ZOracle name);
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   518
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   519
fun assume_proof thy A =
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   520
  ZHyp (zterm_of thy A);
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   521
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   522
fun trivial_proof thy A =
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   523
  ZAbsP ("H", zterm_of thy A, ZBoundP 0);
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   524
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   525
fun implies_intr_proof thy A prf =
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   526
  let
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   527
    val h = zterm_of thy A;
79157
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   528
    fun proof i (ZHyp t) = if aconv_zterm (h, t) then ZBoundP i else raise Same.SAME
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   529
      | proof i (ZAbst (x, T, p)) = ZAbst (x, T, proof i p)
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   530
      | proof i (ZAbsP (x, t, p)) = ZAbsP (x, t, proof (i + 1) p)
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   531
      | proof i (ZAppt (p, t)) = ZAppt (proof i p, t)
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   532
      | proof i (ZAppP (p, q)) =
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   533
          (ZAppP (proof i p, Same.commit (proof i) q) handle Same.SAME =>
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   534
            ZAppP (p, proof i q))
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   535
      | proof _ _ = raise Same.SAME;
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   536
  in ZAbsP ("H", h, Same.commit (proof 0) prf) end;
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   537
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   538
fun forall_intr_proof thy T (a, x) prf =
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   539
  let
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   540
    val {ztyp, zterm} = zterm_cache thy;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   541
    val Z = ztyp T;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   542
    val z = zterm x;
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   543
79157
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   544
    fun term i b =
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   545
      if aconv_zterm (b, z) then ZBound i
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   546
      else
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   547
        (case b of
79157
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   548
          ZAbs (x, T, t) => ZAbs (x, T, term (i + 1) t)
79156
3b272da1d165 minor performance tuning;
wenzelm
parents: 79155
diff changeset
   549
        | ZApp (t, u) =>
79157
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   550
            (ZApp (term i t, Same.commit (term i) u) handle Same.SAME =>
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   551
              ZApp (t, term i u))
79156
3b272da1d165 minor performance tuning;
wenzelm
parents: 79155
diff changeset
   552
        | _ => raise Same.SAME);
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   553
79157
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   554
    fun proof i (ZAbst (x, T, prf)) = ZAbst (x, T, proof (i + 1) prf)
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   555
      | proof i (ZAbsP (x, t, prf)) =
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   556
          (ZAbsP (x, term i t, Same.commit (proof i) prf) handle Same.SAME =>
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   557
            ZAbsP (x, t, proof i prf))
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   558
      | proof i (ZAppt (p, t)) =
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   559
          (ZAppt (proof i p, Same.commit (term i) t) handle Same.SAME =>
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   560
            ZAppt (p, term i t))
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   561
      | proof i (ZAppP (p, q)) =
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   562
          (ZAppP (proof i p, Same.commit (proof i) q) handle Same.SAME =>
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   563
            ZAppP (p, proof i q))
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   564
      | proof _ _ = raise Same.SAME;
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   565
79157
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   566
  in ZAbst (a, Z, Same.commit (proof 0) prf) end;
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   567
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   568
fun forall_elim_proof thy t p = ZAppt (p, zterm_of thy t);
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   569
79128
b6f5d4392388 more zproofs;
wenzelm
parents: 79126
diff changeset
   570
fun of_class_proof (T, c) = ZClassP (ztyp_of T, c);
b6f5d4392388 more zproofs;
wenzelm
parents: 79126
diff changeset
   571
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   572
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   573
(* equality *)
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   574
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   575
local
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   576
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   577
val thy0 =
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   578
  Context.the_global_context ()
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   579
  |> Sign.add_types_global [(Binding.name "fun", 2, NoSyn), (Binding.name "prop", 0, NoSyn)]
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   580
  |> Sign.local_path
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   581
  |> Sign.add_consts
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   582
   [(Binding.name "all", (Term.aT [] --> propT) --> propT, NoSyn),
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   583
    (Binding.name "imp", propT --> propT --> propT, NoSyn),
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   584
    (Binding.name "eq", Term.aT [] --> Term.aT [] --> propT, NoSyn)];
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   585
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   586
val [reflexive_axiom, symmetric_axiom, transitive_axiom, equal_intr_axiom, equal_elim_axiom,
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   587
  abstract_rule_axiom, combination_axiom] =
79126
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   588
    Theory.equality_axioms |> map (fn (b, t) => axiom_proof thy0 (Sign.full_name thy0 b) t);
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   589
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   590
in
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   591
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   592
val is_reflexive_proof =
79126
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   593
  fn ZConstP (ZAxiom "Pure.reflexive", _, _, _) => true | _ => false;
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   594
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   595
fun reflexive_proof thy T t =
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   596
  let
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   597
    val {ztyp, zterm} = zterm_cache thy;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   598
    val A = ztyp T;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   599
    val x = zterm t;
79126
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   600
  in map_const_proof (fn "'a" => A, fn "x" => x) reflexive_axiom end;
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   601
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   602
fun symmetric_proof thy T t u prf =
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   603
  if is_reflexive_proof prf then prf
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   604
  else
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   605
    let
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   606
      val {ztyp, zterm} = zterm_cache thy;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   607
      val A = ztyp T;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   608
      val x = zterm t;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   609
      val y = zterm u;
79126
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   610
      val ax = map_const_proof (fn "'a" => A, fn "x" => x | "y" => y) symmetric_axiom;
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   611
    in ZAppP (ax, prf) end;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   612
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   613
fun transitive_proof thy T t u v prf1 prf2 =
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   614
  if is_reflexive_proof prf1 then prf2
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   615
  else if is_reflexive_proof prf2 then prf1
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   616
  else
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   617
    let
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   618
      val {ztyp, zterm} = zterm_cache thy;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   619
      val A = ztyp T;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   620
      val x = zterm t;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   621
      val y = zterm u;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   622
      val z = zterm v;
79126
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   623
      val ax = map_const_proof (fn "'a" => A, fn "x" => x | "y" => y | "z" => z) transitive_axiom;
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   624
    in ZAppP (ZAppP (ax, prf1), prf2) end;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   625
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   626
fun equal_intr_proof thy t u prf1 prf2 =
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   627
  let
79160
wenzelm
parents: 79158
diff changeset
   628
    val {zterm, ...} = zterm_cache thy;
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   629
    val A = zterm t;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   630
    val B = zterm u;
79126
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   631
    val ax = map_const_proof (undefined, fn "A" => A | "B" => B) equal_intr_axiom;
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   632
  in ZAppP (ZAppP (ax, prf1), prf2) end;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   633
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   634
fun equal_elim_proof thy t u prf1 prf2 =
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   635
  let
79160
wenzelm
parents: 79158
diff changeset
   636
    val {zterm, ...} = zterm_cache thy;
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   637
    val A = zterm t;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   638
    val B = zterm u;
79126
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   639
    val ax = map_const_proof (undefined, fn "A" => A | "B" => B) equal_elim_axiom;
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   640
  in ZAppP (ZAppP (ax, prf1), prf2) end;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   641
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   642
fun abstract_rule_proof thy T U x t u prf =
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   643
  let
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   644
    val {ztyp, zterm} = zterm_cache thy;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   645
    val A = ztyp T;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   646
    val B = ztyp U;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   647
    val f = zterm t;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   648
    val g = zterm u;
79126
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   649
    val ax =
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   650
      map_const_proof (fn "'a" => A | "'b" => B, fn "f" => f | "g" => g)
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   651
        abstract_rule_axiom;
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   652
  in ZAppP (ax, forall_intr_proof thy T x prf) end;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   653
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   654
fun combination_proof thy T U f g t u prf1 prf2 =
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   655
  let
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   656
    val {ztyp, zterm} = zterm_cache thy;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   657
    val A = ztyp T;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   658
    val B = ztyp U;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   659
    val f' = zterm f;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   660
    val g' = zterm g;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   661
    val x = zterm t;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   662
    val y = zterm u;
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   663
    val ax =
79126
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   664
      map_const_proof (fn "'a" => A | "'b" => B, fn "f" => f' | "g" => g' | "x" => x | "y" => y)
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   665
        combination_axiom;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   666
  in ZAppP (ZAppP (ax, prf1), prf2) end;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   667
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   668
end;
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   669
79133
cfe995369655 more zproofs;
wenzelm
parents: 79132
diff changeset
   670
cfe995369655 more zproofs;
wenzelm
parents: 79132
diff changeset
   671
(* substitution *)
cfe995369655 more zproofs;
wenzelm
parents: 79132
diff changeset
   672
cfe995369655 more zproofs;
wenzelm
parents: 79132
diff changeset
   673
fun generalize_proof (tfrees, frees) idx prf =
cfe995369655 more zproofs;
wenzelm
parents: 79132
diff changeset
   674
  let
cfe995369655 more zproofs;
wenzelm
parents: 79132
diff changeset
   675
    val typ =
cfe995369655 more zproofs;
wenzelm
parents: 79132
diff changeset
   676
      if Names.is_empty tfrees then Same.same else
79163
9ddcaca41ed2 more operations;
wenzelm
parents: 79161
diff changeset
   677
        ZTypes.unsynchronized_cache
9ddcaca41ed2 more operations;
wenzelm
parents: 79161
diff changeset
   678
          (subst_type_same (fn ((a, i), S) =>
9ddcaca41ed2 more operations;
wenzelm
parents: 79161
diff changeset
   679
            if i = ~1 andalso Names.defined tfrees a then ZTVar ((a, idx), S)
9ddcaca41ed2 more operations;
wenzelm
parents: 79161
diff changeset
   680
            else raise Same.SAME));
79136
wenzelm
parents: 79135
diff changeset
   681
    val term =
79147
bfe5c20074e4 proper substitution of types within term;
wenzelm
parents: 79146
diff changeset
   682
      subst_term_same typ (fn ((x, i), T) =>
bfe5c20074e4 proper substitution of types within term;
wenzelm
parents: 79146
diff changeset
   683
        if i = ~1 andalso Names.defined frees x then ZVar ((x, idx), T)
bfe5c20074e4 proper substitution of types within term;
wenzelm
parents: 79146
diff changeset
   684
        else raise Same.SAME);
79136
wenzelm
parents: 79135
diff changeset
   685
  in Same.commit (map_proof_same typ term) prf end;
79133
cfe995369655 more zproofs;
wenzelm
parents: 79132
diff changeset
   686
79149
810679c5ed3c more zproofs;
wenzelm
parents: 79148
diff changeset
   687
fun instantiate_proof thy (Ts, ts) prf =
810679c5ed3c more zproofs;
wenzelm
parents: 79148
diff changeset
   688
  let
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   689
    val {ztyp, zterm} = zterm_cache thy;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   690
    val instT = ZTVars.build (Ts |> fold (fn (v, T) => ZTVars.add (v, ztyp T)));
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   691
    val inst = ZVars.build (ts |> fold (fn ((v, T), t) => ZVars.add ((v, ztyp T), zterm t)));
79149
810679c5ed3c more zproofs;
wenzelm
parents: 79148
diff changeset
   692
    val typ =
810679c5ed3c more zproofs;
wenzelm
parents: 79148
diff changeset
   693
      if ZTVars.is_empty instT then Same.same
79163
9ddcaca41ed2 more operations;
wenzelm
parents: 79161
diff changeset
   694
      else ZTypes.unsynchronized_cache (subst_type_same (Same.function (ZTVars.lookup instT)));
79149
810679c5ed3c more zproofs;
wenzelm
parents: 79148
diff changeset
   695
    val term = subst_term_same typ (Same.function (ZVars.lookup inst));
810679c5ed3c more zproofs;
wenzelm
parents: 79148
diff changeset
   696
  in Same.commit (map_proof_same typ term) prf end;
810679c5ed3c more zproofs;
wenzelm
parents: 79148
diff changeset
   697
79135
db2dc7634d62 more zproofs;
wenzelm
parents: 79133
diff changeset
   698
fun varifyT_proof names prf =
db2dc7634d62 more zproofs;
wenzelm
parents: 79133
diff changeset
   699
  if null names then prf
db2dc7634d62 more zproofs;
wenzelm
parents: 79133
diff changeset
   700
  else
db2dc7634d62 more zproofs;
wenzelm
parents: 79133
diff changeset
   701
    let
db2dc7634d62 more zproofs;
wenzelm
parents: 79133
diff changeset
   702
      val tab = ZTVars.build (names |> fold (fn ((a, S), b) => ZTVars.add (((a, ~1), S), b)));
79136
wenzelm
parents: 79135
diff changeset
   703
      val typ =
79163
9ddcaca41ed2 more operations;
wenzelm
parents: 79161
diff changeset
   704
        ZTypes.unsynchronized_cache (subst_type_same (fn v =>
79136
wenzelm
parents: 79135
diff changeset
   705
          (case ZTVars.lookup tab v of
wenzelm
parents: 79135
diff changeset
   706
            NONE => raise Same.SAME
79163
9ddcaca41ed2 more operations;
wenzelm
parents: 79161
diff changeset
   707
          | SOME w => ZTVar w)));
79144
wenzelm
parents: 79136
diff changeset
   708
    in Same.commit (map_proof_types_same typ) prf end;
79135
db2dc7634d62 more zproofs;
wenzelm
parents: 79133
diff changeset
   709
79152
4189e10f1524 more zproofs;
wenzelm
parents: 79150
diff changeset
   710
fun legacy_freezeT_proof t prf =
4189e10f1524 more zproofs;
wenzelm
parents: 79150
diff changeset
   711
  (case Type.legacy_freezeT t of
4189e10f1524 more zproofs;
wenzelm
parents: 79150
diff changeset
   712
    NONE => prf
4189e10f1524 more zproofs;
wenzelm
parents: 79150
diff changeset
   713
  | SOME f =>
4189e10f1524 more zproofs;
wenzelm
parents: 79150
diff changeset
   714
      let
4189e10f1524 more zproofs;
wenzelm
parents: 79150
diff changeset
   715
        val tvar = ztyp_of o Same.function f;
79163
9ddcaca41ed2 more operations;
wenzelm
parents: 79161
diff changeset
   716
        val typ = ZTypes.unsynchronized_cache (subst_type_same tvar);
79152
4189e10f1524 more zproofs;
wenzelm
parents: 79150
diff changeset
   717
      in Same.commit (map_proof_types_same typ) prf end);
4189e10f1524 more zproofs;
wenzelm
parents: 79150
diff changeset
   718
79150
1cdc685fe852 more zproofs;
wenzelm
parents: 79149
diff changeset
   719
fun incr_indexes_proof inc prf =
1cdc685fe852 more zproofs;
wenzelm
parents: 79149
diff changeset
   720
  let
1cdc685fe852 more zproofs;
wenzelm
parents: 79149
diff changeset
   721
    fun tvar ((a, i), S) = if i >= 0 then ZTVar ((a, i + inc), S) else raise Same.SAME;
1cdc685fe852 more zproofs;
wenzelm
parents: 79149
diff changeset
   722
    fun var ((x, i), T) = if i >= 0 then ZVar ((x, i + inc), T) else raise Same.SAME;
79163
9ddcaca41ed2 more operations;
wenzelm
parents: 79161
diff changeset
   723
    val typ = ZTypes.unsynchronized_cache (subst_type_same tvar);
79150
1cdc685fe852 more zproofs;
wenzelm
parents: 79149
diff changeset
   724
    val term = subst_term_same typ var;
1cdc685fe852 more zproofs;
wenzelm
parents: 79149
diff changeset
   725
  in Same.commit (map_proof_same typ term) prf end;
1cdc685fe852 more zproofs;
wenzelm
parents: 79149
diff changeset
   726
79155
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   727
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   728
(* permutations *)
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   729
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   730
fun rotate_proof thy Bs Bi' params asms m prf =
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   731
  let
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   732
    val {ztyp, zterm} = zterm_cache thy;
79155
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   733
    val i = length asms;
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   734
    val j = length Bs;
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   735
  in
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   736
    mk_ZAbsP (map zterm Bs @ [zterm Bi']) (mk_ZAppP (prf, map ZBoundP
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   737
      (j downto 1) @ [mk_ZAbst (map (apsnd ztyp) params) (mk_ZAbsP (map zterm asms)
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   738
        (mk_ZAppP (mk_ZAppt (ZBoundP i, map ZBound ((length params - 1) downto 0)),
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   739
          map ZBoundP (((i-m-1) downto 0) @ ((i-1) downto (i-m))))))]))
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   740
  end;
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   741
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   742
fun permute_prems_proof thy prems' j k prf =
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   743
  let
79160
wenzelm
parents: 79158
diff changeset
   744
    val {zterm, ...} = zterm_cache thy;
79155
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   745
    val n = length prems';
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   746
  in
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   747
    mk_ZAbsP (map zterm prems')
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   748
      (mk_ZAppP (prf, map ZBoundP ((n-1 downto n-j) @ (k-1 downto 0) @ (n-j-1 downto k))))
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   749
  end;
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   750
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   751
end;