src/Pure/zterm.ML
author wenzelm
Thu, 11 Jan 2024 12:37:10 +0100
changeset 79474 c39aed404ffc
parent 79473 e1b2595d678a
child 79475 9eb9882f1845
permissions -rw-r--r--
more uniform treatment of "hyps" within zproof;
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
  | ZType0 of string               (*type constant*)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    16
  | ZType1 of string * ztyp        (*type constructor: 1 argument*)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    17
  | ZType of string * ztyp list    (*type constructor: >= 2 arguments*)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    18
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    19
datatype zterm =
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    20
    ZVar of indexname * ztyp       (*free: index ~1*)
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    21
  | ZBound of int
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    22
  | ZConst0 of string              (*monomorphic constant*)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    23
  | ZConst1 of string * ztyp       (*polymorphic constant: 1 type argument*)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    24
  | ZConst of string * ztyp list   (*polymorphic constant: >= 2 type arguments*)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    25
  | ZAbs of string * ztyp * zterm
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    26
  | ZApp of zterm * zterm
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    27
  | ZClass of ztyp * class         (*OFCLASS proposition*)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    28
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
    29
structure ZTerm =
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    30
struct
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    31
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    32
(* fold *)
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    33
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    34
fun fold_tvars f (ZTVar v) = f v
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    35
  | fold_tvars f (ZFun (T, U)) = fold_tvars f T #> fold_tvars f U
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    36
  | fold_tvars f (ZType1 (_, T)) = fold_tvars f T
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    37
  | fold_tvars f (ZType (_, Ts)) = fold (fold_tvars f) Ts
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    38
  | fold_tvars _ _ = I;
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    39
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    40
fun fold_aterms f (ZApp (t, u)) = fold_aterms f t #> fold_aterms f u
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    41
  | fold_aterms f (ZAbs (_, _, t)) = fold_aterms f t
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    42
  | fold_aterms f a = f a;
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    43
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    44
fun fold_types f (ZVar (_, T)) = f T
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    45
  | fold_types f (ZConst1 (_, T)) = f T
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    46
  | fold_types f (ZConst (_, As)) = fold f As
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    47
  | fold_types f (ZAbs (_, T, b)) = f T #> fold_types f b
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    48
  | fold_types f (ZApp (t, u)) = fold_types f t #> fold_types f u
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    49
  | fold_types f (ZClass (T, _)) = f T
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    50
  | fold_types _ _ = I;
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    51
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    52
79264
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
    53
(* type ordering *)
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    54
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    55
local
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    56
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    57
fun cons_nr (ZTVar _) = 0
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    58
  | cons_nr (ZFun _) = 1
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    59
  | cons_nr ZProp = 2
79420
4c3346b4b100 clarified datatype ztyp: omit special case that rarely occurs (thanks to ZClass and ZClassp);
wenzelm
parents: 79419
diff changeset
    60
  | cons_nr (ZType0 _) = 3
4c3346b4b100 clarified datatype ztyp: omit special case that rarely occurs (thanks to ZClass and ZClassp);
wenzelm
parents: 79419
diff changeset
    61
  | cons_nr (ZType1 _) = 4
4c3346b4b100 clarified datatype ztyp: omit special case that rarely occurs (thanks to ZClass and ZClassp);
wenzelm
parents: 79419
diff changeset
    62
  | cons_nr (ZType _) = 5;
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    63
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    64
val fast_indexname_ord = Term_Ord.fast_indexname_ord;
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    65
val sort_ord = Term_Ord.sort_ord;
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
in
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    68
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    69
fun ztyp_ord TU =
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    70
  if pointer_eq TU then EQUAL
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    71
  else
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    72
    (case TU of
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    73
      (ZTVar (a, A), ZTVar (b, B)) =>
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
    74
        (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
    75
    | (ZFun (T, T'), ZFun (U, U')) =>
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    76
        (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
    77
    | (ZProp, ZProp) => EQUAL
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    78
    | (ZType0 a, ZType0 b) => fast_string_ord (a, b)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    79
    | (ZType1 (a, T), ZType1 (b, U)) =>
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    80
        (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
    81
    | (ZType (a, Ts), ZType (b, Us)) =>
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    82
        (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
    83
    | (T, U) => int_ord (cons_nr T, cons_nr U));
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    84
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    85
end;
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
    86
79264
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
    87
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
    88
(* term ordering and alpha-conversion *)
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
    89
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
    90
local
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
    91
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
    92
fun cons_nr (ZVar _) = 0
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
    93
  | cons_nr (ZBound _) = 1
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
    94
  | cons_nr (ZConst0 _) = 2
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
    95
  | cons_nr (ZConst1 _) = 3
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
    96
  | cons_nr (ZConst _) = 4
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
    97
  | cons_nr (ZAbs _) = 5
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
    98
  | cons_nr (ZApp _) = 6
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
    99
  | cons_nr (ZClass _) = 7;
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   100
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   101
fun struct_ord tu =
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   102
  if pointer_eq tu then EQUAL
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   103
  else
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   104
    (case tu of
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   105
      (ZAbs (_, _, t), ZAbs (_, _, u)) => struct_ord (t, u)
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   106
    | (ZApp (t1, t2), ZApp (u1, u2)) =>
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   107
        (case struct_ord (t1, u1) of EQUAL => struct_ord (t2, u2) | ord => ord)
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   108
    | (t, u) => int_ord (cons_nr t, cons_nr u));
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   109
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   110
fun atoms_ord tu =
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   111
  if pointer_eq tu then EQUAL
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   112
  else
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   113
    (case tu of
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   114
      (ZAbs (_, _, t), ZAbs (_, _, u)) => atoms_ord (t, u)
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   115
    | (ZApp (t1, t2), ZApp (u1, u2)) =>
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   116
        (case atoms_ord (t1, u1) of EQUAL => atoms_ord (t2, u2) | ord => ord)
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   117
    | (ZConst0 a, ZConst0 b) => fast_string_ord (a, b)
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   118
    | (ZConst1 (a, _), ZConst1 (b, _)) => fast_string_ord (a, b)
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   119
    | (ZConst (a, _), ZConst (b, _)) => fast_string_ord (a, b)
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   120
    | (ZVar (xi, _), ZVar (yj, _)) => Term_Ord.fast_indexname_ord (xi, yj)
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   121
    | (ZBound i, ZBound j) => int_ord (i, j)
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   122
    | (ZClass (_, a), ZClass (_, b)) => fast_string_ord (a, b)
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   123
    | _ => EQUAL);
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   124
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   125
fun types_ord tu =
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   126
  if pointer_eq tu then EQUAL
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   127
  else
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   128
    (case tu of
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   129
      (ZAbs (_, T, t), ZAbs (_, U, u)) =>
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   130
        (case ztyp_ord (T, U) of EQUAL => types_ord (t, u) | ord => ord)
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   131
    | (ZApp (t1, t2), ZApp (u1, u2)) =>
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   132
        (case types_ord (t1, u1) of EQUAL => types_ord (t2, u2) | ord => ord)
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   133
    | (ZConst1 (_, T), ZConst1 (_, U)) => ztyp_ord (T, U)
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   134
    | (ZConst (_, Ts), ZConst (_, Us)) => dict_ord ztyp_ord (Ts, Us)
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   135
    | (ZVar (_, T), ZVar (_, U)) => ztyp_ord (T, U)
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   136
    | (ZClass (T, _), ZClass (U, _)) => ztyp_ord (T, U)
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   137
    | _ => EQUAL);
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   138
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   139
in
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   140
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   141
val fast_zterm_ord = struct_ord ||| atoms_ord ||| types_ord;
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   142
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   143
end;
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   144
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   145
fun aconv_zterm (tm1, tm2) =
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   146
  pointer_eq (tm1, tm2) orelse
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   147
    (case (tm1, tm2) of
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   148
      (ZApp (t1, u1), ZApp (t2, u2)) => aconv_zterm (t1, t2) andalso aconv_zterm (u1, u2)
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   149
    | (ZAbs (_, T1, t1), ZAbs (_, T2, t2)) => aconv_zterm (t1, t2) andalso T1 = T2
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   150
    | (a1, a2) => a1 = a2);
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   151
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   152
end;
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   153
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   154
79264
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   155
(* tables and term items *)
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   156
79163
9ddcaca41ed2 more operations;
wenzelm
parents: 79161
diff changeset
   157
structure ZTypes = Table(type key = ztyp val ord = ZTerm.ztyp_ord);
79264
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   158
structure ZTerms = Table(type key = zterm val ord = ZTerm.fast_zterm_ord);
79163
9ddcaca41ed2 more operations;
wenzelm
parents: 79161
diff changeset
   159
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   160
structure ZTVars:
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   161
sig
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   162
  include TERM_ITEMS
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   163
  val add_tvarsT: ztyp -> set -> set
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   164
  val add_tvars: zterm -> set -> set
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   165
end =
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   166
struct
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   167
  open TVars;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   168
  val add_tvarsT = ZTerm.fold_tvars add_set;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   169
  val add_tvars = ZTerm.fold_types add_tvarsT;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   170
end;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   171
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   172
structure ZVars:
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   173
sig
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   174
  include TERM_ITEMS
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   175
  val add_vars: zterm -> set -> set
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   176
end =
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   177
struct
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   178
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   179
structure Term_Items = Term_Items
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   180
(
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   181
  type key = indexname * ztyp;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   182
  val ord = pointer_eq_ord (prod_ord Term_Ord.fast_indexname_ord ZTerm.ztyp_ord);
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   183
);
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   184
open Term_Items;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   185
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   186
val add_vars = ZTerm.fold_aterms (fn ZVar v => add_set v | _ => I);
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   187
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   188
end;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   189
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   190
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   191
(* proofs *)
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   192
79126
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   193
datatype zproof_name =
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   194
    ZAxiom of string
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   195
  | ZOracle of string
79313
3b03af5125de use strict Global_Theory.register_proofs as checkpoint for stored zproof, and thus reduce current zboxes;
wenzelm
parents: 79312
diff changeset
   196
  | ZBox of serial
79361
c28d4d1986f1 tuned signature;
wenzelm
parents: 79360
diff changeset
   197
  | ZThm of {theory_name: string, thm_name: Thm_Name.T * Position.T, serial: int};
79126
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   198
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   199
datatype zproof =
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   200
    ZDummy                         (*dummy proof*)
79212
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
   201
  | ZConstp of zproof_name * zterm * ztyp ZTVars.table * zterm ZVars.table
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
   202
  | ZBoundp of int
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   203
  | ZHyp of zterm
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   204
  | ZAbst of string * ztyp * zproof
79212
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
   205
  | ZAbsp of string * zterm * zproof
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   206
  | ZAppt of zproof * zterm
79212
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
   207
  | ZAppp of zproof * zproof
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
   208
  | ZClassp of ztyp * class;       (*OFCLASS proof from sorts algebra*)
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   209
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   210
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   211
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   212
(*** local ***)
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   213
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   214
signature ZTERM =
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   215
sig
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   216
  datatype ztyp = datatype ztyp
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   217
  datatype zterm = datatype zterm
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   218
  datatype zproof = datatype zproof
79265
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   219
  exception ZTERM of string * ztyp list * zterm list * zproof list
79263
bf2e724ff57e clarified signature;
wenzelm
parents: 79261
diff changeset
   220
  type zproof_const = zproof_name * zterm * ztyp ZTVars.table * zterm ZVars.table
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   221
  val fold_tvars: (indexname * sort -> 'a -> 'a) -> ztyp -> 'a -> 'a
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   222
  val fold_aterms: (zterm -> 'a -> 'a) -> zterm -> 'a -> 'a
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   223
  val fold_types: (ztyp -> 'a -> 'a) -> zterm -> 'a -> 'a
79264
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   224
  val ztyp_ord: ztyp ord
07b93dee105f more operations: zterm ordering that follows fast_term_ord;
wenzelm
parents: 79263
diff changeset
   225
  val fast_zterm_ord: zterm ord
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   226
  val aconv_zterm: zterm * zterm -> bool
79212
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
   227
  val ZAbsts: (string * ztyp) list -> zproof -> zproof
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
   228
  val ZAbsps: zterm list -> zproof -> zproof
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
   229
  val ZAppts: zproof * zterm list -> zproof
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
   230
  val ZAppps: zproof * zproof list -> zproof
79200
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   231
  val incr_bv_same: int -> int -> zterm Same.operation
79283
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   232
  val incr_proof_bv_same: int -> int -> int -> int -> zproof Same.operation
79200
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   233
  val incr_bv: int -> int -> zterm -> zterm
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   234
  val incr_boundvars: int -> zterm -> zterm
79283
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   235
  val incr_proof_bv: int -> int -> int -> int -> zproof -> zproof
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   236
  val incr_proof_boundvars: int -> int -> zproof -> zproof
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   237
  val subst_term_bound_same: zterm -> int -> zterm Same.operation
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   238
  val subst_proof_bound_same: zterm -> int -> zproof Same.operation
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   239
  val subst_proof_boundp_same: zproof -> int -> int -> zproof Same.operation
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   240
  val subst_term_bound: zterm -> zterm -> zterm
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   241
  val subst_proof_bound: zterm -> zproof -> zproof
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   242
  val subst_proof_boundp: zproof -> zproof -> zproof
79388
e6a12ea61f83 more operations;
wenzelm
parents: 79361
diff changeset
   243
  val subst_type_same: (indexname * sort, ztyp) Same.function -> ztyp Same.operation
e6a12ea61f83 more operations;
wenzelm
parents: 79361
diff changeset
   244
  val subst_term_same:
e6a12ea61f83 more operations;
wenzelm
parents: 79361
diff changeset
   245
    ztyp Same.operation -> (indexname * ztyp, zterm) Same.function -> zterm Same.operation
79318
74e245625a67 more informative exception;
wenzelm
parents: 79315
diff changeset
   246
  exception BAD_INST of ((indexname * ztyp) * zterm) list
79418
3a66bcb208b8 more operations (see also 8368160d3c65);
wenzelm
parents: 79417
diff changeset
   247
  val map_proof: {hyps: bool} -> ztyp Same.operation -> zterm Same.operation -> zproof -> zproof
3a66bcb208b8 more operations (see also 8368160d3c65);
wenzelm
parents: 79417
diff changeset
   248
  val map_proof_types: {hyps: bool} -> ztyp Same.operation -> zproof -> zproof
79414
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
   249
  val map_class_proof: (ztyp * class, zproof) Same.function -> zproof -> zproof
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   250
  val ztyp_of: typ -> ztyp
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   251
  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
   252
  val zterm_of: theory -> term -> zterm
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   253
  val typ_of: ztyp -> typ
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   254
  val term_of: theory -> zterm -> term
79298
77e4e69fd0e1 more operations;
wenzelm
parents: 79286
diff changeset
   255
  val beta_norm_term_same: zterm Same.operation
77e4e69fd0e1 more operations;
wenzelm
parents: 79286
diff changeset
   256
  val beta_norm_proof_same: zproof Same.operation
79302
fed9791928bf less ambitious normalization: term abstractions over terms and proofs, but not proofs over proofs (which may be large);
wenzelm
parents: 79301
diff changeset
   257
  val beta_norm_prooft_same: zproof -> zproof
79298
77e4e69fd0e1 more operations;
wenzelm
parents: 79286
diff changeset
   258
  val beta_norm_term: zterm -> zterm
77e4e69fd0e1 more operations;
wenzelm
parents: 79286
diff changeset
   259
  val beta_norm_proof: zproof -> zproof
79302
fed9791928bf less ambitious normalization: term abstractions over terms and proofs, but not proofs over proofs (which may be large);
wenzelm
parents: 79301
diff changeset
   260
  val beta_norm_prooft: zproof -> zproof
79200
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   261
  val norm_type: Type.tyenv -> ztyp -> ztyp
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   262
  val norm_term: theory -> Envir.env -> zterm -> zterm
79270
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   263
  val norm_proof: theory -> Envir.env -> term list -> zproof -> zproof
79311
e4a9a861856b omit pointless future: proof terms are built sequentially;
wenzelm
parents: 79303
diff changeset
   264
  type zbox = serial * (zterm * zproof)
79279
d9a7ee1bd070 minor performance tuning: more concise union;
wenzelm
parents: 79277
diff changeset
   265
  val zbox_ord: zbox ord
d9a7ee1bd070 minor performance tuning: more concise union;
wenzelm
parents: 79277
diff changeset
   266
  type zboxes = zbox Ord_List.T
79265
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   267
  val union_zboxes: zboxes -> zboxes -> zboxes
79279
d9a7ee1bd070 minor performance tuning: more concise union;
wenzelm
parents: 79277
diff changeset
   268
  val unions_zboxes: zboxes list -> zboxes
79425
0875c87b4a4b clarified signature;
wenzelm
parents: 79422
diff changeset
   269
  val add_box_proof: {unconstrain: bool} -> theory ->
0875c87b4a4b clarified signature;
wenzelm
parents: 79422
diff changeset
   270
    term list -> term -> zproof -> zboxes -> zproof * zboxes
79329
992c494bda25 proper thm_name for stored zproof;
wenzelm
parents: 79326
diff changeset
   271
  val thm_proof: theory -> Thm_Name.T * Position.T -> term list -> term -> zproof -> zbox * zproof
79126
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   272
  val axiom_proof:  theory -> string -> term -> zproof
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   273
  val oracle_proof:  theory -> string -> term -> zproof
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   274
  val assume_proof: theory -> term -> zproof
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   275
  val trivial_proof: theory -> term -> zproof
79414
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
   276
  val implies_intr_proof': zterm -> zproof -> zproof
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   277
  val implies_intr_proof: theory -> term -> zproof -> zproof
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   278
  val forall_intr_proof: theory -> typ -> string * term -> zproof -> zproof
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   279
  val forall_elim_proof: theory -> term -> zproof -> zproof
79128
b6f5d4392388 more zproofs;
wenzelm
parents: 79126
diff changeset
   280
  val of_class_proof: typ * class -> zproof
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   281
  val reflexive_proof: theory -> typ -> term -> zproof
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   282
  val symmetric_proof: theory -> typ -> term -> term -> zproof -> zproof
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   283
  val transitive_proof: theory -> typ -> term -> term -> term -> zproof -> zproof -> zproof
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   284
  val equal_intr_proof: theory -> term -> term -> zproof -> zproof -> zproof
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   285
  val equal_elim_proof: theory -> term -> term -> zproof -> zproof -> zproof
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   286
  val abstract_rule_proof: theory -> typ -> typ -> string * term -> term -> term -> zproof -> zproof
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   287
  val combination_proof: theory -> typ -> typ -> term -> term -> term -> term ->
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   288
    zproof -> zproof -> zproof
79133
cfe995369655 more zproofs;
wenzelm
parents: 79132
diff changeset
   289
  val generalize_proof: Names.set * Names.set -> int -> zproof -> zproof
79149
810679c5ed3c more zproofs;
wenzelm
parents: 79148
diff changeset
   290
  val instantiate_proof: theory ->
810679c5ed3c more zproofs;
wenzelm
parents: 79148
diff changeset
   291
    ((indexname * sort) * typ) list * ((indexname * typ) * term) list -> zproof -> zproof
79135
db2dc7634d62 more zproofs;
wenzelm
parents: 79133
diff changeset
   292
  val varifyT_proof: ((string * sort) * (indexname * sort)) list -> zproof -> zproof
79152
4189e10f1524 more zproofs;
wenzelm
parents: 79150
diff changeset
   293
  val legacy_freezeT_proof: term -> zproof -> zproof
79155
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   294
  val rotate_proof: theory -> term list -> term -> (string * typ) list ->
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   295
    term list -> int -> zproof -> zproof
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   296
  val permute_prems_proof: theory -> term list -> int -> int -> zproof -> zproof
79234
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
   297
  val incr_indexes_proof: int -> zproof -> zproof
79237
f97fe7ad62a7 proper ZTerm.lift_proof (amending 4a1a25bdf81d);
wenzelm
parents: 79234
diff changeset
   298
  val lift_proof: theory -> term -> int -> term list -> zproof -> zproof
79270
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   299
  val assumption_proof: theory -> Envir.env -> term list -> term -> int -> term list ->
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   300
    zproof -> zproof
79261
2e6fcc331f10 more zproofs;
wenzelm
parents: 79259
diff changeset
   301
  val bicompose_proof: theory -> Envir.env -> int -> bool -> term list -> term list ->
79270
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   302
    term option -> term list -> int -> int -> term list -> zproof -> zproof -> zproof
79425
0875c87b4a4b clarified signature;
wenzelm
parents: 79422
diff changeset
   303
  type sorts_proof = (class * class -> zproof) * (string * class list list * class -> zproof)
0875c87b4a4b clarified signature;
wenzelm
parents: 79422
diff changeset
   304
  val of_sort_proof: Sorts.algebra -> sorts_proof -> (typ * class -> zproof) ->
79405
f4fdf5eebcac pro-forma support for ZTerm.sorts_zproof;
wenzelm
parents: 79388
diff changeset
   305
    typ * sort -> zproof list
79425
0875c87b4a4b clarified signature;
wenzelm
parents: 79422
diff changeset
   306
  val unconstrainT_proof: theory -> sorts_proof -> Logic.unconstrain_context -> zproof -> zproof
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   307
end;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   308
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   309
structure ZTerm: ZTERM =
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   310
struct
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   311
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   312
datatype ztyp = datatype ztyp;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   313
datatype zterm = datatype zterm;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   314
datatype zproof = datatype zproof;
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   315
79265
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   316
exception ZTERM of string * ztyp list * zterm list * zproof list;
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   317
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   318
open ZTerm;
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   319
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   320
79155
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   321
(* derived operations *)
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   322
79234
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
   323
val ZFuns = Library.foldr ZFun;
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
   324
79212
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
   325
val ZAbsts = fold_rev (fn (x, T) => fn prf => ZAbst (x, T, prf));
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
   326
val ZAbsps = fold_rev (fn t => fn prf => ZAbsp ("H", t, prf));
79155
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   327
79212
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
   328
val ZAppts = Library.foldl ZAppt;
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
   329
val ZAppps = Library.foldl ZAppp;
79155
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   330
79234
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
   331
fun combound (t, n, k) =
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
   332
  if k > 0 then ZApp (combound (t, n + 1, k - 1), ZBound n) else t;
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
   333
79155
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
   334
79283
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   335
(* increment bound variables *)
79200
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   336
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   337
fun incr_bv_same inc =
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   338
  if inc = 0 then fn _ => Same.same
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   339
  else
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   340
    let
79285
3c542c1087f1 tuned whitespace;
wenzelm
parents: 79283
diff changeset
   341
      fun term lev (ZBound i) =
3c542c1087f1 tuned whitespace;
wenzelm
parents: 79283
diff changeset
   342
            if i >= lev then ZBound (i + inc) else raise Same.SAME
79200
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   343
        | term lev (ZAbs (a, T, t)) = ZAbs (a, T, term (lev + 1) t)
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   344
        | term lev (ZApp (t, u)) =
79285
3c542c1087f1 tuned whitespace;
wenzelm
parents: 79283
diff changeset
   345
            (ZApp (term lev t, Same.commit (term lev) u)
3c542c1087f1 tuned whitespace;
wenzelm
parents: 79283
diff changeset
   346
              handle Same.SAME => ZApp (t, term lev u))
79200
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   347
        | term _ _ = raise Same.SAME;
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   348
    in term end;
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   349
79283
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   350
fun incr_proof_bv_same incp inct =
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   351
  if incp = 0 andalso inct = 0 then fn _ => fn _ => Same.same
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   352
  else
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   353
    let
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   354
      val term = incr_bv_same inct;
79200
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   355
79283
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   356
      fun proof plev _ (ZBoundp i) =
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   357
            if i >= plev then ZBoundp (i + incp) else raise Same.SAME
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   358
        | proof plev tlev (ZAbsp (a, t, p)) =
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   359
            (ZAbsp (a, term tlev t, Same.commit (proof (plev + 1) tlev) p)
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   360
              handle Same.SAME => ZAbsp (a, t, proof (plev + 1) tlev p))
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   361
        | proof plev tlev (ZAbst (a, T, p)) = ZAbst (a, T, proof plev (tlev + 1) p)
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   362
        | proof plev tlev (ZAppp (p, q)) =
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   363
            (ZAppp (proof plev tlev p, Same.commit (proof plev tlev) q)
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   364
              handle Same.SAME => ZAppp (p, proof plev tlev q))
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   365
        | proof plev tlev (ZAppt (p, t)) =
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   366
            (ZAppt (proof plev tlev p, Same.commit (term tlev) t)
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   367
              handle Same.SAME => ZAppt (p, term tlev t))
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   368
        | proof _ _ _ = raise Same.SAME;
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   369
    in proof end;
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   370
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   371
fun incr_bv inc lev = Same.commit (incr_bv_same inc lev);
79200
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   372
fun incr_boundvars inc = incr_bv inc 0;
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   373
79283
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   374
fun incr_proof_bv incp inct plev tlev = Same.commit (incr_proof_bv_same incp inct plev tlev);
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   375
fun incr_proof_boundvars incp inct = incr_proof_bv incp inct 0 0;
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   376
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   377
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   378
(* substitution of bound variables *)
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   379
79281
28342f38da5c clarified signature, following Term.subst_bounds_same;
wenzelm
parents: 79279
diff changeset
   380
fun subst_term_bound_same arg =
79200
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   381
  let
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   382
    fun term lev (ZBound i) =
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   383
          if i < lev then raise Same.SAME   (*var is locally bound*)
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   384
          else if i = lev then incr_boundvars lev arg
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   385
          else ZBound (i - 1)   (*loose: change it*)
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   386
      | term lev (ZAbs (a, T, t)) = ZAbs (a, T, term (lev + 1) t)
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   387
      | term lev (ZApp (t, u)) =
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   388
          (ZApp (term lev t, Same.commit (term lev) u)
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   389
            handle Same.SAME => ZApp (t, term lev u))
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   390
      | term _ _ = raise Same.SAME;
79281
28342f38da5c clarified signature, following Term.subst_bounds_same;
wenzelm
parents: 79279
diff changeset
   391
  in term end;
28342f38da5c clarified signature, following Term.subst_bounds_same;
wenzelm
parents: 79279
diff changeset
   392
79283
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   393
fun subst_proof_bound_same arg =
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   394
  let
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   395
    val term = subst_term_bound_same arg;
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   396
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   397
    fun proof lev (ZAbsp (a, t, p)) =
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   398
          (ZAbsp (a, term lev t, Same.commit (proof lev) p)
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   399
            handle Same.SAME => ZAbsp (a, t, proof lev p))
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   400
      | proof lev (ZAbst (a, T, p)) = ZAbst (a, T, proof (lev + 1) p)
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   401
      | proof lev (ZAppp (p, q)) =
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   402
          (ZAppp (proof lev p, Same.commit (proof lev) q)
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   403
            handle Same.SAME => ZAppp (p, proof lev q))
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   404
      | proof lev (ZAppt (p, t)) =
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   405
          (ZAppt (proof lev p, Same.commit (term lev) t)
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   406
            handle Same.SAME => ZAppt (p, term lev t))
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   407
      | proof _ _ = raise Same.SAME;
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   408
  in proof end;
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   409
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   410
fun subst_proof_boundp_same arg =
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   411
  let
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   412
    fun proof plev tlev (ZBoundp i) =
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   413
          if i < plev then raise Same.SAME   (*var is locally bound*)
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   414
          else if i = plev then incr_proof_boundvars plev tlev arg
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   415
          else ZBoundp (i - 1)   (*loose: change it*)
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   416
      | proof plev tlev (ZAbsp (a, t, p)) = ZAbsp (a, t, proof (plev + 1) tlev p)
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   417
      | proof plev tlev (ZAbst (a, T, p)) = ZAbst (a, T, proof plev (tlev + 1) p)
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   418
      | proof plev tlev (ZAppp (p, q)) =
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   419
          (ZAppp (proof plev tlev p, Same.commit (proof plev tlev) q)
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   420
            handle Same.SAME => ZAppp (p, proof plev tlev q))
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   421
      | proof plev tlev (ZAppt (p, t)) = ZAppt (proof plev tlev p, t)
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   422
      | proof _ _ _ = raise Same.SAME;
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   423
  in proof end;
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   424
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   425
fun subst_term_bound arg body = Same.commit (subst_term_bound_same arg 0) body;
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   426
fun subst_proof_bound arg body = Same.commit (subst_proof_bound_same arg 0) body;
2c5d4b4ea3a2 more operations, following proofterm.ML;
wenzelm
parents: 79281
diff changeset
   427
fun subst_proof_boundp arg body = Same.commit (subst_proof_boundp_same arg 0 0) body;
79200
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   428
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   429
79268
154166613b40 tuned comments;
wenzelm
parents: 79266
diff changeset
   430
(* substitution of free or schematic variables *)
79132
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   431
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   432
fun subst_type_same tvar =
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   433
  let
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   434
    fun typ (ZTVar x) = tvar x
79326
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
   435
      | typ (ZFun (T, U)) =
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
   436
          (ZFun (typ T, Same.commit typ U)
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
   437
            handle Same.SAME => ZFun (T, typ U))
79132
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   438
      | typ ZProp = raise Same.SAME
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   439
      | typ (ZType0 _) = raise Same.SAME
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   440
      | typ (ZType1 (a, T)) = ZType1 (a, typ T)
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   441
      | typ (ZType (a, Ts)) = ZType (a, Same.map typ Ts);
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   442
  in typ end;
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   443
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   444
fun subst_term_same typ var =
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   445
  let
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   446
    fun term (ZVar (x, T)) =
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   447
          let val (T', same) = Same.commit_id typ T in
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   448
            (case Same.catch var (x, T') of
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   449
              NONE => if same then raise Same.SAME else ZVar (x, T')
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   450
            | SOME t' => t')
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   451
          end
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   452
      | term (ZBound _) = raise Same.SAME
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   453
      | term (ZConst0 _) = raise Same.SAME
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   454
      | term (ZConst1 (a, T)) = ZConst1 (a, typ T)
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   455
      | term (ZConst (a, Ts)) = ZConst (a, Same.map typ Ts)
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   456
      | term (ZAbs (a, T, t)) =
79326
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
   457
          (ZAbs (a, typ T, Same.commit term t)
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
   458
            handle Same.SAME => ZAbs (a, T, term t))
79132
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   459
      | term (ZApp (t, u)) =
79326
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
   460
          (ZApp (term t, Same.commit term u)
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
   461
            handle Same.SAME => ZApp (t, term u))
79132
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   462
      | term (ZClass (T, c)) = ZClass (typ T, c);
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   463
  in term end;
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   464
79270
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   465
fun instantiate_type_same instT =
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   466
  if ZTVars.is_empty instT then Same.same
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   467
  else ZTypes.unsynchronized_cache (subst_type_same (Same.function (ZTVars.lookup instT)));
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   468
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   469
fun instantiate_term_same typ inst =
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   470
  subst_term_same typ (Same.function (ZVars.lookup inst));
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   471
79268
154166613b40 tuned comments;
wenzelm
parents: 79266
diff changeset
   472
154166613b40 tuned comments;
wenzelm
parents: 79266
diff changeset
   473
(* map types/terms within proof *)
154166613b40 tuned comments;
wenzelm
parents: 79266
diff changeset
   474
79318
74e245625a67 more informative exception;
wenzelm
parents: 79315
diff changeset
   475
exception BAD_INST of ((indexname * ztyp) * zterm) list
74e245625a67 more informative exception;
wenzelm
parents: 79315
diff changeset
   476
74e245625a67 more informative exception;
wenzelm
parents: 79315
diff changeset
   477
fun make_inst inst =
79320
bbac3e8a5070 more permissive: allow collapse of term variables for equal results, e.g. relevant for metis (line 1882 of "~~/src/HOL/List.thy");
wenzelm
parents: 79318
diff changeset
   478
  ZVars.build (inst |> fold (ZVars.insert (op aconv_zterm)))
bbac3e8a5070 more permissive: allow collapse of term variables for equal results, e.g. relevant for metis (line 1882 of "~~/src/HOL/List.thy");
wenzelm
parents: 79318
diff changeset
   479
    handle ZVars.DUP _ => raise BAD_INST inst;
79318
74e245625a67 more informative exception;
wenzelm
parents: 79315
diff changeset
   480
79145
a9c55fef42b0 tuned signature;
wenzelm
parents: 79144
diff changeset
   481
fun map_insts_same typ term (instT, inst) =
a9c55fef42b0 tuned signature;
wenzelm
parents: 79144
diff changeset
   482
  let
a9c55fef42b0 tuned signature;
wenzelm
parents: 79144
diff changeset
   483
    val changed = Unsynchronized.ref false;
79146
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   484
    fun apply f x =
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   485
      (case Same.catch f x of
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   486
        NONE => NONE
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   487
      | some => (changed := true; some));
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   488
79145
a9c55fef42b0 tuned signature;
wenzelm
parents: 79144
diff changeset
   489
    val instT' =
a9c55fef42b0 tuned signature;
wenzelm
parents: 79144
diff changeset
   490
      (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
   491
        (case apply typ T of
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   492
          NONE => I
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   493
        | SOME T' => ZTVars.update (v, T')));
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   494
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   495
    val vars' =
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   496
      (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
   497
        (case apply typ T of
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   498
          NONE => I
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   499
        | 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
   500
79145
a9c55fef42b0 tuned signature;
wenzelm
parents: 79144
diff changeset
   501
    val inst' =
79146
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   502
      if ZVars.is_empty vars' then
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   503
        (inst, inst) |-> ZVars.fold (fn (v, t) =>
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   504
          (case apply term t of
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   505
            NONE => I
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   506
          | SOME t' => ZVars.update (v, t')))
feb94ac5df41 more accurate treatment of term variables after instantiation of type variables;
wenzelm
parents: 79145
diff changeset
   507
      else
79325
wenzelm
parents: 79320
diff changeset
   508
        build (inst |> ZVars.fold_rev (fn (v, t) =>
wenzelm
parents: 79320
diff changeset
   509
          cons (the_default v (ZVars.lookup vars' v), the_default t (apply term t))))
79318
74e245625a67 more informative exception;
wenzelm
parents: 79315
diff changeset
   510
        |> make_inst;
79145
a9c55fef42b0 tuned signature;
wenzelm
parents: 79144
diff changeset
   511
  in if ! changed then (instT', inst') else raise Same.SAME end;
a9c55fef42b0 tuned signature;
wenzelm
parents: 79144
diff changeset
   512
79418
3a66bcb208b8 more operations (see also 8368160d3c65);
wenzelm
parents: 79417
diff changeset
   513
fun map_proof_same {hyps} typ term =
79132
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   514
  let
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   515
    fun proof ZDummy = raise Same.SAME
79212
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
   516
      | proof (ZConstp (a, A, instT, inst)) =
79148
99201e7b1d94 proper treatment of ZConstP: term represents body of closure;
wenzelm
parents: 79147
diff changeset
   517
          let val (instT', inst') = map_insts_same typ term (instT, inst)
79212
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
   518
          in ZConstp (a, A, instT', inst') end
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
   519
      | proof (ZBoundp _) = raise Same.SAME
79418
3a66bcb208b8 more operations (see also 8368160d3c65);
wenzelm
parents: 79417
diff changeset
   520
      | proof (ZHyp h) = if hyps then ZHyp (term h) else raise Same.SAME
79132
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   521
      | proof (ZAbst (a, T, p)) =
79326
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
   522
          (ZAbst (a, typ T, Same.commit proof p)
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
   523
            handle Same.SAME => ZAbst (a, T, proof p))
79212
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
   524
      | proof (ZAbsp (a, t, p)) =
79326
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
   525
          (ZAbsp (a, term t, Same.commit proof p)
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
   526
            handle Same.SAME => ZAbsp (a, t, proof p))
79132
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   527
      | proof (ZAppt (p, t)) =
79326
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
   528
          (ZAppt (proof p, Same.commit term t)
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
   529
            handle Same.SAME => ZAppt (p, term t))
79212
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
   530
      | proof (ZAppp (p, q)) =
79326
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
   531
          (ZAppp (proof p, Same.commit proof q)
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
   532
            handle Same.SAME => ZAppp (p, proof q))
79474
c39aed404ffc more uniform treatment of "hyps" within zproof;
wenzelm
parents: 79473
diff changeset
   533
      | proof (ZClassp (T, c)) = if hyps then ZClassp (typ T, c) else raise Same.SAME;
79132
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   534
  in proof end;
6d3322477cfd more operations;
wenzelm
parents: 79128
diff changeset
   535
79418
3a66bcb208b8 more operations (see also 8368160d3c65);
wenzelm
parents: 79417
diff changeset
   536
fun map_proof hyps typ term = Same.commit (map_proof_same hyps typ term);
3a66bcb208b8 more operations (see also 8368160d3c65);
wenzelm
parents: 79417
diff changeset
   537
fun map_proof_types hyps typ = map_proof hyps typ (subst_term_same typ Same.same);
79144
wenzelm
parents: 79136
diff changeset
   538
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   539
79414
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
   540
(* map class proofs *)
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
   541
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
   542
fun map_class_proof class =
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
   543
  let
79415
740ec03b0b71 tuned names;
wenzelm
parents: 79414
diff changeset
   544
    fun proof (ZClassp C) = class C
79414
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
   545
      | proof (ZAbst (a, T, p)) = ZAbst (a, T, proof p)
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
   546
      | proof (ZAbsp (a, t, p)) = ZAbsp (a, t, proof p)
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
   547
      | proof (ZAppt (p, t)) = ZAppt (proof p, t)
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
   548
      | proof (ZAppp (p, q)) =
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
   549
          (ZAppp (proof p, Same.commit proof q)
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
   550
            handle Same.SAME => ZAppp (p, proof q))
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
   551
      | proof _ = raise Same.SAME;
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
   552
  in Same.commit proof end;
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
   553
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
   554
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   555
(* convert ztyp / zterm vs. regular typ / term *)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   556
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   557
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
   558
  | ztyp_of (TVar v) = ZTVar v
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   559
  | ztyp_of (Type ("fun", [T, U])) = ZFun (ztyp_of T, ztyp_of U)
79421
wenzelm
parents: 79420
diff changeset
   560
  | ztyp_of (Type ("prop", [])) = ZProp
wenzelm
parents: 79420
diff changeset
   561
  | ztyp_of (Type (c, [])) = ZType0 c
79420
4c3346b4b100 clarified datatype ztyp: omit special case that rarely occurs (thanks to ZClass and ZClassp);
wenzelm
parents: 79419
diff changeset
   562
  | ztyp_of (Type (c, [T])) = ZType1 (c, ztyp_of T)
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   563
  | 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
   564
79163
9ddcaca41ed2 more operations;
wenzelm
parents: 79161
diff changeset
   565
fun ztyp_cache () = Typtab.unsynchronized_cache ztyp_of;
9ddcaca41ed2 more operations;
wenzelm
parents: 79161
diff changeset
   566
79226
0b87e04d0b68 tuned signature;
wenzelm
parents: 79214
diff changeset
   567
fun zterm_cache thy =
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   568
  let
79226
0b87e04d0b68 tuned signature;
wenzelm
parents: 79214
diff changeset
   569
    val typargs = Consts.typargs (Sign.consts_of thy);
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   570
79163
9ddcaca41ed2 more operations;
wenzelm
parents: 79161
diff changeset
   571
    val ztyp = ztyp_cache ();
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   572
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   573
    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
   574
      | zterm (Var (xi, T)) = ZVar (xi, ztyp T)
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   575
      | zterm (Bound i) = ZBound i
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   576
      | zterm (Const (c, T)) =
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   577
          (case typargs (c, T) of
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   578
            [] => ZConst0 c
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   579
          | [T] => ZConst1 (c, ztyp T)
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   580
          | Ts => ZConst (c, map ztyp Ts))
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   581
      | 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
   582
      | 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
   583
          if String.isSuffix Logic.class_suffix c then
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   584
            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
   585
          else ZApp (zterm t, zterm u)
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   586
      | zterm (t $ u) = ZApp (zterm t, zterm u);
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   587
  in {ztyp = ztyp, zterm = zterm} end;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   588
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   589
val zterm_of = #zterm o zterm_cache;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   590
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   591
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
   592
  | typ_of (ZTVar v) = TVar v
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   593
  | 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
   594
  | typ_of ZProp = propT
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   595
  | typ_of (ZType0 c) = Type (c, [])
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   596
  | typ_of (ZType1 (c, T)) = Type (c, [typ_of T])
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   597
  | 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
   598
79201
wenzelm
parents: 79200
diff changeset
   599
fun typ_cache () = ZTypes.unsynchronized_cache typ_of;
wenzelm
parents: 79200
diff changeset
   600
79226
0b87e04d0b68 tuned signature;
wenzelm
parents: 79214
diff changeset
   601
fun term_of thy =
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   602
  let
79226
0b87e04d0b68 tuned signature;
wenzelm
parents: 79214
diff changeset
   603
    val instance = Consts.instance (Sign.consts_of thy);
0b87e04d0b68 tuned signature;
wenzelm
parents: 79214
diff changeset
   604
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   605
    fun const (c, Ts) = Const (c, instance (c, Ts));
79226
0b87e04d0b68 tuned signature;
wenzelm
parents: 79214
diff changeset
   606
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   607
    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
   608
      | term (ZVar (xi, T)) = Var (xi, typ_of T)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   609
      | term (ZBound i) = Bound i
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   610
      | term (ZConst0 c) = const (c, [])
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   611
      | term (ZConst1 (c, T)) = const (c, [typ_of T])
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   612
      | term (ZConst (c, Ts)) = const (c, map typ_of Ts)
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   613
      | 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
   614
      | term (ZApp (t, u)) = term t $ term u
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   615
      | 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
   616
  in term end;
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
   617
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   618
79298
77e4e69fd0e1 more operations;
wenzelm
parents: 79286
diff changeset
   619
(* beta contraction *)
79200
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   620
79286
366a5ad2f2b3 more thorough beta contraction;
wenzelm
parents: 79285
diff changeset
   621
val beta_norm_term_same =
79271
b14b289caaf6 minor performance tuning: more direct beta_norm;
wenzelm
parents: 79270
diff changeset
   622
  let
79299
74a90157ee89 tuned, following Envir.norm_term;
wenzelm
parents: 79298
diff changeset
   623
    fun norm (ZAbs (a, T, t)) = ZAbs (a, T, Same.commit norm t)
74a90157ee89 tuned, following Envir.norm_term;
wenzelm
parents: 79298
diff changeset
   624
      | norm (ZApp (ZAbs (_, _, body), t)) = Same.commit norm (subst_term_bound t body)
79271
b14b289caaf6 minor performance tuning: more direct beta_norm;
wenzelm
parents: 79270
diff changeset
   625
      | norm (ZApp (f, t)) =
b14b289caaf6 minor performance tuning: more direct beta_norm;
wenzelm
parents: 79270
diff changeset
   626
          ((case norm f of
79286
366a5ad2f2b3 more thorough beta contraction;
wenzelm
parents: 79285
diff changeset
   627
             ZAbs (_, _, body) => Same.commit norm (subst_term_bound t body)
79271
b14b289caaf6 minor performance tuning: more direct beta_norm;
wenzelm
parents: 79270
diff changeset
   628
           | nf => ZApp (nf, Same.commit norm t))
b14b289caaf6 minor performance tuning: more direct beta_norm;
wenzelm
parents: 79270
diff changeset
   629
          handle Same.SAME => ZApp (f, norm t))
b14b289caaf6 minor performance tuning: more direct beta_norm;
wenzelm
parents: 79270
diff changeset
   630
      | norm _ = raise Same.SAME;
b14b289caaf6 minor performance tuning: more direct beta_norm;
wenzelm
parents: 79270
diff changeset
   631
  in norm end;
b14b289caaf6 minor performance tuning: more direct beta_norm;
wenzelm
parents: 79270
diff changeset
   632
79302
fed9791928bf less ambitious normalization: term abstractions over terms and proofs, but not proofs over proofs (which may be large);
wenzelm
parents: 79301
diff changeset
   633
val beta_norm_prooft_same =
fed9791928bf less ambitious normalization: term abstractions over terms and proofs, but not proofs over proofs (which may be large);
wenzelm
parents: 79301
diff changeset
   634
  let
fed9791928bf less ambitious normalization: term abstractions over terms and proofs, but not proofs over proofs (which may be large);
wenzelm
parents: 79301
diff changeset
   635
    val term = beta_norm_term_same;
fed9791928bf less ambitious normalization: term abstractions over terms and proofs, but not proofs over proofs (which may be large);
wenzelm
parents: 79301
diff changeset
   636
fed9791928bf less ambitious normalization: term abstractions over terms and proofs, but not proofs over proofs (which may be large);
wenzelm
parents: 79301
diff changeset
   637
    fun norm (ZAbst (a, T, p)) = ZAbst (a, T, norm p)
fed9791928bf less ambitious normalization: term abstractions over terms and proofs, but not proofs over proofs (which may be large);
wenzelm
parents: 79301
diff changeset
   638
      | norm (ZAppt (ZAbst (_, _, body), t)) = Same.commit norm (subst_proof_bound t body)
fed9791928bf less ambitious normalization: term abstractions over terms and proofs, but not proofs over proofs (which may be large);
wenzelm
parents: 79301
diff changeset
   639
      | norm (ZAppt (f, t)) =
fed9791928bf less ambitious normalization: term abstractions over terms and proofs, but not proofs over proofs (which may be large);
wenzelm
parents: 79301
diff changeset
   640
          ((case norm f of
fed9791928bf less ambitious normalization: term abstractions over terms and proofs, but not proofs over proofs (which may be large);
wenzelm
parents: 79301
diff changeset
   641
             ZAbst (_, _, body) => Same.commit norm (subst_proof_bound t body)
fed9791928bf less ambitious normalization: term abstractions over terms and proofs, but not proofs over proofs (which may be large);
wenzelm
parents: 79301
diff changeset
   642
           | nf => ZAppt (nf, Same.commit term t))
fed9791928bf less ambitious normalization: term abstractions over terms and proofs, but not proofs over proofs (which may be large);
wenzelm
parents: 79301
diff changeset
   643
          handle Same.SAME => ZAppt (f, term t))
fed9791928bf less ambitious normalization: term abstractions over terms and proofs, but not proofs over proofs (which may be large);
wenzelm
parents: 79301
diff changeset
   644
      | norm _ = raise Same.SAME;
fed9791928bf less ambitious normalization: term abstractions over terms and proofs, but not proofs over proofs (which may be large);
wenzelm
parents: 79301
diff changeset
   645
  in norm end;
fed9791928bf less ambitious normalization: term abstractions over terms and proofs, but not proofs over proofs (which may be large);
wenzelm
parents: 79301
diff changeset
   646
79286
366a5ad2f2b3 more thorough beta contraction;
wenzelm
parents: 79285
diff changeset
   647
val beta_norm_proof_same =
366a5ad2f2b3 more thorough beta contraction;
wenzelm
parents: 79285
diff changeset
   648
  let
366a5ad2f2b3 more thorough beta contraction;
wenzelm
parents: 79285
diff changeset
   649
    val term = beta_norm_term_same;
366a5ad2f2b3 more thorough beta contraction;
wenzelm
parents: 79285
diff changeset
   650
79300
236fa4b32afb more thorough beta contraction, following Envir.norm_term;
wenzelm
parents: 79299
diff changeset
   651
    fun norm (ZAbst (a, T, p)) = ZAbst (a, T, norm p)
236fa4b32afb more thorough beta contraction, following Envir.norm_term;
wenzelm
parents: 79299
diff changeset
   652
      | norm (ZAbsp (a, t, p)) =
236fa4b32afb more thorough beta contraction, following Envir.norm_term;
wenzelm
parents: 79299
diff changeset
   653
          (ZAbsp (a, term t, Same.commit norm p)
236fa4b32afb more thorough beta contraction, following Envir.norm_term;
wenzelm
parents: 79299
diff changeset
   654
            handle Same.SAME => ZAbsp (a, t, norm p))
236fa4b32afb more thorough beta contraction, following Envir.norm_term;
wenzelm
parents: 79299
diff changeset
   655
      | norm (ZAppt (ZAbst (_, _, body), t)) = Same.commit norm (subst_proof_bound t body)
79301
wenzelm
parents: 79300
diff changeset
   656
      | norm (ZAppp (ZAbsp (_, _, body), p)) = Same.commit norm (subst_proof_boundp p body)
79286
366a5ad2f2b3 more thorough beta contraction;
wenzelm
parents: 79285
diff changeset
   657
      | norm (ZAppt (f, t)) =
366a5ad2f2b3 more thorough beta contraction;
wenzelm
parents: 79285
diff changeset
   658
          ((case norm f of
366a5ad2f2b3 more thorough beta contraction;
wenzelm
parents: 79285
diff changeset
   659
             ZAbst (_, _, body) => Same.commit norm (subst_proof_bound t body)
366a5ad2f2b3 more thorough beta contraction;
wenzelm
parents: 79285
diff changeset
   660
           | nf => ZAppt (nf, Same.commit term t))
366a5ad2f2b3 more thorough beta contraction;
wenzelm
parents: 79285
diff changeset
   661
          handle Same.SAME => ZAppt (f, term t))
366a5ad2f2b3 more thorough beta contraction;
wenzelm
parents: 79285
diff changeset
   662
      | norm (ZAppp (f, p)) =
366a5ad2f2b3 more thorough beta contraction;
wenzelm
parents: 79285
diff changeset
   663
          ((case norm f of
366a5ad2f2b3 more thorough beta contraction;
wenzelm
parents: 79285
diff changeset
   664
             ZAbsp (_, _, body) => Same.commit norm (subst_proof_boundp p body)
366a5ad2f2b3 more thorough beta contraction;
wenzelm
parents: 79285
diff changeset
   665
           | nf => ZAppp (nf, Same.commit norm p))
366a5ad2f2b3 more thorough beta contraction;
wenzelm
parents: 79285
diff changeset
   666
          handle Same.SAME => ZAppp (f, norm p))
366a5ad2f2b3 more thorough beta contraction;
wenzelm
parents: 79285
diff changeset
   667
      | norm _ = raise Same.SAME;
366a5ad2f2b3 more thorough beta contraction;
wenzelm
parents: 79285
diff changeset
   668
  in norm end;
366a5ad2f2b3 more thorough beta contraction;
wenzelm
parents: 79285
diff changeset
   669
79298
77e4e69fd0e1 more operations;
wenzelm
parents: 79286
diff changeset
   670
val beta_norm_term = Same.commit beta_norm_term_same;
77e4e69fd0e1 more operations;
wenzelm
parents: 79286
diff changeset
   671
val beta_norm_proof = Same.commit beta_norm_proof_same;
79302
fed9791928bf less ambitious normalization: term abstractions over terms and proofs, but not proofs over proofs (which may be large);
wenzelm
parents: 79301
diff changeset
   672
val beta_norm_prooft = Same.commit beta_norm_prooft_same;
79298
77e4e69fd0e1 more operations;
wenzelm
parents: 79286
diff changeset
   673
77e4e69fd0e1 more operations;
wenzelm
parents: 79286
diff changeset
   674
77e4e69fd0e1 more operations;
wenzelm
parents: 79286
diff changeset
   675
(* normalization wrt. environment and beta contraction *)
77e4e69fd0e1 more operations;
wenzelm
parents: 79286
diff changeset
   676
79200
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   677
fun norm_type_same ztyp tyenv =
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   678
  if Vartab.is_empty tyenv then Same.same
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   679
  else
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   680
    let
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   681
      fun norm (ZTVar v) =
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   682
            (case Type.lookup tyenv v of
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   683
              SOME U => Same.commit norm (ztyp U)
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   684
            | NONE => raise Same.SAME)
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   685
        | norm (ZFun (T, U)) =
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   686
            (ZFun (norm T, Same.commit norm U)
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   687
              handle Same.SAME => ZFun (T, norm U))
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   688
        | norm ZProp = raise Same.SAME
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   689
        | norm (ZType0 _) = raise Same.SAME
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   690
        | norm (ZType1 (a, T)) = ZType1 (a, norm T)
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   691
        | norm (ZType (a, Ts)) = ZType (a, Same.map norm Ts);
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   692
    in norm end;
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   693
79269
2c65d3356ef9 proper scope of cache (amending 61af3e917597);
wenzelm
parents: 79268
diff changeset
   694
fun norm_term_same {ztyp, zterm, typ} (envir as Envir.Envir {tyenv, tenv, ...}) =
2c65d3356ef9 proper scope of cache (amending 61af3e917597);
wenzelm
parents: 79268
diff changeset
   695
  let
2c65d3356ef9 proper scope of cache (amending 61af3e917597);
wenzelm
parents: 79268
diff changeset
   696
    val lookup =
2c65d3356ef9 proper scope of cache (amending 61af3e917597);
wenzelm
parents: 79268
diff changeset
   697
      if Vartab.is_empty tenv then K NONE
2c65d3356ef9 proper scope of cache (amending 61af3e917597);
wenzelm
parents: 79268
diff changeset
   698
      else ZVars.unsynchronized_cache (apsnd typ #> Envir.lookup envir #> Option.map zterm);
79200
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   699
79269
2c65d3356ef9 proper scope of cache (amending 61af3e917597);
wenzelm
parents: 79268
diff changeset
   700
    val normT = norm_type_same ztyp tyenv;
79200
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   701
79269
2c65d3356ef9 proper scope of cache (amending 61af3e917597);
wenzelm
parents: 79268
diff changeset
   702
    fun norm (ZVar (xi, T)) =
2c65d3356ef9 proper scope of cache (amending 61af3e917597);
wenzelm
parents: 79268
diff changeset
   703
          (case lookup (xi, T) of
2c65d3356ef9 proper scope of cache (amending 61af3e917597);
wenzelm
parents: 79268
diff changeset
   704
            SOME u => Same.commit norm u
2c65d3356ef9 proper scope of cache (amending 61af3e917597);
wenzelm
parents: 79268
diff changeset
   705
          | NONE => ZVar (xi, normT T))
2c65d3356ef9 proper scope of cache (amending 61af3e917597);
wenzelm
parents: 79268
diff changeset
   706
      | norm (ZBound _) = raise Same.SAME
2c65d3356ef9 proper scope of cache (amending 61af3e917597);
wenzelm
parents: 79268
diff changeset
   707
      | norm (ZConst0 _) = raise Same.SAME
2c65d3356ef9 proper scope of cache (amending 61af3e917597);
wenzelm
parents: 79268
diff changeset
   708
      | norm (ZConst1 (a, T)) = ZConst1 (a, normT T)
2c65d3356ef9 proper scope of cache (amending 61af3e917597);
wenzelm
parents: 79268
diff changeset
   709
      | norm (ZConst (a, Ts)) = ZConst (a, Same.map normT Ts)
2c65d3356ef9 proper scope of cache (amending 61af3e917597);
wenzelm
parents: 79268
diff changeset
   710
      | norm (ZAbs (a, T, t)) =
2c65d3356ef9 proper scope of cache (amending 61af3e917597);
wenzelm
parents: 79268
diff changeset
   711
          (ZAbs (a, normT T, Same.commit norm t)
2c65d3356ef9 proper scope of cache (amending 61af3e917597);
wenzelm
parents: 79268
diff changeset
   712
            handle Same.SAME => ZAbs (a, T, norm t))
79281
28342f38da5c clarified signature, following Term.subst_bounds_same;
wenzelm
parents: 79279
diff changeset
   713
      | norm (ZApp (ZAbs (_, _, body), t)) = Same.commit norm (subst_term_bound t body)
79269
2c65d3356ef9 proper scope of cache (amending 61af3e917597);
wenzelm
parents: 79268
diff changeset
   714
      | norm (ZApp (f, t)) =
2c65d3356ef9 proper scope of cache (amending 61af3e917597);
wenzelm
parents: 79268
diff changeset
   715
          ((case norm f of
79281
28342f38da5c clarified signature, following Term.subst_bounds_same;
wenzelm
parents: 79279
diff changeset
   716
             ZAbs (_, _, body) => Same.commit norm (subst_term_bound t body)
79269
2c65d3356ef9 proper scope of cache (amending 61af3e917597);
wenzelm
parents: 79268
diff changeset
   717
           | nf => ZApp (nf, Same.commit norm t))
2c65d3356ef9 proper scope of cache (amending 61af3e917597);
wenzelm
parents: 79268
diff changeset
   718
          handle Same.SAME => ZApp (f, norm t))
2c65d3356ef9 proper scope of cache (amending 61af3e917597);
wenzelm
parents: 79268
diff changeset
   719
      | norm _ = raise Same.SAME;
79286
366a5ad2f2b3 more thorough beta contraction;
wenzelm
parents: 79285
diff changeset
   720
  in fn t => if Envir.is_empty envir then beta_norm_term_same t else norm t end;
79200
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   721
79270
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   722
fun norm_proof_cache (cache as {ztyp, ...}) (envir as Envir.Envir {tyenv, ...}) =
79269
2c65d3356ef9 proper scope of cache (amending 61af3e917597);
wenzelm
parents: 79268
diff changeset
   723
  let
79270
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   724
    val norm_tvar = ZTVar #> Same.commit (norm_type_same ztyp tyenv);
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   725
    val norm_var = ZVar #> Same.commit (norm_term_same cache envir);
79269
2c65d3356ef9 proper scope of cache (amending 61af3e917597);
wenzelm
parents: 79268
diff changeset
   726
  in
79270
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   727
    fn visible => fn prf =>
79302
fed9791928bf less ambitious normalization: term abstractions over terms and proofs, but not proofs over proofs (which may be large);
wenzelm
parents: 79301
diff changeset
   728
      if Envir.is_empty envir orelse null visible then beta_norm_prooft prf
79270
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   729
      else
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   730
        let
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   731
          fun add_tvar v tab =
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   732
            if ZTVars.defined tab v then tab else ZTVars.update (v, norm_tvar v) tab;
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   733
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   734
          val inst_typ =
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   735
            if Vartab.is_empty tyenv then Same.same
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   736
            else
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   737
              ZTVars.build (visible |> (fold o Term.fold_types o Term.fold_atyps)
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   738
                (fn TVar v => add_tvar v | _ => I))
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   739
              |> instantiate_type_same;
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   740
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   741
          fun add_var (a, T) tab =
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   742
            let val v = (a, Same.commit inst_typ (ztyp T))
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   743
            in if ZVars.defined tab v then tab else ZVars.update (v, norm_var v) tab end;
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   744
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   745
          val inst_term =
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   746
            ZVars.build (visible |> (fold o Term.fold_aterms) (fn Var v => add_var v | _ => I))
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   747
            |> instantiate_term_same inst_typ;
79272
899f37f6d218 proper beta_norm after instantiation (amending 90c5aadcc4b2);
wenzelm
parents: 79271
diff changeset
   748
79286
366a5ad2f2b3 more thorough beta contraction;
wenzelm
parents: 79285
diff changeset
   749
          val norm_term = Same.compose beta_norm_term_same inst_term;
79418
3a66bcb208b8 more operations (see also 8368160d3c65);
wenzelm
parents: 79417
diff changeset
   750
        in beta_norm_prooft (map_proof {hyps = false} inst_typ norm_term prf) end
79269
2c65d3356ef9 proper scope of cache (amending 61af3e917597);
wenzelm
parents: 79268
diff changeset
   751
  end;
79210
5ed6f16a5f7c clarified signature: support shared cache;
wenzelm
parents: 79205
diff changeset
   752
5ed6f16a5f7c clarified signature: support shared cache;
wenzelm
parents: 79205
diff changeset
   753
fun norm_cache thy =
79205
a159cb82afe7 more operations;
wenzelm
parents: 79204
diff changeset
   754
  let
79226
0b87e04d0b68 tuned signature;
wenzelm
parents: 79214
diff changeset
   755
    val {ztyp, zterm} = zterm_cache thy;
79205
a159cb82afe7 more operations;
wenzelm
parents: 79204
diff changeset
   756
    val typ = typ_cache ();
a159cb82afe7 more operations;
wenzelm
parents: 79204
diff changeset
   757
  in {ztyp = ztyp, zterm = zterm, typ = typ} end;
a159cb82afe7 more operations;
wenzelm
parents: 79204
diff changeset
   758
79214
61af3e917597 more operations;
wenzelm
parents: 79212
diff changeset
   759
fun norm_type tyenv = Same.commit (norm_type_same (ztyp_cache ()) tyenv);
61af3e917597 more operations;
wenzelm
parents: 79212
diff changeset
   760
fun norm_term thy envir = Same.commit (norm_term_same (norm_cache thy) envir);
79270
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
   761
fun norm_proof thy envir = norm_proof_cache (norm_cache thy) envir;
79200
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   762
f6bbe80f5f41 more operations;
wenzelm
parents: 79163
diff changeset
   763
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   764
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   765
(** proof construction **)
79113
5109e4b2a292 pro-forma support for optional zproof: no proper content yet;
wenzelm
parents: 79098
diff changeset
   766
79161
3f532c76d0ad tuned structure;
wenzelm
parents: 79160
diff changeset
   767
(* constants *)
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   768
79263
bf2e724ff57e clarified signature;
wenzelm
parents: 79261
diff changeset
   769
type zproof_const = zproof_name * zterm * ztyp ZTVars.table * zterm ZVars.table;
bf2e724ff57e clarified signature;
wenzelm
parents: 79261
diff changeset
   770
bf2e724ff57e clarified signature;
wenzelm
parents: 79261
diff changeset
   771
fun zproof_const a A : zproof_const =
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   772
  let
79154
e47db1e15a22 minor performance tuning;
wenzelm
parents: 79153
diff changeset
   773
    val instT =
79263
bf2e724ff57e clarified signature;
wenzelm
parents: 79261
diff changeset
   774
      ZTVars.build (A |> (fold_types o fold_tvars) (fn v => fn tab =>
79154
e47db1e15a22 minor performance tuning;
wenzelm
parents: 79153
diff changeset
   775
        if ZTVars.defined tab v then tab else ZTVars.update (v, ZTVar v) tab));
e47db1e15a22 minor performance tuning;
wenzelm
parents: 79153
diff changeset
   776
    val inst =
79263
bf2e724ff57e clarified signature;
wenzelm
parents: 79261
diff changeset
   777
      ZVars.build (A |> fold_aterms (fn t => fn tab =>
bf2e724ff57e clarified signature;
wenzelm
parents: 79261
diff changeset
   778
        (case t of
bf2e724ff57e clarified signature;
wenzelm
parents: 79261
diff changeset
   779
          ZVar v => if ZVars.defined tab v then tab else ZVars.update (v, t) tab
79154
e47db1e15a22 minor performance tuning;
wenzelm
parents: 79153
diff changeset
   780
        | _ => tab)));
79263
bf2e724ff57e clarified signature;
wenzelm
parents: 79261
diff changeset
   781
  in (a, A, instT, inst) end;
79126
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
   782
79315
wenzelm
parents: 79313
diff changeset
   783
fun make_const_proof (f, g) (a, A, instT, inst) =
79263
bf2e724ff57e clarified signature;
wenzelm
parents: 79261
diff changeset
   784
  let
79417
a4eae462f224 proper support for complex types, not just type variables (amending 623789141e39);
wenzelm
parents: 79416
diff changeset
   785
    val typ = subst_type_same (Same.function (fn ((x, _), _) => try f x));
79416
623789141e39 proper instantiation for make_const_proof, notably change of types for term variables;
wenzelm
parents: 79415
diff changeset
   786
    val term = Same.function (fn ZVar ((x, _), _) => try g x | _ => NONE);
623789141e39 proper instantiation for make_const_proof, notably change of types for term variables;
wenzelm
parents: 79415
diff changeset
   787
    val (instT', inst') = Same.commit (map_insts_same typ term) (instT, inst);
79263
bf2e724ff57e clarified signature;
wenzelm
parents: 79261
diff changeset
   788
  in ZConstp (a, A, instT', inst') end;
79161
3f532c76d0ad tuned structure;
wenzelm
parents: 79160
diff changeset
   789
3f532c76d0ad tuned structure;
wenzelm
parents: 79160
diff changeset
   790
79265
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   791
(* closed proof boxes *)
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   792
79311
e4a9a861856b omit pointless future: proof terms are built sequentially;
wenzelm
parents: 79303
diff changeset
   793
type zbox = serial * (zterm * zproof);
79279
d9a7ee1bd070 minor performance tuning: more concise union;
wenzelm
parents: 79277
diff changeset
   794
val zbox_ord: zbox ord = fn ((i, _), (j, _)) => int_ord (j, i);
79265
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   795
79279
d9a7ee1bd070 minor performance tuning: more concise union;
wenzelm
parents: 79277
diff changeset
   796
type zboxes = zbox Ord_List.T;
d9a7ee1bd070 minor performance tuning: more concise union;
wenzelm
parents: 79277
diff changeset
   797
val union_zboxes = Ord_List.union zbox_ord;
d9a7ee1bd070 minor performance tuning: more concise union;
wenzelm
parents: 79277
diff changeset
   798
val unions_zboxes = Ord_List.unions zbox_ord;
d9a7ee1bd070 minor performance tuning: more concise union;
wenzelm
parents: 79277
diff changeset
   799
val add_zboxes = Ord_List.insert zbox_ord;
79265
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   800
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   801
local
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   802
79419
93f26d333fb5 clarified box_proof: use sort constraints within the logic;
wenzelm
parents: 79418
diff changeset
   803
fun close_prop prems prop =
93f26d333fb5 clarified box_proof: use sort constraints within the logic;
wenzelm
parents: 79418
diff changeset
   804
  fold_rev (fn A => fn B => ZApp (ZApp (ZConst0 "Pure.imp", A), B)) prems prop;
79265
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   805
79428
4cd892d1a676 omit syntactic of_class check, which is in conflict with sort constraints within the logic;
wenzelm
parents: 79427
diff changeset
   806
fun close_proof prems prf =
79265
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   807
  let
79419
93f26d333fb5 clarified box_proof: use sort constraints within the logic;
wenzelm
parents: 79418
diff changeset
   808
    val m = length prems - 1;
93f26d333fb5 clarified box_proof: use sort constraints within the logic;
wenzelm
parents: 79418
diff changeset
   809
    val bounds = ZTerms.build (prems |> fold_index (fn (i, h) => ZTerms.update (h, m - i)));
93f26d333fb5 clarified box_proof: use sort constraints within the logic;
wenzelm
parents: 79418
diff changeset
   810
    fun get_bound lev t = ZTerms.lookup bounds t |> Option.map (fn i => ZBoundp (lev + i));
79265
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   811
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   812
    fun proof lev (ZHyp t) =
79419
93f26d333fb5 clarified box_proof: use sort constraints within the logic;
wenzelm
parents: 79418
diff changeset
   813
          (case get_bound lev t of
93f26d333fb5 clarified box_proof: use sort constraints within the logic;
wenzelm
parents: 79418
diff changeset
   814
            SOME p => p
79428
4cd892d1a676 omit syntactic of_class check, which is in conflict with sort constraints within the logic;
wenzelm
parents: 79427
diff changeset
   815
          | NONE => raise ZTERM ("Loose bound in proof term", [], [t], [prf]))
79419
93f26d333fb5 clarified box_proof: use sort constraints within the logic;
wenzelm
parents: 79418
diff changeset
   816
      | proof lev (ZClassp C) =
93f26d333fb5 clarified box_proof: use sort constraints within the logic;
wenzelm
parents: 79418
diff changeset
   817
          (case get_bound lev (ZClass C) of
93f26d333fb5 clarified box_proof: use sort constraints within the logic;
wenzelm
parents: 79418
diff changeset
   818
            SOME p => p
79428
4cd892d1a676 omit syntactic of_class check, which is in conflict with sort constraints within the logic;
wenzelm
parents: 79427
diff changeset
   819
          | NONE => raise Same.SAME)
79265
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   820
      | proof lev (ZAbst (x, T, p)) = ZAbst (x, T, proof lev p)
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   821
      | proof lev (ZAbsp (x, t, p)) = ZAbsp (x, t, proof (lev + 1) p)
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   822
      | proof lev (ZAppt (p, t)) = ZAppt (proof lev p, t)
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   823
      | proof lev (ZAppp (p, q)) =
79326
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
   824
          (ZAppp (proof lev p, Same.commit (proof lev) q)
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
   825
            handle Same.SAME => ZAppp (p, proof lev q))
79265
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   826
      | proof _ _ = raise Same.SAME;
79419
93f26d333fb5 clarified box_proof: use sort constraints within the logic;
wenzelm
parents: 79418
diff changeset
   827
  in ZAbsps prems (Same.commit (proof 0) prf) end;
79265
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   828
79429
637d7d896929 more zproofs, underlying Proofterm.unconstrain_thm_proof / Thm.unconstrainT;
wenzelm
parents: 79428
diff changeset
   829
fun box_proof {unconstrain} zproof_name thy hyps concl prf =
79265
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   830
  let
79428
4cd892d1a676 omit syntactic of_class check, which is in conflict with sort constraints within the logic;
wenzelm
parents: 79427
diff changeset
   831
    val {zterm, ...} = zterm_cache thy;
79419
93f26d333fb5 clarified box_proof: use sort constraints within the logic;
wenzelm
parents: 79418
diff changeset
   832
79473
e1b2595d678a clarified order: follow Thm.fold_terms;
wenzelm
parents: 79429
diff changeset
   833
    val present_set = Types.build (Types.add_atyps concl #> fold Types.add_atyps hyps);
79429
637d7d896929 more zproofs, underlying Proofterm.unconstrain_thm_proof / Thm.unconstrainT;
wenzelm
parents: 79428
diff changeset
   834
    val ucontext as {constraints, outer_constraints, ...} =
637d7d896929 more zproofs, underlying Proofterm.unconstrain_thm_proof / Thm.unconstrainT;
wenzelm
parents: 79428
diff changeset
   835
      Logic.unconstrain_context [] present_set;
79419
93f26d333fb5 clarified box_proof: use sort constraints within the logic;
wenzelm
parents: 79418
diff changeset
   836
93f26d333fb5 clarified box_proof: use sort constraints within the logic;
wenzelm
parents: 79418
diff changeset
   837
    val typ_operation = #typ_operation ucontext {strip_sorts = true};
93f26d333fb5 clarified box_proof: use sort constraints within the logic;
wenzelm
parents: 79418
diff changeset
   838
    val unconstrain_typ = Same.commit typ_operation;
93f26d333fb5 clarified box_proof: use sort constraints within the logic;
wenzelm
parents: 79418
diff changeset
   839
    val unconstrain_ztyp =
93f26d333fb5 clarified box_proof: use sort constraints within the logic;
wenzelm
parents: 79418
diff changeset
   840
      ZTypes.unsynchronized_cache (Same.function_eq (op =) (typ_of #> unconstrain_typ #> ztyp_of));
93f26d333fb5 clarified box_proof: use sort constraints within the logic;
wenzelm
parents: 79418
diff changeset
   841
    val unconstrain_zterm = zterm o Term.map_types typ_operation;
93f26d333fb5 clarified box_proof: use sort constraints within the logic;
wenzelm
parents: 79418
diff changeset
   842
    val unconstrain_proof = Same.commit (map_proof_types {hyps = true} unconstrain_ztyp);
79265
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   843
79419
93f26d333fb5 clarified box_proof: use sort constraints within the logic;
wenzelm
parents: 79418
diff changeset
   844
    val constrain_instT =
79429
637d7d896929 more zproofs, underlying Proofterm.unconstrain_thm_proof / Thm.unconstrainT;
wenzelm
parents: 79428
diff changeset
   845
      if unconstrain then ZTVars.empty
637d7d896929 more zproofs, underlying Proofterm.unconstrain_thm_proof / Thm.unconstrainT;
wenzelm
parents: 79428
diff changeset
   846
      else
637d7d896929 more zproofs, underlying Proofterm.unconstrain_thm_proof / Thm.unconstrainT;
wenzelm
parents: 79428
diff changeset
   847
        ZTVars.build (present_set |> Types.fold (fn (T, _) =>
637d7d896929 more zproofs, underlying Proofterm.unconstrain_thm_proof / Thm.unconstrainT;
wenzelm
parents: 79428
diff changeset
   848
          let
637d7d896929 more zproofs, underlying Proofterm.unconstrain_thm_proof / Thm.unconstrainT;
wenzelm
parents: 79428
diff changeset
   849
            val ZTVar v = ztyp_of (unconstrain_typ T) and U = ztyp_of T;
637d7d896929 more zproofs, underlying Proofterm.unconstrain_thm_proof / Thm.unconstrainT;
wenzelm
parents: 79428
diff changeset
   850
            val equal = (case U of ZTVar u => u = v | _ => false);
637d7d896929 more zproofs, underlying Proofterm.unconstrain_thm_proof / Thm.unconstrainT;
wenzelm
parents: 79428
diff changeset
   851
          in not equal ? ZTVars.add (v, U) end));
79419
93f26d333fb5 clarified box_proof: use sort constraints within the logic;
wenzelm
parents: 79418
diff changeset
   852
    val constrain_proof =
79426
b5ba5b767444 minor performance tuning;
wenzelm
parents: 79425
diff changeset
   853
      if ZTVars.is_empty constrain_instT then I
b5ba5b767444 minor performance tuning;
wenzelm
parents: 79425
diff changeset
   854
      else
b5ba5b767444 minor performance tuning;
wenzelm
parents: 79425
diff changeset
   855
        map_proof_types {hyps = true}
b5ba5b767444 minor performance tuning;
wenzelm
parents: 79425
diff changeset
   856
          (subst_type_same (Same.function (ZTVars.lookup constrain_instT)));
79419
93f26d333fb5 clarified box_proof: use sort constraints within the logic;
wenzelm
parents: 79418
diff changeset
   857
79429
637d7d896929 more zproofs, underlying Proofterm.unconstrain_thm_proof / Thm.unconstrainT;
wenzelm
parents: 79428
diff changeset
   858
    val hyps' = map unconstrain_zterm hyps;
637d7d896929 more zproofs, underlying Proofterm.unconstrain_thm_proof / Thm.unconstrainT;
wenzelm
parents: 79428
diff changeset
   859
    val prems = map (zterm o #2) constraints @ hyps';
79419
93f26d333fb5 clarified box_proof: use sort constraints within the logic;
wenzelm
parents: 79418
diff changeset
   860
    val prop' = beta_norm_term (close_prop prems (unconstrain_zterm concl));
79428
4cd892d1a676 omit syntactic of_class check, which is in conflict with sort constraints within the logic;
wenzelm
parents: 79427
diff changeset
   861
    val prf' = beta_norm_prooft (close_proof prems (unconstrain_proof prf));
79265
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   862
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   863
    val i = serial ();
79312
8db60cadad86 clarified signature;
wenzelm
parents: 79311
diff changeset
   864
    val zbox: zbox = (i, (prop', prf'));
79429
637d7d896929 more zproofs, underlying Proofterm.unconstrain_thm_proof / Thm.unconstrainT;
wenzelm
parents: 79428
diff changeset
   865
79419
93f26d333fb5 clarified box_proof: use sort constraints within the logic;
wenzelm
parents: 79418
diff changeset
   866
    val const = constrain_proof (ZConstp (zproof_const (zproof_name i) prop'));
79429
637d7d896929 more zproofs, underlying Proofterm.unconstrain_thm_proof / Thm.unconstrainT;
wenzelm
parents: 79428
diff changeset
   867
    val args1 =
637d7d896929 more zproofs, underlying Proofterm.unconstrain_thm_proof / Thm.unconstrainT;
wenzelm
parents: 79428
diff changeset
   868
      outer_constraints |> map (fn (T, c) =>
637d7d896929 more zproofs, underlying Proofterm.unconstrain_thm_proof / Thm.unconstrainT;
wenzelm
parents: 79428
diff changeset
   869
        ZClassp (ztyp_of (if unconstrain then unconstrain_typ T else T), c));
637d7d896929 more zproofs, underlying Proofterm.unconstrain_thm_proof / Thm.unconstrainT;
wenzelm
parents: 79428
diff changeset
   870
    val args2 = if unconstrain then map ZHyp hyps' else map (ZHyp o zterm) hyps;
637d7d896929 more zproofs, underlying Proofterm.unconstrain_thm_proof / Thm.unconstrainT;
wenzelm
parents: 79428
diff changeset
   871
  in (zbox, ZAppps (ZAppps (const, args1), args2)) end;
79312
8db60cadad86 clarified signature;
wenzelm
parents: 79311
diff changeset
   872
79313
3b03af5125de use strict Global_Theory.register_proofs as checkpoint for stored zproof, and thus reduce current zboxes;
wenzelm
parents: 79312
diff changeset
   873
in
3b03af5125de use strict Global_Theory.register_proofs as checkpoint for stored zproof, and thus reduce current zboxes;
wenzelm
parents: 79312
diff changeset
   874
79361
c28d4d1986f1 tuned signature;
wenzelm
parents: 79360
diff changeset
   875
fun thm_proof thy thm_name =
79329
992c494bda25 proper thm_name for stored zproof;
wenzelm
parents: 79326
diff changeset
   876
  let
992c494bda25 proper thm_name for stored zproof;
wenzelm
parents: 79326
diff changeset
   877
    val thy_name = Context.theory_long_name thy;
79361
c28d4d1986f1 tuned signature;
wenzelm
parents: 79360
diff changeset
   878
    fun zproof_name i = ZThm {theory_name = thy_name, thm_name = thm_name, serial = i};
79429
637d7d896929 more zproofs, underlying Proofterm.unconstrain_thm_proof / Thm.unconstrainT;
wenzelm
parents: 79428
diff changeset
   879
  in box_proof {unconstrain = false} zproof_name thy end;
79313
3b03af5125de use strict Global_Theory.register_proofs as checkpoint for stored zproof, and thus reduce current zboxes;
wenzelm
parents: 79312
diff changeset
   880
79429
637d7d896929 more zproofs, underlying Proofterm.unconstrain_thm_proof / Thm.unconstrainT;
wenzelm
parents: 79428
diff changeset
   881
fun add_box_proof unconstrain thy hyps concl prf zboxes =
79422
371ee5494d15 tuned signature: canonical argument order;
wenzelm
parents: 79421
diff changeset
   882
  let
79429
637d7d896929 more zproofs, underlying Proofterm.unconstrain_thm_proof / Thm.unconstrainT;
wenzelm
parents: 79428
diff changeset
   883
    val (zbox, prf') = box_proof unconstrain ZBox thy hyps concl prf;
79422
371ee5494d15 tuned signature: canonical argument order;
wenzelm
parents: 79421
diff changeset
   884
    val zboxes' = add_zboxes zbox zboxes;
371ee5494d15 tuned signature: canonical argument order;
wenzelm
parents: 79421
diff changeset
   885
  in (prf', zboxes') end;
79265
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   886
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   887
end;
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   888
3c194f50beef more zproofs;
wenzelm
parents: 79264
diff changeset
   889
79161
3f532c76d0ad tuned structure;
wenzelm
parents: 79160
diff changeset
   890
(* basic logic *)
3f532c76d0ad tuned structure;
wenzelm
parents: 79160
diff changeset
   891
79263
bf2e724ff57e clarified signature;
wenzelm
parents: 79261
diff changeset
   892
fun axiom_proof thy name A =
bf2e724ff57e clarified signature;
wenzelm
parents: 79261
diff changeset
   893
  ZConstp (zproof_const (ZAxiom name) (zterm_of thy A));
79161
3f532c76d0ad tuned structure;
wenzelm
parents: 79160
diff changeset
   894
79263
bf2e724ff57e clarified signature;
wenzelm
parents: 79261
diff changeset
   895
fun oracle_proof thy name A =
bf2e724ff57e clarified signature;
wenzelm
parents: 79261
diff changeset
   896
  ZConstp (zproof_const (ZOracle name) (zterm_of thy A));
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   897
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   898
fun assume_proof thy A =
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   899
  ZHyp (zterm_of thy A);
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   900
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   901
fun trivial_proof thy A =
79212
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
   902
  ZAbsp ("H", zterm_of thy A, ZBoundp 0);
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   903
79414
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
   904
fun implies_intr_proof' h prf =
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   905
  let
79277
7c415c73ebf7 tuned, following close_proof;
wenzelm
parents: 79276
diff changeset
   906
    fun proof lev (ZHyp t) = if aconv_zterm (h, t) then ZBoundp lev else raise Same.SAME
7c415c73ebf7 tuned, following close_proof;
wenzelm
parents: 79276
diff changeset
   907
      | proof lev (ZAbst (x, T, p)) = ZAbst (x, T, proof lev p)
7c415c73ebf7 tuned, following close_proof;
wenzelm
parents: 79276
diff changeset
   908
      | proof lev (ZAbsp (x, t, p)) = ZAbsp (x, t, proof (lev + 1) p)
7c415c73ebf7 tuned, following close_proof;
wenzelm
parents: 79276
diff changeset
   909
      | proof lev (ZAppt (p, t)) = ZAppt (proof lev p, t)
7c415c73ebf7 tuned, following close_proof;
wenzelm
parents: 79276
diff changeset
   910
      | proof lev (ZAppp (p, q)) =
79326
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
   911
          (ZAppp (proof lev p, Same.commit (proof lev) q)
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
   912
            handle Same.SAME => ZAppp (p, proof lev q))
79157
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   913
      | proof _ _ = raise Same.SAME;
79212
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
   914
  in ZAbsp ("H", h, Same.commit (proof 0) prf) end;
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   915
79414
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
   916
fun implies_intr_proof thy = implies_intr_proof' o zterm_of thy;
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
   917
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   918
fun forall_intr_proof thy T (a, x) prf =
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   919
  let
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   920
    val {ztyp, zterm} = zterm_cache thy;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   921
    val Z = ztyp T;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   922
    val z = zterm x;
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   923
79157
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   924
    fun term i b =
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   925
      if aconv_zterm (b, z) then ZBound i
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   926
      else
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   927
        (case b of
79157
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   928
          ZAbs (x, T, t) => ZAbs (x, T, term (i + 1) t)
79156
3b272da1d165 minor performance tuning;
wenzelm
parents: 79155
diff changeset
   929
        | ZApp (t, u) =>
79326
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
   930
            (ZApp (term i t, Same.commit (term i) u)
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
   931
              handle Same.SAME => ZApp (t, term i u))
79156
3b272da1d165 minor performance tuning;
wenzelm
parents: 79155
diff changeset
   932
        | _ => raise Same.SAME);
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   933
79157
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   934
    fun proof i (ZAbst (x, T, prf)) = ZAbst (x, T, proof (i + 1) prf)
79212
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
   935
      | proof i (ZAbsp (x, t, prf)) =
79326
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
   936
          (ZAbsp (x, term i t, Same.commit (proof i) prf)
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
   937
            handle Same.SAME => ZAbsp (x, t, proof i prf))
79157
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   938
      | proof i (ZAppt (p, t)) =
79326
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
   939
          (ZAppt (proof i p, Same.commit (term i) t)
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
   940
            handle Same.SAME => ZAppt (p, term i t))
79212
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
   941
      | proof i (ZAppp (p, q)) =
79326
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
   942
          (ZAppp (proof i p, Same.commit (proof i) q)
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
   943
            handle Same.SAME => ZAppp (p, proof i q))
79157
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   944
      | proof _ _ = raise Same.SAME;
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   945
79157
00962876301c tuned names;
wenzelm
parents: 79156
diff changeset
   946
  in ZAbst (a, Z, Same.commit (proof 0) prf) end;
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   947
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   948
fun forall_elim_proof thy t p = ZAppt (p, zterm_of thy t);
79119
cf29db6c95e1 more zterm operations;
wenzelm
parents: 79114
diff changeset
   949
79212
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
   950
fun of_class_proof (T, c) = ZClassp (ztyp_of T, c);
79128
b6f5d4392388 more zproofs;
wenzelm
parents: 79126
diff changeset
   951
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   952
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   953
(* equality *)
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   954
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   955
local
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   956
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   957
val thy0 =
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   958
  Context.the_global_context ()
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   959
  |> Sign.add_types_global [(Binding.name "fun", 2, NoSyn), (Binding.name "prop", 0, NoSyn)]
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   960
  |> Sign.local_path
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   961
  |> Sign.add_consts
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   962
   [(Binding.name "all", (Term.aT [] --> propT) --> propT, NoSyn),
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   963
    (Binding.name "imp", propT --> propT --> propT, NoSyn),
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   964
    (Binding.name "eq", Term.aT [] --> Term.aT [] --> propT, NoSyn)];
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   965
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   966
val [reflexive_axiom, symmetric_axiom, transitive_axiom, equal_intr_axiom, equal_elim_axiom,
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   967
  abstract_rule_axiom, combination_axiom] =
79263
bf2e724ff57e clarified signature;
wenzelm
parents: 79261
diff changeset
   968
    Theory.equality_axioms |> map (fn (b, t) =>
bf2e724ff57e clarified signature;
wenzelm
parents: 79261
diff changeset
   969
      let val ZConstp c = axiom_proof thy0 (Sign.full_name thy0 b) t in c end);
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   970
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   971
in
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   972
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   973
val is_reflexive_proof =
79212
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
   974
  fn ZConstp (ZAxiom "Pure.reflexive", _, _, _) => true | _ => false;
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   975
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   976
fun reflexive_proof thy T t =
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   977
  let
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   978
    val {ztyp, zterm} = zterm_cache thy;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   979
    val A = ztyp T;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   980
    val x = zterm t;
79263
bf2e724ff57e clarified signature;
wenzelm
parents: 79261
diff changeset
   981
  in make_const_proof (fn "'a" => A, fn "x" => x) reflexive_axiom end;
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   982
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   983
fun symmetric_proof thy T t u prf =
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   984
  if is_reflexive_proof prf then prf
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   985
  else
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   986
    let
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   987
      val {ztyp, zterm} = zterm_cache thy;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   988
      val A = ztyp T;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   989
      val x = zterm t;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   990
      val y = zterm u;
79263
bf2e724ff57e clarified signature;
wenzelm
parents: 79261
diff changeset
   991
      val ax = make_const_proof (fn "'a" => A, fn "x" => x | "y" => y) symmetric_axiom;
79212
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
   992
    in ZAppp (ax, prf) end;
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   993
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   994
fun transitive_proof thy T t u v prf1 prf2 =
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   995
  if is_reflexive_proof prf1 then prf2
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   996
  else if is_reflexive_proof prf2 then prf1
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   997
  else
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
   998
    let
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
   999
      val {ztyp, zterm} = zterm_cache thy;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
  1000
      val A = ztyp T;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
  1001
      val x = zterm t;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
  1002
      val y = zterm u;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
  1003
      val z = zterm v;
79263
bf2e724ff57e clarified signature;
wenzelm
parents: 79261
diff changeset
  1004
      val ax = make_const_proof (fn "'a" => A, fn "x" => x | "y" => y | "z" => z) transitive_axiom;
79212
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
  1005
    in ZAppp (ZAppp (ax, prf1), prf2) end;
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
  1006
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
  1007
fun equal_intr_proof thy t u prf1 prf2 =
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
  1008
  let
79160
wenzelm
parents: 79158
diff changeset
  1009
    val {zterm, ...} = zterm_cache thy;
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
  1010
    val A = zterm t;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
  1011
    val B = zterm u;
79263
bf2e724ff57e clarified signature;
wenzelm
parents: 79261
diff changeset
  1012
    val ax = make_const_proof (undefined, fn "A" => A | "B" => B) equal_intr_axiom;
79212
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
  1013
  in ZAppp (ZAppp (ax, prf1), prf2) end;
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
  1014
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
  1015
fun equal_elim_proof thy t u prf1 prf2 =
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
  1016
  let
79160
wenzelm
parents: 79158
diff changeset
  1017
    val {zterm, ...} = zterm_cache thy;
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
  1018
    val A = zterm t;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
  1019
    val B = zterm u;
79263
bf2e724ff57e clarified signature;
wenzelm
parents: 79261
diff changeset
  1020
    val ax = make_const_proof (undefined, fn "A" => A | "B" => B) equal_elim_axiom;
79212
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
  1021
  in ZAppp (ZAppp (ax, prf1), prf2) end;
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
  1022
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
  1023
fun abstract_rule_proof thy T U x t u prf =
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
  1024
  let
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
  1025
    val {ztyp, zterm} = zterm_cache thy;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
  1026
    val A = ztyp T;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
  1027
    val B = ztyp U;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
  1028
    val f = zterm t;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
  1029
    val g = zterm u;
79126
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
  1030
    val ax =
79263
bf2e724ff57e clarified signature;
wenzelm
parents: 79261
diff changeset
  1031
      make_const_proof (fn "'a" => A | "'b" => B, fn "f" => f | "g" => g)
79126
bdb33a2d4167 clarified const_proof vs. zproof_name;
wenzelm
parents: 79124
diff changeset
  1032
        abstract_rule_axiom;
79212
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
  1033
  in ZAppp (ax, forall_intr_proof thy T x prf) end;
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
  1034
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
  1035
fun combination_proof thy T U f g t u prf1 prf2 =
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
  1036
  let
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
  1037
    val {ztyp, zterm} = zterm_cache thy;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
  1038
    val A = ztyp T;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
  1039
    val B = ztyp U;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
  1040
    val f' = zterm f;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
  1041
    val g' = zterm g;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
  1042
    val x = zterm t;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
  1043
    val y = zterm u;
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
  1044
    val ax =
79263
bf2e724ff57e clarified signature;
wenzelm
parents: 79261
diff changeset
  1045
      make_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
  1046
        combination_axiom;
79212
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
  1047
  in ZAppp (ZAppp (ax, prf1), prf2) end;
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
  1048
79098
d8940e5bbb25 tight representation of types / terms / proof terms (presently unused);
wenzelm
parents:
diff changeset
  1049
end;
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
  1050
79133
cfe995369655 more zproofs;
wenzelm
parents: 79132
diff changeset
  1051
cfe995369655 more zproofs;
wenzelm
parents: 79132
diff changeset
  1052
(* substitution *)
cfe995369655 more zproofs;
wenzelm
parents: 79132
diff changeset
  1053
cfe995369655 more zproofs;
wenzelm
parents: 79132
diff changeset
  1054
fun generalize_proof (tfrees, frees) idx prf =
cfe995369655 more zproofs;
wenzelm
parents: 79132
diff changeset
  1055
  let
cfe995369655 more zproofs;
wenzelm
parents: 79132
diff changeset
  1056
    val typ =
79326
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
  1057
      if Names.is_empty tfrees then Same.same
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
  1058
      else
79163
9ddcaca41ed2 more operations;
wenzelm
parents: 79161
diff changeset
  1059
        ZTypes.unsynchronized_cache
9ddcaca41ed2 more operations;
wenzelm
parents: 79161
diff changeset
  1060
          (subst_type_same (fn ((a, i), S) =>
9ddcaca41ed2 more operations;
wenzelm
parents: 79161
diff changeset
  1061
            if i = ~1 andalso Names.defined tfrees a then ZTVar ((a, idx), S)
9ddcaca41ed2 more operations;
wenzelm
parents: 79161
diff changeset
  1062
            else raise Same.SAME));
79136
wenzelm
parents: 79135
diff changeset
  1063
    val term =
79147
bfe5c20074e4 proper substitution of types within term;
wenzelm
parents: 79146
diff changeset
  1064
      subst_term_same typ (fn ((x, i), T) =>
bfe5c20074e4 proper substitution of types within term;
wenzelm
parents: 79146
diff changeset
  1065
        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
  1066
        else raise Same.SAME);
79418
3a66bcb208b8 more operations (see also 8368160d3c65);
wenzelm
parents: 79417
diff changeset
  1067
  in map_proof {hyps = false} typ term prf end;
79133
cfe995369655 more zproofs;
wenzelm
parents: 79132
diff changeset
  1068
79149
810679c5ed3c more zproofs;
wenzelm
parents: 79148
diff changeset
  1069
fun instantiate_proof thy (Ts, ts) prf =
810679c5ed3c more zproofs;
wenzelm
parents: 79148
diff changeset
  1070
  let
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
  1071
    val {ztyp, zterm} = zterm_cache thy;
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
  1072
    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
  1073
    val inst = ZVars.build (ts |> fold (fn ((v, T), t) => ZVars.add ((v, ztyp T), zterm t)));
79270
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
  1074
    val typ = instantiate_type_same instT;
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
  1075
    val term = instantiate_term_same typ inst;
79418
3a66bcb208b8 more operations (see also 8368160d3c65);
wenzelm
parents: 79417
diff changeset
  1076
  in map_proof {hyps = false} typ term prf end;
79149
810679c5ed3c more zproofs;
wenzelm
parents: 79148
diff changeset
  1077
79135
db2dc7634d62 more zproofs;
wenzelm
parents: 79133
diff changeset
  1078
fun varifyT_proof names prf =
db2dc7634d62 more zproofs;
wenzelm
parents: 79133
diff changeset
  1079
  if null names then prf
db2dc7634d62 more zproofs;
wenzelm
parents: 79133
diff changeset
  1080
  else
db2dc7634d62 more zproofs;
wenzelm
parents: 79133
diff changeset
  1081
    let
db2dc7634d62 more zproofs;
wenzelm
parents: 79133
diff changeset
  1082
      val tab = ZTVars.build (names |> fold (fn ((a, S), b) => ZTVars.add (((a, ~1), S), b)));
79136
wenzelm
parents: 79135
diff changeset
  1083
      val typ =
79163
9ddcaca41ed2 more operations;
wenzelm
parents: 79161
diff changeset
  1084
        ZTypes.unsynchronized_cache (subst_type_same (fn v =>
79136
wenzelm
parents: 79135
diff changeset
  1085
          (case ZTVars.lookup tab v of
wenzelm
parents: 79135
diff changeset
  1086
            NONE => raise Same.SAME
79163
9ddcaca41ed2 more operations;
wenzelm
parents: 79161
diff changeset
  1087
          | SOME w => ZTVar w)));
79418
3a66bcb208b8 more operations (see also 8368160d3c65);
wenzelm
parents: 79417
diff changeset
  1088
    in map_proof_types {hyps = false} typ prf end;
79135
db2dc7634d62 more zproofs;
wenzelm
parents: 79133
diff changeset
  1089
79152
4189e10f1524 more zproofs;
wenzelm
parents: 79150
diff changeset
  1090
fun legacy_freezeT_proof t prf =
4189e10f1524 more zproofs;
wenzelm
parents: 79150
diff changeset
  1091
  (case Type.legacy_freezeT t of
4189e10f1524 more zproofs;
wenzelm
parents: 79150
diff changeset
  1092
    NONE => prf
4189e10f1524 more zproofs;
wenzelm
parents: 79150
diff changeset
  1093
  | SOME f =>
4189e10f1524 more zproofs;
wenzelm
parents: 79150
diff changeset
  1094
      let
4189e10f1524 more zproofs;
wenzelm
parents: 79150
diff changeset
  1095
        val tvar = ztyp_of o Same.function f;
79163
9ddcaca41ed2 more operations;
wenzelm
parents: 79161
diff changeset
  1096
        val typ = ZTypes.unsynchronized_cache (subst_type_same tvar);
79418
3a66bcb208b8 more operations (see also 8368160d3c65);
wenzelm
parents: 79417
diff changeset
  1097
      in map_proof_types {hyps = false} typ prf end);
79152
4189e10f1524 more zproofs;
wenzelm
parents: 79150
diff changeset
  1098
79155
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
  1099
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
  1100
(* permutations *)
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
  1101
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
  1102
fun rotate_proof thy Bs Bi' params asms m prf =
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
  1103
  let
79158
3c7ab17380a8 performance tuning: cache for ztyp_of within zterm_of;
wenzelm
parents: 79157
diff changeset
  1104
    val {ztyp, zterm} = zterm_cache thy;
79155
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
  1105
    val i = length asms;
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
  1106
    val j = length Bs;
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
  1107
  in
79212
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
  1108
    ZAbsps (map zterm Bs @ [zterm Bi']) (ZAppps (prf, map ZBoundp
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
  1109
      (j downto 1) @ [ZAbsts (map (apsnd ztyp) params) (ZAbsps (map zterm asms)
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
  1110
        (ZAppps (ZAppts (ZBoundp i, map ZBound ((length params - 1) downto 0)),
79326
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
  1111
          map ZBoundp (((i - m - 1) downto 0) @ ((i - 1) downto (i - m))))))]))
79155
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
  1112
  end;
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
  1113
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
  1114
fun permute_prems_proof thy prems' j k prf =
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
  1115
  let
79160
wenzelm
parents: 79158
diff changeset
  1116
    val {zterm, ...} = zterm_cache thy;
79155
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
  1117
    val n = length prems';
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
  1118
  in
79212
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
  1119
    ZAbsps (map zterm prems')
79326
8a2921053511 tuned whitespace;
wenzelm
parents: 79325
diff changeset
  1120
      (ZAppps (prf, map ZBoundp ((n - 1 downto n - j) @ (k - 1 downto 0) @ (n - j - 1 downto k))))
79155
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
  1121
  end;
53288743c2f0 more zproofs;
wenzelm
parents: 79154
diff changeset
  1122
79211
35ead2206eb1 more zproofs;
wenzelm
parents: 79210
diff changeset
  1123
79234
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1124
(* lifting *)
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1125
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1126
fun incr_tvar_same inc =
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1127
  if inc = 0 then Same.same
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1128
  else
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1129
    let fun tvar ((a, i), S) = if i >= 0 then ZTVar ((a, i + inc), S) else raise Same.SAME
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1130
    in ZTypes.unsynchronized_cache (subst_type_same tvar) end;
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1131
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1132
fun incr_indexes_proof inc prf =
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1133
  let
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1134
    val typ = incr_tvar_same inc;
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1135
    fun var ((x, i), T) = if i >= 0 then ZVar ((x, i + inc), T) else raise Same.SAME;
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1136
    val term = subst_term_same typ var;
79418
3a66bcb208b8 more operations (see also 8368160d3c65);
wenzelm
parents: 79417
diff changeset
  1137
  in map_proof {hyps = false} typ term prf end;
79234
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1138
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1139
fun lift_proof thy gprop inc prems prf =
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1140
  let
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1141
    val {ztyp, zterm} = zterm_cache thy;
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1142
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1143
    val typ = incr_tvar_same inc;
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1144
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1145
    fun term Ts lev =
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1146
      if null Ts andalso inc = 0 then Same.same
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1147
      else
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1148
        let
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1149
          val n = length Ts;
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1150
          fun incr lev (ZVar ((x, i), T)) =
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1151
                if i >= 0 then combound (ZVar ((x, i + inc), ZFuns (Ts, Same.commit typ T)), lev, n)
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1152
                else raise Same.SAME
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1153
            | incr _ (ZBound _) = raise Same.SAME
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1154
            | incr _ (ZConst0 _) = raise Same.SAME
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1155
            | incr _ (ZConst1 (c, T)) = ZConst1 (c, typ T)
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1156
            | incr _ (ZConst (c, Ts)) = ZConst (c, Same.map typ Ts)
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1157
            | incr lev (ZAbs (x, T, t)) =
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1158
                (ZAbs (x, typ T, Same.commit (incr (lev + 1)) t)
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1159
                  handle Same.SAME => ZAbs (x, T, incr (lev + 1) t))
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1160
            | incr lev (ZApp (t, u)) =
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1161
                (ZApp (incr lev t, Same.commit (incr lev) u)
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1162
                  handle Same.SAME => ZApp (t, incr lev u))
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1163
            | incr _ (ZClass (T, c)) = ZClass (typ T, c);
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1164
        in incr lev end;
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1165
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1166
    fun proof Ts lev (ZAbst (a, T, p)) =
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1167
          (ZAbst (a, typ T, Same.commit (proof Ts (lev + 1)) p)
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1168
            handle Same.SAME => ZAbst (a, T, proof Ts (lev + 1) p))
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1169
      | proof Ts lev (ZAbsp (a, t, p)) =
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1170
          (ZAbsp (a, term Ts lev t, Same.commit (proof Ts lev) p)
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1171
            handle Same.SAME => ZAbsp (a, t, proof Ts lev p))
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1172
      | proof Ts lev (ZAppt (p, t)) =
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1173
          (ZAppt (proof Ts lev p, Same.commit (term Ts lev) t)
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1174
            handle Same.SAME => ZAppt (p, term Ts lev t))
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1175
      | proof Ts lev (ZAppp (p, q)) =
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1176
          (ZAppp (proof Ts lev p, Same.commit (proof Ts lev) q)
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1177
            handle Same.SAME => ZAppp (p, proof Ts lev q))
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1178
      | proof Ts lev (ZConstp (a, A, instT, inst)) =
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1179
          let val (instT', insts') = map_insts_same typ (term Ts lev) (instT, inst)
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1180
          in ZConstp (a, A, instT', insts') end
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1181
      | proof _ _ (ZClassp (T, c)) = ZClassp (typ T, c)
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1182
      | proof _ _ _ = raise Same.SAME;
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1183
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1184
    val k = length prems;
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1185
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1186
    fun mk_app b (i, j, p) =
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1187
      if b then (i - 1, j, ZAppp (p, ZBoundp i)) else (i, j - 1, ZAppt (p, ZBound j));
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1188
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1189
    fun lift Ts bs i j (Const ("Pure.imp", _) $ A $ B) =
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1190
          ZAbsp ("H", Same.commit (term Ts 0) (zterm A), lift Ts (true :: bs) (i + 1) j B)
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1191
      | lift Ts bs i j (Const ("Pure.all", _) $ Abs (a, T, t)) =
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1192
          let val T' = ztyp T
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1193
          in ZAbst (a, T', lift (T' :: Ts) (false :: bs) i (j + 1) t) end
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1194
      | lift Ts bs i j _ =
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1195
          ZAppps (Same.commit (proof (rev Ts) 0) prf,
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1196
            map (fn k => (#3 (fold_rev mk_app bs (i - 1, j - 1, ZBoundp k)))) (i + k - 1 downto i));
79237
f97fe7ad62a7 proper ZTerm.lift_proof (amending 4a1a25bdf81d);
wenzelm
parents: 79234
diff changeset
  1197
  in ZAbsps (map zterm prems) (lift [] [] 0 0 gprop) end;
79234
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1198
4a1a25bdf81d more zproofs;
wenzelm
parents: 79226
diff changeset
  1199
79211
35ead2206eb1 more zproofs;
wenzelm
parents: 79210
diff changeset
  1200
(* higher-order resolution *)
35ead2206eb1 more zproofs;
wenzelm
parents: 79210
diff changeset
  1201
35ead2206eb1 more zproofs;
wenzelm
parents: 79210
diff changeset
  1202
fun mk_asm_prf C i m =
35ead2206eb1 more zproofs;
wenzelm
parents: 79210
diff changeset
  1203
  let
79212
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
  1204
    fun imp _ i 0 = ZBoundp i
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
  1205
      | imp (ZApp (ZApp (ZConst0 "Pure.imp", A), B)) i m = ZAbsp ("H", A, imp B (i + 1) (m - 1))
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
  1206
      | imp _ i _ = ZBoundp i;
79211
35ead2206eb1 more zproofs;
wenzelm
parents: 79210
diff changeset
  1207
    fun all (ZApp (ZConst1 ("Pure.all", _), ZAbs (a, T, t))) = ZAbst (a, T, all t)
35ead2206eb1 more zproofs;
wenzelm
parents: 79210
diff changeset
  1208
      | all t = imp t (~ i) m
35ead2206eb1 more zproofs;
wenzelm
parents: 79210
diff changeset
  1209
  in all C end;
35ead2206eb1 more zproofs;
wenzelm
parents: 79210
diff changeset
  1210
79270
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
  1211
fun assumption_proof thy envir Bs Bi n visible prf =
79211
35ead2206eb1 more zproofs;
wenzelm
parents: 79210
diff changeset
  1212
  let
35ead2206eb1 more zproofs;
wenzelm
parents: 79210
diff changeset
  1213
    val cache as {zterm, ...} = norm_cache thy;
35ead2206eb1 more zproofs;
wenzelm
parents: 79210
diff changeset
  1214
    val normt = zterm #> Same.commit (norm_term_same cache envir);
35ead2206eb1 more zproofs;
wenzelm
parents: 79210
diff changeset
  1215
  in
79212
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
  1216
    ZAbsps (map normt Bs)
601aa36071ba clarified signature;
wenzelm
parents: 79211
diff changeset
  1217
      (ZAppps (prf, map ZBoundp (length Bs - 1 downto 0) @ [mk_asm_prf (normt Bi) n ~1]))
79270
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
  1218
    |> norm_proof_cache cache envir visible
79211
35ead2206eb1 more zproofs;
wenzelm
parents: 79210
diff changeset
  1219
  end;
35ead2206eb1 more zproofs;
wenzelm
parents: 79210
diff changeset
  1220
79261
2e6fcc331f10 more zproofs;
wenzelm
parents: 79259
diff changeset
  1221
fun flatten_params_proof i j n (ZApp (ZApp (ZConst0 "Pure.imp", A), B), k) =
2e6fcc331f10 more zproofs;
wenzelm
parents: 79259
diff changeset
  1222
      ZAbsp ("H", A, flatten_params_proof (i + 1) j n (B, k))
2e6fcc331f10 more zproofs;
wenzelm
parents: 79259
diff changeset
  1223
  | flatten_params_proof i j n (ZApp (ZConst1 ("Pure.all", _), ZAbs (a, T, t)), k) =
2e6fcc331f10 more zproofs;
wenzelm
parents: 79259
diff changeset
  1224
      ZAbst (a, T, flatten_params_proof i (j + 1) n (t, k))
2e6fcc331f10 more zproofs;
wenzelm
parents: 79259
diff changeset
  1225
  | flatten_params_proof i j n (_, k) =
2e6fcc331f10 more zproofs;
wenzelm
parents: 79259
diff changeset
  1226
      ZAppps (ZAppts (ZBoundp (k + i),
2e6fcc331f10 more zproofs;
wenzelm
parents: 79259
diff changeset
  1227
        map ZBound (j - 1 downto 0)), map ZBoundp (remove (op =) (i - n) (i - 1 downto 0)));
2e6fcc331f10 more zproofs;
wenzelm
parents: 79259
diff changeset
  1228
79270
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
  1229
fun bicompose_proof thy env smax flatten Bs As A oldAs n m visible rprf sprf =
79261
2e6fcc331f10 more zproofs;
wenzelm
parents: 79259
diff changeset
  1230
  let
2e6fcc331f10 more zproofs;
wenzelm
parents: 79259
diff changeset
  1231
    val cache as {zterm, ...} = norm_cache thy;
2e6fcc331f10 more zproofs;
wenzelm
parents: 79259
diff changeset
  1232
    val normt = zterm #> Same.commit (norm_term_same cache env);
79270
90c5aadcc4b2 more robust norm_proof: turn env into instantiation, based on visible statement;
wenzelm
parents: 79269
diff changeset
  1233
    val normp = norm_proof_cache cache env visible;
79261
2e6fcc331f10 more zproofs;
wenzelm
parents: 79259
diff changeset
  1234
2e6fcc331f10 more zproofs;
wenzelm
parents: 79259
diff changeset
  1235
    val lb = length Bs;
2e6fcc331f10 more zproofs;
wenzelm
parents: 79259
diff changeset
  1236
    val la = length As;
2e6fcc331f10 more zproofs;
wenzelm
parents: 79259
diff changeset
  1237
2e6fcc331f10 more zproofs;
wenzelm
parents: 79259
diff changeset
  1238
    fun proof p q =
2e6fcc331f10 more zproofs;
wenzelm
parents: 79259
diff changeset
  1239
      ZAbsps (map normt (Bs @ As))
2e6fcc331f10 more zproofs;
wenzelm
parents: 79259
diff changeset
  1240
        (ZAppp (ZAppps (q, map ZBoundp (lb + la - 1 downto la)),
2e6fcc331f10 more zproofs;
wenzelm
parents: 79259
diff changeset
  1241
          ZAppps (p, (if n > 0 then [mk_asm_prf (normt (the A)) n m] else []) @
2e6fcc331f10 more zproofs;
wenzelm
parents: 79259
diff changeset
  1242
            map (if flatten then flatten_params_proof 0 0 n else ZBoundp o snd)
2e6fcc331f10 more zproofs;
wenzelm
parents: 79259
diff changeset
  1243
              (map normt oldAs ~~ (la - 1 downto 0)))));
2e6fcc331f10 more zproofs;
wenzelm
parents: 79259
diff changeset
  1244
  in
2e6fcc331f10 more zproofs;
wenzelm
parents: 79259
diff changeset
  1245
    if Envir.is_empty env then proof rprf sprf
2e6fcc331f10 more zproofs;
wenzelm
parents: 79259
diff changeset
  1246
    else proof (normp rprf) (if Envir.above env smax then sprf else normp sprf)
2e6fcc331f10 more zproofs;
wenzelm
parents: 79259
diff changeset
  1247
  end;
2e6fcc331f10 more zproofs;
wenzelm
parents: 79259
diff changeset
  1248
79405
f4fdf5eebcac pro-forma support for ZTerm.sorts_zproof;
wenzelm
parents: 79388
diff changeset
  1249
f4fdf5eebcac pro-forma support for ZTerm.sorts_zproof;
wenzelm
parents: 79388
diff changeset
  1250
(* sort constraints within the logic *)
f4fdf5eebcac pro-forma support for ZTerm.sorts_zproof;
wenzelm
parents: 79388
diff changeset
  1251
79425
0875c87b4a4b clarified signature;
wenzelm
parents: 79422
diff changeset
  1252
type sorts_proof = (class * class -> zproof) * (string * class list list * class -> zproof);
79405
f4fdf5eebcac pro-forma support for ZTerm.sorts_zproof;
wenzelm
parents: 79388
diff changeset
  1253
f4fdf5eebcac pro-forma support for ZTerm.sorts_zproof;
wenzelm
parents: 79388
diff changeset
  1254
fun of_sort_proof algebra (classrel_proof, arity_proof) hyps =
f4fdf5eebcac pro-forma support for ZTerm.sorts_zproof;
wenzelm
parents: 79388
diff changeset
  1255
  Sorts.of_sort_derivation algebra
f4fdf5eebcac pro-forma support for ZTerm.sorts_zproof;
wenzelm
parents: 79388
diff changeset
  1256
   {class_relation = fn _ => fn _ => fn (prf, c1) => fn c2 =>
f4fdf5eebcac pro-forma support for ZTerm.sorts_zproof;
wenzelm
parents: 79388
diff changeset
  1257
      if c1 = c2 then prf else ZAppp (classrel_proof (c1, c2), prf),
f4fdf5eebcac pro-forma support for ZTerm.sorts_zproof;
wenzelm
parents: 79388
diff changeset
  1258
    type_constructor = fn (a, _) => fn dom => fn c =>
f4fdf5eebcac pro-forma support for ZTerm.sorts_zproof;
wenzelm
parents: 79388
diff changeset
  1259
      let val Ss = map (map snd) dom and prfs = maps (map fst) dom
f4fdf5eebcac pro-forma support for ZTerm.sorts_zproof;
wenzelm
parents: 79388
diff changeset
  1260
      in ZAppps (arity_proof (a, Ss, c), prfs) end,
f4fdf5eebcac pro-forma support for ZTerm.sorts_zproof;
wenzelm
parents: 79388
diff changeset
  1261
    type_variable = fn typ => map (fn c => (hyps (typ, c), c)) (Type.sort_of_atyp typ)};
f4fdf5eebcac pro-forma support for ZTerm.sorts_zproof;
wenzelm
parents: 79388
diff changeset
  1262
79414
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
  1263
fun unconstrainT_proof thy sorts_proof (ucontext: Logic.unconstrain_context) =
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
  1264
  let
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
  1265
    val cache = norm_cache thy;
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
  1266
    val algebra = Sign.classes_of thy;
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
  1267
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
  1268
    val typ =
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
  1269
      ZTypes.unsynchronized_cache
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
  1270
        (typ_of #> #typ_operation ucontext {strip_sorts = true} #> ztyp_of);
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
  1271
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
  1272
    val typ_sort = #typ_operation ucontext {strip_sorts = false};
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
  1273
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
  1274
    fun hyps T =
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
  1275
      (case AList.lookup (op =) (#constraints ucontext) T of
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
  1276
        SOME t => ZHyp (#zterm cache t)
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
  1277
      | NONE => raise Fail "unconstrainT_proof: missing constraint");
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
  1278
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
  1279
    fun class (T, c) =
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
  1280
      let val T' = Same.commit typ_sort (#typ cache T)
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
  1281
      in the_single (of_sort_proof algebra sorts_proof hyps (T', [c])) end;
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
  1282
  in
79418
3a66bcb208b8 more operations (see also 8368160d3c65);
wenzelm
parents: 79417
diff changeset
  1283
    map_proof_types {hyps = false} typ #> map_class_proof class #> beta_norm_prooft
79414
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
  1284
    #> fold_rev (implies_intr_proof' o #zterm cache o #2) (#constraints ucontext)
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
  1285
  end;
6cacfbce33ba more operations;
wenzelm
parents: 79405
diff changeset
  1286
79124
89d4a8f52738 more zproofs;
wenzelm
parents: 79119
diff changeset
  1287
end;