src/Pure/Proof/extraction.ML
author haftmann
Fri, 13 Apr 2007 16:40:16 +0200
changeset 22662 3e492ba59355
parent 22596 d0d2af4db18f
child 22675 acf10be7dcca
permissions -rw-r--r--
canonical merge operations
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
     1
(*  Title:      Pure/Proof/extraction.ML
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
     2
    ID:         $Id$
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
     3
    Author:     Stefan Berghofer, TU Muenchen
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
     4
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
     5
Extraction of programs from proofs.
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
     6
*)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
     7
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
     8
signature EXTRACTION =
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
     9
sig
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
    10
  val set_preprocessor : (theory -> Proofterm.proof -> Proofterm.proof) -> theory -> theory
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    11
  val add_realizes_eqns_i : ((term * term) list * (term * term)) list -> theory -> theory
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    12
  val add_realizes_eqns : string list -> theory -> theory
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    13
  val add_typeof_eqns_i : ((term * term) list * (term * term)) list -> theory -> theory
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    14
  val add_typeof_eqns : string list -> theory -> theory
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    15
  val add_realizers_i : (string * (string list * term * Proofterm.proof)) list
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    16
    -> theory -> theory
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    17
  val add_realizers : (thm * (string list * string * string)) list
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    18
    -> theory -> theory
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    19
  val add_expand_thms : thm list -> theory -> theory
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
    20
  val add_types : (xstring * ((term -> term option) list *
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
    21
    (term -> typ -> term -> typ -> term) option)) list -> theory -> theory
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
    22
  val extract : (thm * string list) list -> theory -> theory
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    23
  val nullT : typ
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    24
  val nullt : term
13714
bdd483321f4b - exported functions etype_of and mk_typ
berghofe
parents: 13609
diff changeset
    25
  val mk_typ : typ -> term
bdd483321f4b - exported functions etype_of and mk_typ
berghofe
parents: 13609
diff changeset
    26
  val etype_of : theory -> string list -> typ list -> term -> typ
bdd483321f4b - exported functions etype_of and mk_typ
berghofe
parents: 13609
diff changeset
    27
  val realizes_of: theory -> string list -> term -> term -> term
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    28
end;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    29
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    30
structure Extraction : EXTRACTION =
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    31
struct
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    32
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    33
open Proofterm;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    34
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    35
(**** tools ****)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    36
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    37
fun add_syntax thy =
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    38
  thy
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    39
  |> Theory.copy
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    40
  |> Theory.root_path
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    41
  |> Theory.add_types [("Type", 0, NoSyn), ("Null", 0, NoSyn)]
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    42
  |> Theory.add_consts
14854
61bdf2ae4dc5 removed obsolete sort 'logic';
wenzelm
parents: 14472
diff changeset
    43
      [("typeof", "'b::{} => Type", NoSyn),
61bdf2ae4dc5 removed obsolete sort 'logic';
wenzelm
parents: 14472
diff changeset
    44
       ("Type", "'a::{} itself => Type", NoSyn),
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    45
       ("Null", "Null", NoSyn),
14854
61bdf2ae4dc5 removed obsolete sort 'logic';
wenzelm
parents: 14472
diff changeset
    46
       ("realizes", "'a::{} => 'b::{} => 'b", NoSyn)];
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    47
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    48
val nullT = Type ("Null", []);
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    49
val nullt = Const ("Null", nullT);
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    50
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    51
fun mk_typ T =
19391
4812d28c90a6 Term.itselfT;
wenzelm
parents: 19305
diff changeset
    52
  Const ("Type", Term.itselfT T --> Type ("Type", [])) $ Logic.mk_type T;
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    53
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    54
fun typeof_proc defaultS vs (Const ("typeof", _) $ u) =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
    55
      SOME (mk_typ (case strip_comb u of
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    56
          (Var ((a, i), _), _) =>
20664
ffbc5a57191a member (op =);
wenzelm
parents: 20548
diff changeset
    57
            if member (op =) vs a then TFree ("'" ^ a ^ ":" ^ string_of_int i, defaultS)
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    58
            else nullT
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    59
        | (Free (a, _), _) =>
20664
ffbc5a57191a member (op =);
wenzelm
parents: 20548
diff changeset
    60
            if member (op =) vs a then TFree ("'" ^ a, defaultS) else nullT
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    61
        | _ => nullT))
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
    62
  | typeof_proc _ _ _ = NONE;
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    63
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
    64
fun rlz_proc (Const ("realizes", Type (_, [Type ("Null", []), _])) $ r $ t) = SOME t
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
    65
  | rlz_proc (Const ("realizes", Type (_, [T, _])) $ r $ t) =
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
    66
      (case strip_comb t of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
    67
         (Var (ixn, U), ts) => SOME (list_comb (Var (ixn, T --> U), r :: ts))
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
    68
       | (Free (s, U), ts) => SOME (list_comb (Free (s, T --> U), r :: ts))
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
    69
       | _ => NONE)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
    70
  | rlz_proc _ = NONE;
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    71
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    72
val unpack_ixn = apfst implode o apsnd (fst o read_int o tl) o
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    73
  take_prefix (not o equal ":") o explode;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    74
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    75
type rules =
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    76
  {next: int, rs: ((term * term) list * (term * term)) list,
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    77
   net: (int * ((term * term) list * (term * term))) Net.net};
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    78
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    79
val empty_rules : rules = {next = 0, rs = [], net = Net.empty};
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    80
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    81
fun add_rule (r as (_, (lhs, _)), {next, rs, net} : rules) =
16800
90eff1b52428 improved Net interface;
wenzelm
parents: 16790
diff changeset
    82
  {next = next - 1, rs = r :: rs, net = Net.insert_term (K false)
18956
c050ae1f8f52 Envir.(beta_)eta_contract;
wenzelm
parents: 18928
diff changeset
    83
     (Envir.eta_contract lhs, (next, r)) net};
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    84
13417
12cc77f90811 Tuned type constraint of function merge_rules to make smlnj happy.
berghofe
parents: 13402
diff changeset
    85
fun merge_rules
12cc77f90811 Tuned type constraint of function merge_rules to make smlnj happy.
berghofe
parents: 13402
diff changeset
    86
  ({next, rs = rs1, net} : rules) ({next = next2, rs = rs2, ...} : rules) =
19305
5c16895d548b avoid polymorphic equality;
wenzelm
parents: 18956
diff changeset
    87
  foldr add_rule {next = next, rs = rs1, net = net} (subtract (op =) rs1 rs2);
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    88
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
    89
fun condrew thy rules procs =
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    90
  let
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    91
    fun rew tm =
17203
29b2563f5c11 refer to theory instead of low-level tsig;
wenzelm
parents: 17057
diff changeset
    92
      Pattern.rewrite_term thy [] (condrew' :: procs) tm
15399
683d83051d6a Added term cache to function condrew in order to speed up rewriting.
berghofe
parents: 14981
diff changeset
    93
    and condrew' tm =
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
    94
      let
15399
683d83051d6a Added term cache to function condrew in order to speed up rewriting.
berghofe
parents: 14981
diff changeset
    95
        val cache = ref ([] : (term * term) list);
17232
148c241d2492 some 'assoc' etc. refactoring
haftmann
parents: 17223
diff changeset
    96
        fun lookup f x = (case AList.lookup (op =) (!cache) x of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
    97
            NONE =>
15399
683d83051d6a Added term cache to function condrew in order to speed up rewriting.
berghofe
parents: 14981
diff changeset
    98
              let val y = f x
683d83051d6a Added term cache to function condrew in order to speed up rewriting.
berghofe
parents: 14981
diff changeset
    99
              in (cache := (x, y) :: !cache; y) end
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   100
          | SOME y => y);
15399
683d83051d6a Added term cache to function condrew in order to speed up rewriting.
berghofe
parents: 14981
diff changeset
   101
      in
683d83051d6a Added term cache to function condrew in order to speed up rewriting.
berghofe
parents: 14981
diff changeset
   102
        get_first (fn (_, (prems, (tm1, tm2))) =>
683d83051d6a Added term cache to function condrew in order to speed up rewriting.
berghofe
parents: 14981
diff changeset
   103
        let
19466
wenzelm
parents: 19391
diff changeset
   104
          fun ren t = the_default t (Term.rename_abs tm1 tm t);
15399
683d83051d6a Added term cache to function condrew in order to speed up rewriting.
berghofe
parents: 14981
diff changeset
   105
          val inc = Logic.incr_indexes ([], maxidx_of_term tm + 1);
18184
43c4589a9a78 tuned Pattern.match/unify;
wenzelm
parents: 17412
diff changeset
   106
          val env as (Tenv, tenv) = Pattern.match thy (inc tm1, tm) (Vartab.empty, Vartab.empty);
15798
016f3be5a5ec Adapted to new interface of instantiation and unification / matching functions.
berghofe
parents: 15574
diff changeset
   107
          val prems' = map (pairself (Envir.subst_vars env o inc o ren)) prems;
15399
683d83051d6a Added term cache to function condrew in order to speed up rewriting.
berghofe
parents: 14981
diff changeset
   108
          val env' = Envir.Envir
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   109
            {maxidx = Library.foldl Int.max
15399
683d83051d6a Added term cache to function condrew in order to speed up rewriting.
berghofe
parents: 14981
diff changeset
   110
              (~1, map (Int.max o pairself maxidx_of_term) prems'),
15798
016f3be5a5ec Adapted to new interface of instantiation and unification / matching functions.
berghofe
parents: 15574
diff changeset
   111
             iTs = Tenv, asol = tenv};
18184
43c4589a9a78 tuned Pattern.match/unify;
wenzelm
parents: 17412
diff changeset
   112
          val env'' = fold (Pattern.unify thy o pairself (lookup rew)) prems' env';
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   113
        in SOME (Envir.norm_term env'' (inc (ren tm2)))
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   114
        end handle Pattern.MATCH => NONE | Pattern.Unif => NONE)
16486
1a12cdb6ee6b get_thm(s): Name;
wenzelm
parents: 16458
diff changeset
   115
          (sort (int_ord o pairself fst)
18956
c050ae1f8f52 Envir.(beta_)eta_contract;
wenzelm
parents: 18928
diff changeset
   116
            (Net.match_term rules (Envir.eta_contract tm)))
15399
683d83051d6a Added term cache to function condrew in order to speed up rewriting.
berghofe
parents: 14981
diff changeset
   117
      end;
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   118
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   119
  in rew end;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   120
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   121
val chtype = change_type o SOME;
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   122
16195
wenzelm
parents: 16149
diff changeset
   123
fun extr_name s vs = NameSpace.append "extr" (space_implode "_" (s :: vs));
wenzelm
parents: 16149
diff changeset
   124
fun corr_name s vs = extr_name s vs ^ "_correctness";
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   125
16195
wenzelm
parents: 16149
diff changeset
   126
fun msg d s = priority (Symbol.spaces d ^ s);
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   127
16865
fb39dcfc1c24 tuned fold on terms;
wenzelm
parents: 16800
diff changeset
   128
fun vars_of t = rev (fold_aterms (fn v as Var _ => insert (op =) v | _ => I) t []);
16983
c895701d55ea replaced atless by term_ord;
wenzelm
parents: 16865
diff changeset
   129
fun vfs_of t = vars_of t @ sort Term.term_ord (term_frees t);
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   130
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   131
fun forall_intr (t, prop) =
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   132
  let val (a, T) = (case t of Var ((a, _), T) => (a, T) | Free p => p)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   133
  in all T $ Abs (a, T, abstract_over (t, prop)) end;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   134
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   135
fun forall_intr_prf (t, prf) =
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   136
  let val (a, T) = (case t of Var ((a, _), T) => (a, T) | Free p => p)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   137
  in Abst (a, SOME T, prf_abstract_over t prf) end;
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   138
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   139
val mkabs = foldr (fn (v, t) => Abs ("x", fastype_of v, abstract_over (v, t)));
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   140
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   141
fun strip_abs 0 t = t
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   142
  | strip_abs n (Abs (_, _, t)) = strip_abs (n-1) t
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   143
  | strip_abs _ _ = error "strip_abs: not an abstraction";
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   144
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   145
fun prf_subst_TVars tye =
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   146
  map_proof_terms (subst_TVars tye) (typ_subst_TVars tye);
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   147
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   148
fun relevant_vars types prop = foldr (fn
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   149
      (Var ((a, i), T), vs) => (case strip_type T of
20664
ffbc5a57191a member (op =);
wenzelm
parents: 20548
diff changeset
   150
        (_, Type (s, _)) => if member (op =) types s then a :: vs else vs
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   151
      | _ => vs)
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   152
    | (_, vs) => vs) [] (vars_of prop);
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   153
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   154
fun tname_of (Type (s, _)) = s
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   155
  | tname_of _ = "";
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   156
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   157
fun get_var_type t =
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   158
  let
16865
fb39dcfc1c24 tuned fold on terms;
wenzelm
parents: 16800
diff changeset
   159
    val vs = Term.add_vars t [];
fb39dcfc1c24 tuned fold on terms;
wenzelm
parents: 16800
diff changeset
   160
    val fs = Term.add_frees t [];
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   161
  in fn 
17232
148c241d2492 some 'assoc' etc. refactoring
haftmann
parents: 17223
diff changeset
   162
      Var (ixn, _) => (case AList.lookup (op =) vs ixn of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   163
          NONE => error "get_var_type: no such variable in term"
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   164
        | SOME T => Var (ixn, T))
17232
148c241d2492 some 'assoc' etc. refactoring
haftmann
parents: 17223
diff changeset
   165
    | Free (s, _) => (case AList.lookup (op =) fs s of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   166
          NONE => error "get_var_type: no such variable in term"
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   167
        | SOME T => Free (s, T))
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   168
    | _ => error "get_var_type: not a variable"
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   169
  end;
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   170
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   171
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   172
(**** theory data ****)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   173
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   174
(* data kind 'Pure/extraction' *)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   175
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   176
structure ExtractionData = TheoryDataFun
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   177
(struct
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   178
  val name = "Pure/extraction";
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   179
  type T =
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   180
    {realizes_eqns : rules,
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   181
     typeof_eqns : rules,
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   182
     types : (string * ((term -> term option) list *
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   183
       (term -> typ -> term -> typ -> term) option)) list,
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   184
     realizers : (string list * (term * proof)) list Symtab.table,
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   185
     defs : thm list,
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   186
     expand : (string * term) list,
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   187
     prep : (theory -> proof -> proof) option}
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   188
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   189
  val empty =
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   190
    {realizes_eqns = empty_rules,
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   191
     typeof_eqns = empty_rules,
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   192
     types = [],
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   193
     realizers = Symtab.empty,
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   194
     defs = [],
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   195
     expand = [],
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   196
     prep = NONE};
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   197
  val copy = I;
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   198
  val extend = I;
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   199
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   200
  fun merge _
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   201
    (({realizes_eqns = realizes_eqns1, typeof_eqns = typeof_eqns1, types = types1,
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   202
       realizers = realizers1, defs = defs1, expand = expand1, prep = prep1},
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   203
      {realizes_eqns = realizes_eqns2, typeof_eqns = typeof_eqns2, types = types2,
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   204
       realizers = realizers2, defs = defs2, expand = expand2, prep = prep2}) : T * T) =
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   205
    {realizes_eqns = merge_rules realizes_eqns1 realizes_eqns2,
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   206
     typeof_eqns = merge_rules typeof_eqns1 typeof_eqns2,
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   207
     types = merge_alists types1 types2,
19305
5c16895d548b avoid polymorphic equality;
wenzelm
parents: 18956
diff changeset
   208
     realizers = Symtab.merge_list (gen_eq_set (op =) o pairself #1) (realizers1, realizers2),
22662
3e492ba59355 canonical merge operations
haftmann
parents: 22596
diff changeset
   209
     defs = Library.merge Thm.eq_thm (defs1, defs2),
3e492ba59355 canonical merge operations
haftmann
parents: 22596
diff changeset
   210
     expand = Library.merge (op =) (expand1, expand2),
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   211
     prep = (case prep1 of NONE => prep2 | _ => prep1)};
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   212
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   213
  fun print _ _ = ();
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   214
end);
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   215
18708
4b3dadb4fe33 setup: theory -> theory;
wenzelm
parents: 18358
diff changeset
   216
val _ = Context.add_setup ExtractionData.init;
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   217
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   218
fun read_condeq thy =
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   219
  let val thy' = add_syntax thy
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   220
  in fn s =>
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   221
    let val t = Logic.varify (term_of (read_cterm thy' (s, propT)))
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   222
    in (map Logic.dest_equals (Logic.strip_imp_prems t),
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   223
      Logic.dest_equals (Logic.strip_imp_concl t))
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   224
    end handle TERM _ => error ("Not a (conditional) meta equality:\n" ^ s)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   225
  end;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   226
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   227
(** preprocessor **)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   228
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   229
fun set_preprocessor prep thy =
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   230
  let val {realizes_eqns, typeof_eqns, types, realizers,
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   231
    defs, expand, ...} = ExtractionData.get thy
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   232
  in
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   233
    ExtractionData.put
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   234
      {realizes_eqns = realizes_eqns, typeof_eqns = typeof_eqns, types = types,
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   235
       realizers = realizers, defs = defs, expand = expand, prep = SOME prep} thy
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   236
  end;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   237
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   238
(** equations characterizing realizability **)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   239
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   240
fun gen_add_realizes_eqns prep_eq eqns thy =
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   241
  let val {realizes_eqns, typeof_eqns, types, realizers,
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   242
    defs, expand, prep} = ExtractionData.get thy;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   243
  in
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   244
    ExtractionData.put
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   245
      {realizes_eqns = foldr add_rule realizes_eqns (map (prep_eq thy) eqns),
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   246
       typeof_eqns = typeof_eqns, types = types, realizers = realizers,
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   247
       defs = defs, expand = expand, prep = prep} thy
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   248
  end
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   249
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   250
val add_realizes_eqns_i = gen_add_realizes_eqns (K I);
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   251
val add_realizes_eqns = gen_add_realizes_eqns read_condeq;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   252
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   253
(** equations characterizing type of extracted program **)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   254
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   255
fun gen_add_typeof_eqns prep_eq eqns thy =
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   256
  let
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   257
    val {realizes_eqns, typeof_eqns, types, realizers,
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   258
      defs, expand, prep} = ExtractionData.get thy;
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   259
    val eqns' = map (prep_eq thy) eqns
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   260
  in
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   261
    ExtractionData.put
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   262
      {realizes_eqns = realizes_eqns, realizers = realizers,
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   263
       typeof_eqns = foldr add_rule typeof_eqns eqns',
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   264
       types = types, defs = defs, expand = expand, prep = prep} thy
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   265
  end
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   266
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   267
val add_typeof_eqns_i = gen_add_typeof_eqns (K I);
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   268
val add_typeof_eqns = gen_add_typeof_eqns read_condeq;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   269
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   270
fun thaw (T as TFree (a, S)) =
16195
wenzelm
parents: 16149
diff changeset
   271
      if exists_string (equal ":") a then TVar (unpack_ixn a, S) else T
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   272
  | thaw (Type (a, Ts)) = Type (a, map thaw Ts)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   273
  | thaw T = T;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   274
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   275
fun freeze (TVar ((a, i), S)) = TFree (a ^ ":" ^ string_of_int i, S)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   276
  | freeze (Type (a, Ts)) = Type (a, map freeze Ts)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   277
  | freeze T = T;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   278
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   279
fun freeze_thaw f x =
20548
8ef25fe585a8 renamed Term.map_term_types to Term.map_types (cf. Term.fold_types);
wenzelm
parents: 19482
diff changeset
   280
  map_types thaw (f (map_types freeze x));
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   281
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   282
fun etype_of thy vs Ts t =
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   283
  let
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   284
    val {typeof_eqns, ...} = ExtractionData.get thy;
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   285
    fun err () = error ("Unable to determine type of extracted program for\n" ^
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   286
      Sign.string_of_term thy t)
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   287
  in case strip_abs_body (freeze_thaw (condrew thy (#net typeof_eqns)
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   288
    [typeof_proc (Sign.defaultS thy) vs]) (list_abs (map (pair "x") (rev Ts),
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   289
      Const ("typeof", fastype_of1 (Ts, t) --> Type ("Type", [])) $ t))) of
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   290
      Const ("Type", _) $ u => (Logic.dest_type u handle TERM _ => err ())
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   291
    | _ => err ()
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   292
  end;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   293
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   294
(** realizers for axioms / theorems, together with correctness proofs **)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   295
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   296
fun gen_add_realizers prep_rlz rs thy =
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   297
  let val {realizes_eqns, typeof_eqns, types, realizers,
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   298
    defs, expand, prep} = ExtractionData.get thy
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   299
  in
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   300
    ExtractionData.put
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   301
      {realizes_eqns = realizes_eqns, typeof_eqns = typeof_eqns, types = types,
18956
c050ae1f8f52 Envir.(beta_)eta_contract;
wenzelm
parents: 18928
diff changeset
   302
       realizers = fold (Symtab.update_list o prep_rlz thy) rs realizers,
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   303
       defs = defs, expand = expand, prep = prep} thy
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   304
  end
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   305
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   306
fun prep_realizer thy =
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   307
  let
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   308
    val {realizes_eqns, typeof_eqns, defs, types, ...} =
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   309
      ExtractionData.get thy;
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19466
diff changeset
   310
    val procs = maps (fst o snd) types;
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   311
    val rtypes = map fst types;
16800
90eff1b52428 improved Net interface;
wenzelm
parents: 16790
diff changeset
   312
    val eqns = Net.merge (K false) (#net realizes_eqns, #net typeof_eqns);
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   313
    val thy' = add_syntax thy;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   314
    val rd = ProofSyntax.read_proof thy' false
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   315
  in fn (thm, (vs, s1, s2)) =>
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   316
    let
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20897
diff changeset
   317
      val name = Thm.get_name thm;
21858
05f57309170c avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents: 21646
diff changeset
   318
      val _ = name <> "" orelse error "add_realizers: unnamed theorem";
17203
29b2563f5c11 refer to theory instead of low-level tsig;
wenzelm
parents: 17057
diff changeset
   319
      val prop = Pattern.rewrite_term thy'
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   320
        (map (Logic.dest_equals o prop_of) defs) [] (prop_of thm);
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   321
      val vars = vars_of prop;
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   322
      val vars' = filter_out (fn v =>
20664
ffbc5a57191a member (op =);
wenzelm
parents: 20548
diff changeset
   323
        member (op =) rtypes (tname_of (body_type (fastype_of v)))) vars;
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   324
      val T = etype_of thy' vs [] prop;
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   325
      val (T', thw) = Type.freeze_thaw_type
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   326
        (if T = nullT then nullT else map fastype_of vars' ---> T);
20548
8ef25fe585a8 renamed Term.map_term_types to Term.map_types (cf. Term.fold_types);
wenzelm
parents: 19482
diff changeset
   327
      val t = map_types thw (term_of (read_cterm thy' (s1, T')));
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   328
      val r' = freeze_thaw (condrew thy' eqns
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   329
        (procs @ [typeof_proc (Sign.defaultS thy') vs, rlz_proc]))
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   330
          (Const ("realizes", T --> propT --> propT) $
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   331
            (if T = nullT then t else list_comb (t, vars')) $ prop);
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   332
      val r = foldr forall_intr r' (map (get_var_type r') vars);
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   333
      val prf = Reconstruct.reconstruct_proof thy' r (rd s2);
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   334
    in (name, (vs, (t, prf))) end
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   335
  end;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   336
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   337
val add_realizers_i = gen_add_realizers
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   338
  (fn _ => fn (name, (vs, t, prf)) => (name, (vs, (t, prf))));
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   339
val add_realizers = gen_add_realizers prep_realizer;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   340
13714
bdd483321f4b - exported functions etype_of and mk_typ
berghofe
parents: 13609
diff changeset
   341
fun realizes_of thy vs t prop =
bdd483321f4b - exported functions etype_of and mk_typ
berghofe
parents: 13609
diff changeset
   342
  let
bdd483321f4b - exported functions etype_of and mk_typ
berghofe
parents: 13609
diff changeset
   343
    val thy' = add_syntax thy;
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   344
    val {realizes_eqns, typeof_eqns, defs, types, ...} =
13714
bdd483321f4b - exported functions etype_of and mk_typ
berghofe
parents: 13609
diff changeset
   345
      ExtractionData.get thy';
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19466
diff changeset
   346
    val procs = maps (fst o snd) types;
16800
90eff1b52428 improved Net interface;
wenzelm
parents: 16790
diff changeset
   347
    val eqns = Net.merge (K false) (#net realizes_eqns, #net typeof_eqns);
17203
29b2563f5c11 refer to theory instead of low-level tsig;
wenzelm
parents: 17057
diff changeset
   348
    val prop' = Pattern.rewrite_term thy'
13714
bdd483321f4b - exported functions etype_of and mk_typ
berghofe
parents: 13609
diff changeset
   349
      (map (Logic.dest_equals o prop_of) defs) [] prop;
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   350
  in freeze_thaw (condrew thy' eqns
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   351
    (procs @ [typeof_proc (Sign.defaultS thy') vs, rlz_proc]))
13714
bdd483321f4b - exported functions etype_of and mk_typ
berghofe
parents: 13609
diff changeset
   352
      (Const ("realizes", fastype_of t --> propT --> propT) $ t $ prop')
bdd483321f4b - exported functions etype_of and mk_typ
berghofe
parents: 13609
diff changeset
   353
  end;
bdd483321f4b - exported functions etype_of and mk_typ
berghofe
parents: 13609
diff changeset
   354
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   355
(** expanding theorems / definitions **)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   356
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   357
fun add_expand_thm thm thy =
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   358
  let
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   359
    val {realizes_eqns, typeof_eqns, types, realizers,
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   360
      defs, expand, prep} = ExtractionData.get thy;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   361
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20897
diff changeset
   362
    val name = Thm.get_name thm;
21858
05f57309170c avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents: 21646
diff changeset
   363
    val _ = name <> "" orelse error "add_expand_thms: unnamed theorem";
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   364
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   365
    val is_def =
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   366
      (case strip_comb (fst (Logic.dest_equals (prop_of thm))) of
18928
042608ffa2ec subsituted gen_duplicates / has_duplicates for duplicates whenever appropriate
haftmann
parents: 18921
diff changeset
   367
         (Const _, ts) => forall is_Var ts andalso not (has_duplicates (op =) ts)
16349
40c5a4d0b3cc can (Thm.get_axiom_i thy) name;
wenzelm
parents: 16287
diff changeset
   368
           andalso can (Thm.get_axiom_i thy) name
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   369
       | _ => false) handle TERM _ => false;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   370
  in
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   371
    (ExtractionData.put (if is_def then
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   372
        {realizes_eqns = realizes_eqns,
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   373
         typeof_eqns = add_rule (([],
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   374
           Logic.dest_equals (prop_of (Drule.abs_def thm))), typeof_eqns),
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   375
         types = types,
22360
26ead7ed4f4b moved eq_thm etc. to structure Thm in Pure/more_thm.ML;
wenzelm
parents: 21858
diff changeset
   376
         realizers = realizers, defs = insert Thm.eq_thm thm defs,
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   377
         expand = expand, prep = prep}
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   378
      else
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   379
        {realizes_eqns = realizes_eqns, typeof_eqns = typeof_eqns, types = types,
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   380
         realizers = realizers, defs = defs,
20854
f9cf9e62d11c insert replacing ins ins_int ins_string
haftmann
parents: 20664
diff changeset
   381
         expand = insert (op =) (name, prop_of thm) expand, prep = prep}) thy)
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   382
  end;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   383
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   384
val add_expand_thms = fold add_expand_thm;
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   385
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   386
val extraction_expand =
20897
3f8d2834b2c4 attribute: Context.mapping;
wenzelm
parents: 20854
diff changeset
   387
  Attrib.no_args (Thm.declaration_attribute (fn th => Context.mapping (add_expand_thm th) I));
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   388
15801
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   389
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   390
(** types with computational content **)
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   391
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   392
fun add_types tys thy =
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   393
  let val {realizes_eqns, typeof_eqns, types, realizers,
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   394
    defs, expand, prep} = ExtractionData.get thy;
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   395
  in
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   396
    ExtractionData.put
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   397
      {realizes_eqns = realizes_eqns, typeof_eqns = typeof_eqns,
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   398
       types = map (apfst (Sign.intern_type thy)) tys @ types,
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   399
       realizers = realizers, defs = defs, expand = expand, prep = prep} thy
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   400
  end;
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   401
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   402
15801
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   403
(** Pure setup **)
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   404
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   405
val _ = Context.add_setup
18708
4b3dadb4fe33 setup: theory -> theory;
wenzelm
parents: 18358
diff changeset
   406
  (add_types [("prop", ([], NONE))] #>
15801
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   407
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   408
   add_typeof_eqns
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   409
     ["(typeof (PROP P)) == (Type (TYPE(Null))) ==>  \
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   410
    \  (typeof (PROP Q)) == (Type (TYPE('Q))) ==>  \
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   411
    \    (typeof (PROP P ==> PROP Q)) == (Type (TYPE('Q)))",
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   412
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   413
      "(typeof (PROP Q)) == (Type (TYPE(Null))) ==>  \
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   414
    \    (typeof (PROP P ==> PROP Q)) == (Type (TYPE(Null)))",
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   415
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   416
      "(typeof (PROP P)) == (Type (TYPE('P))) ==>  \
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   417
    \  (typeof (PROP Q)) == (Type (TYPE('Q))) ==>  \
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   418
    \    (typeof (PROP P ==> PROP Q)) == (Type (TYPE('P => 'Q)))",
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   419
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   420
      "(%x. typeof (PROP P (x))) == (%x. Type (TYPE(Null))) ==>  \
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   421
    \    (typeof (!!x. PROP P (x))) == (Type (TYPE(Null)))",
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   422
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   423
      "(%x. typeof (PROP P (x))) == (%x. Type (TYPE('P))) ==>  \
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   424
    \    (typeof (!!x::'a. PROP P (x))) == (Type (TYPE('a => 'P)))",
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   425
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   426
      "(%x. typeof (f (x))) == (%x. Type (TYPE('f))) ==>  \
18708
4b3dadb4fe33 setup: theory -> theory;
wenzelm
parents: 18358
diff changeset
   427
    \    (typeof (f)) == (Type (TYPE('f)))"] #>
15801
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   428
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   429
   add_realizes_eqns
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   430
     ["(typeof (PROP P)) == (Type (TYPE(Null))) ==>  \
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   431
    \    (realizes (r) (PROP P ==> PROP Q)) ==  \
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   432
    \    (PROP realizes (Null) (PROP P) ==> PROP realizes (r) (PROP Q))",
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   433
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   434
      "(typeof (PROP P)) == (Type (TYPE('P))) ==>  \
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   435
    \  (typeof (PROP Q)) == (Type (TYPE(Null))) ==>  \
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   436
    \    (realizes (r) (PROP P ==> PROP Q)) ==  \
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   437
    \    (!!x::'P. PROP realizes (x) (PROP P) ==> PROP realizes (Null) (PROP Q))",
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   438
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   439
      "(realizes (r) (PROP P ==> PROP Q)) ==  \
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   440
    \  (!!x. PROP realizes (x) (PROP P) ==> PROP realizes (r (x)) (PROP Q))",
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   441
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   442
      "(%x. typeof (PROP P (x))) == (%x. Type (TYPE(Null))) ==>  \
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   443
    \    (realizes (r) (!!x. PROP P (x))) ==  \
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   444
    \    (!!x. PROP realizes (Null) (PROP P (x)))",
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   445
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   446
      "(realizes (r) (!!x. PROP P (x))) ==  \
18708
4b3dadb4fe33 setup: theory -> theory;
wenzelm
parents: 18358
diff changeset
   447
    \  (!!x. PROP realizes (r (x)) (PROP P (x)))"] #>
15801
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   448
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   449
   Attrib.add_attributes
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   450
     [("extraction_expand", extraction_expand,
18708
4b3dadb4fe33 setup: theory -> theory;
wenzelm
parents: 18358
diff changeset
   451
       "specify theorems / definitions to be expanded during extraction")]);
15801
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   452
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   453
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   454
(**** extract program ****)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   455
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   456
val dummyt = Const ("dummy", dummyT);
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   457
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   458
fun extract thms thy =
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   459
  let
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   460
    val thy' = add_syntax thy;
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   461
    val {realizes_eqns, typeof_eqns, types, realizers, defs, expand, prep} =
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   462
      ExtractionData.get thy;
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19466
diff changeset
   463
    val procs = maps (fst o snd) types;
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   464
    val rtypes = map fst types;
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   465
    val typroc = typeof_proc (Sign.defaultS thy');
19466
wenzelm
parents: 19391
diff changeset
   466
    val prep = the_default (K I) prep thy' o ProofRewriteRules.elim_defs thy' false defs o
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   467
      Reconstruct.expand_proof thy' (("", NONE) :: map (apsnd SOME) expand);
16800
90eff1b52428 improved Net interface;
wenzelm
parents: 16790
diff changeset
   468
    val rrews = Net.merge (K false) (#net realizes_eqns, #net typeof_eqns);
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   469
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   470
    fun find_inst prop Ts ts vs =
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   471
      let
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   472
        val rvs = relevant_vars rtypes prop;
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   473
        val vars = vars_of prop;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   474
        val n = Int.min (length vars, length ts);
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   475
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   476
        fun add_args ((Var ((a, i), _), t), (vs', tye)) =
20664
ffbc5a57191a member (op =);
wenzelm
parents: 20548
diff changeset
   477
          if member (op =) rvs a then
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   478
            let val T = etype_of thy' vs Ts t
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   479
            in if T = nullT then (vs', tye)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   480
               else (a :: vs', (("'" ^ a, i), T) :: tye)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   481
            end
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   482
          else (vs', tye)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   483
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   484
      in foldr add_args ([], []) (Library.take (n, vars) ~~ Library.take (n, ts)) end;
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   485
20664
ffbc5a57191a member (op =);
wenzelm
parents: 20548
diff changeset
   486
    fun find (vs: string list) = Option.map snd o find_first (curry (gen_eq_set (op =)) vs o fst);
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   487
    fun find' s = map snd o List.filter (equal s o fst)
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   488
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   489
    fun app_rlz_rews Ts vs t = strip_abs (length Ts) (freeze_thaw
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   490
      (condrew thy' rrews (procs @ [typroc vs, rlz_proc])) (list_abs
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   491
        (map (pair "x") (rev Ts), t)));
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   492
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   493
    fun realizes_null vs prop = app_rlz_rews [] vs
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   494
      (Const ("realizes", nullT --> propT --> propT) $ nullt $ prop);
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   495
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   496
    fun corr d defs vs ts Ts hs (PBound i) _ _ = (defs, PBound i)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   497
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   498
      | corr d defs vs ts Ts hs (Abst (s, SOME T, prf)) (Abst (_, _, prf')) t =
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   499
          let val (defs', corr_prf) = corr d defs vs [] (T :: Ts)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   500
            (dummyt :: hs) prf (incr_pboundvars 1 0 prf')
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   501
            (case t of SOME (Abs (_, _, u)) => SOME u | _ => NONE)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   502
          in (defs', Abst (s, SOME T, corr_prf)) end
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   503
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   504
      | corr d defs vs ts Ts hs (AbsP (s, SOME prop, prf)) (AbsP (_, _, prf')) t =
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   505
          let
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   506
            val T = etype_of thy' vs Ts prop;
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   507
            val u = if T = nullT then 
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   508
                (case t of SOME u => SOME (incr_boundvars 1 u) | NONE => NONE)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   509
              else (case t of SOME (Abs (_, _, u)) => SOME u | _ => NONE);
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   510
            val (defs', corr_prf) = corr d defs vs [] (T :: Ts) (prop :: hs)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   511
              (incr_pboundvars 0 1 prf) (incr_pboundvars 0 1 prf') u;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   512
            val rlz = Const ("realizes", T --> propT --> propT)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   513
          in (defs',
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   514
            if T = nullT then AbsP ("R",
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   515
              SOME (app_rlz_rews Ts vs (rlz $ nullt $ prop)),
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   516
                prf_subst_bounds [nullt] corr_prf)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   517
            else Abst (s, SOME T, AbsP ("R",
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   518
              SOME (app_rlz_rews (T :: Ts) vs
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   519
                (rlz $ Bound 0 $ incr_boundvars 1 prop)), corr_prf)))
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   520
          end
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   521
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   522
      | corr d defs vs ts Ts hs (prf % SOME t) (prf' % _) t' =
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   523
          let
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   524
            val (Us, T) = strip_type (fastype_of1 (Ts, t));
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   525
            val (defs', corr_prf) = corr d defs vs (t :: ts) Ts hs prf prf'
20664
ffbc5a57191a member (op =);
wenzelm
parents: 20548
diff changeset
   526
              (if member (op =) rtypes (tname_of T) then t'
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   527
               else (case t' of SOME (u $ _) => SOME u | _ => NONE));
20664
ffbc5a57191a member (op =);
wenzelm
parents: 20548
diff changeset
   528
            val u = if not (member (op =) rtypes (tname_of T)) then t else
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   529
              let
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   530
                val eT = etype_of thy' vs Ts t;
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   531
                val (r, Us') = if eT = nullT then (nullt, Us) else
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   532
                  (Bound (length Us), eT :: Us);
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   533
                val u = list_comb (incr_boundvars (length Us') t,
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   534
                  map Bound (length Us - 1 downto 0));
17271
2756a73f63a5 introduced some new-style AList operations
haftmann
parents: 17232
diff changeset
   535
                val u' = (case AList.lookup (op =) types (tname_of T) of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   536
                    SOME ((_, SOME f)) => f r eT u T
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   537
                  | _ => Const ("realizes", eT --> T --> T) $ r $ u)
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   538
              in app_rlz_rews Ts vs (list_abs (map (pair "x") Us', u')) end
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   539
          in (defs', corr_prf % SOME u) end
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   540
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   541
      | corr d defs vs ts Ts hs (prf1 %% prf2) (prf1' %% prf2') t =
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   542
          let
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   543
            val prop = Reconstruct.prop_of' hs prf2';
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   544
            val T = etype_of thy' vs Ts prop;
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   545
            val (defs1, f, u) = if T = nullT then (defs, t, NONE) else
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   546
              (case t of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   547
                 SOME (f $ u) => (defs, SOME f, SOME u)
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   548
               | _ =>
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   549
                 let val (defs1, u) = extr d defs vs [] Ts hs prf2'
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   550
                 in (defs1, NONE, SOME u) end)
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   551
            val (defs2, corr_prf1) = corr d defs1 vs [] Ts hs prf1 prf1' f;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   552
            val (defs3, corr_prf2) = corr d defs2 vs [] Ts hs prf2 prf2' u;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   553
          in
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   554
            if T = nullT then (defs3, corr_prf1 %% corr_prf2) else
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   555
              (defs3, corr_prf1 % u %% corr_prf2)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   556
          end
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   557
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20897
diff changeset
   558
      | corr d defs vs ts Ts hs (prf0 as PThm (name, prf, prop, SOME Ts')) _ _ =
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   559
          let
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   560
            val (vs', tye) = find_inst prop Ts ts vs;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   561
            val tye' = (map fst (term_tvars prop) ~~ Ts') @ tye;
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   562
            val T = etype_of thy' vs' [] prop;
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   563
            val defs' = if T = nullT then defs
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   564
              else fst (extr d defs vs ts Ts hs prf0)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   565
          in
13609
73c3915553b4 Added check for axioms with "realizes Null A = A".
berghofe
parents: 13417
diff changeset
   566
            if T = nullT andalso realizes_null vs' prop aconv prop then (defs, prf0)
17412
e26cb20ef0cc TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17271
diff changeset
   567
            else case Symtab.lookup realizers name of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   568
              NONE => (case find vs' (find' name defs') of
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   569
                NONE =>
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   570
                  let
21858
05f57309170c avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents: 21646
diff changeset
   571
                    val _ = T = nullT orelse error "corr: internal error";
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   572
                    val _ = msg d ("Building correctness proof for " ^ quote name ^
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   573
                      (if null vs' then ""
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   574
                       else " (relevant variables: " ^ commas_quote vs' ^ ")"));
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   575
                    val prf' = prep (Reconstruct.reconstruct_proof thy' prop prf);
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   576
                    val (defs'', corr_prf) =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   577
                      corr (d + 1) defs' vs' [] [] [] prf' prf' NONE;
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   578
                    val corr_prop = Reconstruct.prop_of corr_prf;
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   579
                    val corr_prf' = foldr forall_intr_prf
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   580
                      (proof_combt
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20897
diff changeset
   581
                         (PThm (corr_name name vs', corr_prf, corr_prop,
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   582
                             SOME (map TVar (term_tvars corr_prop))), vfs_of corr_prop))
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   583
		      (map (get_var_type corr_prop) (vfs_of prop))
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   584
                  in
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   585
                    ((name, (vs', ((nullt, nullt), (corr_prf, corr_prf')))) :: defs'',
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   586
                     prf_subst_TVars tye' corr_prf')
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   587
                  end
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   588
              | SOME (_, (_, prf')) => (defs', prf_subst_TVars tye' prf'))
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   589
            | SOME rs => (case find vs' rs of
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   590
                SOME (_, prf') => (defs', prf_subst_TVars tye' prf')
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   591
              | NONE => error ("corr: no realizer for instance of theorem " ^
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   592
                  quote name ^ ":\n" ^ Sign.string_of_term thy' (Envir.beta_norm
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   593
                    (Reconstruct.prop_of (proof_combt (prf0, ts))))))
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   594
          end
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   595
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   596
      | corr d defs vs ts Ts hs (prf0 as PAxm (s, prop, SOME Ts')) _ _ =
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   597
          let
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   598
            val (vs', tye) = find_inst prop Ts ts vs;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   599
            val tye' = (map fst (term_tvars prop) ~~ Ts') @ tye
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   600
          in
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   601
            if etype_of thy' vs' [] prop = nullT andalso
13609
73c3915553b4 Added check for axioms with "realizes Null A = A".
berghofe
parents: 13417
diff changeset
   602
              realizes_null vs' prop aconv prop then (defs, prf0)
18956
c050ae1f8f52 Envir.(beta_)eta_contract;
wenzelm
parents: 18928
diff changeset
   603
            else case find vs' (Symtab.lookup_list realizers s) of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   604
              SOME (_, prf) => (defs, prf_subst_TVars tye' prf)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   605
            | NONE => error ("corr: no realizer for instance of axiom " ^
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   606
                quote s ^ ":\n" ^ Sign.string_of_term thy' (Envir.beta_norm
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   607
                  (Reconstruct.prop_of (proof_combt (prf0, ts)))))
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   608
          end
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   609
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   610
      | corr d defs vs ts Ts hs _ _ _ = error "corr: bad proof"
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   611
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   612
    and extr d defs vs ts Ts hs (PBound i) = (defs, Bound i)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   613
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   614
      | extr d defs vs ts Ts hs (Abst (s, SOME T, prf)) =
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   615
          let val (defs', t) = extr d defs vs []
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   616
            (T :: Ts) (dummyt :: hs) (incr_pboundvars 1 0 prf)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   617
          in (defs', Abs (s, T, t)) end
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   618
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   619
      | extr d defs vs ts Ts hs (AbsP (s, SOME t, prf)) =
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   620
          let
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   621
            val T = etype_of thy' vs Ts t;
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   622
            val (defs', t) = extr d defs vs [] (T :: Ts) (t :: hs)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   623
              (incr_pboundvars 0 1 prf)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   624
          in (defs',
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   625
            if T = nullT then subst_bound (nullt, t) else Abs (s, T, t))
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   626
          end
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   627
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   628
      | extr d defs vs ts Ts hs (prf % SOME t) =
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   629
          let val (defs', u) = extr d defs vs (t :: ts) Ts hs prf
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   630
          in (defs',
20664
ffbc5a57191a member (op =);
wenzelm
parents: 20548
diff changeset
   631
            if member (op =) rtypes (tname_of (body_type (fastype_of1 (Ts, t)))) then u
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   632
            else u $ t)
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   633
          end
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   634
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   635
      | extr d defs vs ts Ts hs (prf1 %% prf2) =
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   636
          let
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   637
            val (defs', f) = extr d defs vs [] Ts hs prf1;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   638
            val prop = Reconstruct.prop_of' hs prf2;
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   639
            val T = etype_of thy' vs Ts prop
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   640
          in
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   641
            if T = nullT then (defs', f) else
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   642
              let val (defs'', t) = extr d defs' vs [] Ts hs prf2
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   643
              in (defs'', f $ t) end
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   644
          end
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   645
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20897
diff changeset
   646
      | extr d defs vs ts Ts hs (prf0 as PThm (s, prf, prop, SOME Ts')) =
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   647
          let
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   648
            val (vs', tye) = find_inst prop Ts ts vs;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   649
            val tye' = (map fst (term_tvars prop) ~~ Ts') @ tye
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   650
          in
17412
e26cb20ef0cc TableFun/Symtab: curried lookup and update;
wenzelm
parents: 17271
diff changeset
   651
            case Symtab.lookup realizers s of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   652
              NONE => (case find vs' (find' s defs) of
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   653
                NONE =>
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   654
                  let
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   655
                    val _ = msg d ("Extracting " ^ quote s ^
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   656
                      (if null vs' then ""
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   657
                       else " (relevant variables: " ^ commas_quote vs' ^ ")"));
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   658
                    val prf' = prep (Reconstruct.reconstruct_proof thy' prop prf);
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   659
                    val (defs', t) = extr (d + 1) defs vs' [] [] [] prf';
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   660
                    val (defs'', corr_prf) =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   661
                      corr (d + 1) defs' vs' [] [] [] prf' prf' (SOME t);
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   662
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   663
                    val nt = Envir.beta_norm t;
20664
ffbc5a57191a member (op =);
wenzelm
parents: 20548
diff changeset
   664
                    val args = filter_out (fn v => member (op =) rtypes
ffbc5a57191a member (op =);
wenzelm
parents: 20548
diff changeset
   665
                      (tname_of (body_type (fastype_of v)))) (vfs_of prop);
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   666
                    val args' = List.filter (fn v => Logic.occs (v, nt)) args;
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   667
                    val t' = mkabs nt args';
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   668
                    val T = fastype_of t';
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   669
                    val cname = extr_name s vs';
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   670
                    val c = Const (cname, T);
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   671
                    val u = mkabs (list_comb (c, args')) args;
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   672
                    val eqn = Logic.mk_equals (c, t');
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   673
                    val rlz =
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   674
                      Const ("realizes", fastype_of nt --> propT --> propT);
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   675
                    val lhs = app_rlz_rews [] vs' (rlz $ nt $ prop);
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   676
                    val rhs = app_rlz_rews [] vs' (rlz $ list_comb (c, args') $ prop);
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   677
                    val f = app_rlz_rews [] vs'
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   678
                      (Abs ("x", T, rlz $ list_comb (Bound 0, args') $ prop));
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   679
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   680
                    val corr_prf' =
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   681
                      chtype [] equal_elim_axm %> lhs %> rhs %%
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   682
                       (chtype [propT] symmetric_axm %> rhs %> lhs %%
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   683
                         (chtype [propT, T] combination_axm %> f %> f %> c %> t' %%
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   684
                           (chtype [T --> propT] reflexive_axm %> f) %%
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   685
                           PAxm (cname ^ "_def", eqn,
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   686
                             SOME (map TVar (term_tvars eqn))))) %% corr_prf;
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   687
                    val corr_prop = Reconstruct.prop_of corr_prf';
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   688
                    val corr_prf'' = foldr forall_intr_prf
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   689
                      (proof_combt
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20897
diff changeset
   690
                        (PThm (corr_name s vs', corr_prf', corr_prop,
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   691
                          SOME (map TVar (term_tvars corr_prop))),  vfs_of corr_prop))
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   692
		      (map (get_var_type corr_prop) (vfs_of prop));
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   693
                  in
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   694
                    ((s, (vs', ((t', u), (corr_prf', corr_prf'')))) :: defs'',
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   695
                     subst_TVars tye' u)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   696
                  end
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   697
              | SOME ((_, u), _) => (defs, subst_TVars tye' u))
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   698
            | SOME rs => (case find vs' rs of
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   699
                SOME (t, _) => (defs, subst_TVars tye' t)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   700
              | NONE => error ("extr: no realizer for instance of theorem " ^
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   701
                  quote s ^ ":\n" ^ Sign.string_of_term thy' (Envir.beta_norm
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   702
                    (Reconstruct.prop_of (proof_combt (prf0, ts))))))
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   703
          end
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   704
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   705
      | extr d defs vs ts Ts hs (prf0 as PAxm (s, prop, SOME Ts')) =
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   706
          let
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   707
            val (vs', tye) = find_inst prop Ts ts vs;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   708
            val tye' = (map fst (term_tvars prop) ~~ Ts') @ tye
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   709
          in
18956
c050ae1f8f52 Envir.(beta_)eta_contract;
wenzelm
parents: 18928
diff changeset
   710
            case find vs' (Symtab.lookup_list realizers s) of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   711
              SOME (t, _) => (defs, subst_TVars tye' t)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   712
            | NONE => error ("extr: no realizer for instance of axiom " ^
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   713
                quote s ^ ":\n" ^ Sign.string_of_term thy' (Envir.beta_norm
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   714
                  (Reconstruct.prop_of (proof_combt (prf0, ts)))))
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   715
          end
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   716
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   717
      | extr d defs vs ts Ts hs _ = error "extr: bad proof";
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   718
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   719
    fun prep_thm (thm, vs) =
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   720
      let
22596
d0d2af4db18f rep_thm/cterm/ctyp: removed obsolete sign field;
wenzelm
parents: 22360
diff changeset
   721
        val {prop, der = (_, prf), thy, ...} = rep_thm thm;
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 20897
diff changeset
   722
        val name = Thm.get_name thm;
21858
05f57309170c avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents: 21646
diff changeset
   723
        val _ = name <> "" orelse error "extraction: unnamed theorem";
05f57309170c avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents: 21646
diff changeset
   724
        val _ = etype_of thy' vs [] prop <> nullT orelse error ("theorem " ^
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   725
          quote name ^ " has no computational content")
22596
d0d2af4db18f rep_thm/cterm/ctyp: removed obsolete sign field;
wenzelm
parents: 22360
diff changeset
   726
      in (Reconstruct.reconstruct_proof thy prop prf, vs) end;
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   727
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   728
    val defs = Library.foldl (fn (defs, (prf, vs)) =>
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   729
      fst (extr 0 defs vs [] [] [] prf)) ([], map prep_thm thms);
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   730
16149
d8cac577493c Theory.restore_naming;
wenzelm
parents: 15801
diff changeset
   731
    fun add_def (s, (vs, ((t, u), (prf, _)))) thy =
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   732
      (case Sign.const_type thy (extr_name s vs) of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   733
         NONE =>
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   734
           let
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   735
             val corr_prop = Reconstruct.prop_of prf;
16287
7a03b4b4df67 Type.freeze;
wenzelm
parents: 16195
diff changeset
   736
             val ft = Type.freeze t;
7a03b4b4df67 Type.freeze;
wenzelm
parents: 16195
diff changeset
   737
             val fu = Type.freeze u;
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   738
             val thy' = if t = nullt then thy else thy |>
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   739
               Theory.add_consts_i [(extr_name s vs, fastype_of ft, NoSyn)] |>
18358
0a733e11021a re-oriented some result tuples in PureThy
haftmann
parents: 18184
diff changeset
   740
               snd o PureThy.add_defs_i false [((extr_name s vs ^ "_def",
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   741
                 Logic.mk_equals (head_of (strip_abs_body fu), ft)), [])];
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   742
           in
18358
0a733e11021a re-oriented some result tuples in PureThy
haftmann
parents: 18184
diff changeset
   743
             snd (PureThy.store_thm ((corr_name s vs,
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   744
               Thm.varifyT (funpow (length (term_vars corr_prop))
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   745
                 (forall_elim_var 0) (forall_intr_frees
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   746
                   (ProofChecker.thm_of_proof thy'
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   747
                     (fst (Proofterm.freeze_thaw_prf prf)))))), []) thy')
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   748
           end
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15457
diff changeset
   749
       | SOME _ => thy);
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   750
16149
d8cac577493c Theory.restore_naming;
wenzelm
parents: 15801
diff changeset
   751
  in
d8cac577493c Theory.restore_naming;
wenzelm
parents: 15801
diff changeset
   752
    thy
d8cac577493c Theory.restore_naming;
wenzelm
parents: 15801
diff changeset
   753
    |> Theory.absolute_path
d8cac577493c Theory.restore_naming;
wenzelm
parents: 15801
diff changeset
   754
    |> fold_rev add_def defs
d8cac577493c Theory.restore_naming;
wenzelm
parents: 15801
diff changeset
   755
    |> Theory.restore_naming thy
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   756
  end;
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   757
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   758
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   759
(**** interface ****)
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   760
17057
0934ac31985f OuterKeyword;
wenzelm
parents: 16983
diff changeset
   761
structure P = OuterParse and K = OuterKeyword;
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   762
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   763
val parse_vars = Scan.optional (P.$$$ "(" |-- P.list1 P.name --| P.$$$ ")") [];
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   764
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   765
val realizersP =
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   766
  OuterSyntax.command "realizers"
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   767
  "specify realizers for primitive axioms / theorems, together with correctness proof"
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   768
  K.thy_decl
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   769
    (Scan.repeat1 (P.xname -- parse_vars --| P.$$$ ":" -- P.string -- P.string) >>
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   770
     (fn xs => Toplevel.theory (fn thy => add_realizers
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   771
       (map (fn (((a, vs), s1), s2) =>
16486
1a12cdb6ee6b get_thm(s): Name;
wenzelm
parents: 16458
diff changeset
   772
         (PureThy.get_thm thy (Name a), (vs, s1, s2))) xs) thy)));
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   773
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   774
val realizabilityP =
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   775
  OuterSyntax.command "realizability"
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   776
  "add equations characterizing realizability" K.thy_decl
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   777
  (Scan.repeat1 P.string >> (Toplevel.theory o add_realizes_eqns));
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   778
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   779
val typeofP =
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   780
  OuterSyntax.command "extract_type"
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   781
  "add equations characterizing type of extracted program" K.thy_decl
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   782
  (Scan.repeat1 P.string >> (Toplevel.theory o add_typeof_eqns));
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   783
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   784
val extractP =
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   785
  OuterSyntax.command "extract" "extract terms from proofs" K.thy_decl
13732
f8badfef5cf2 Correctness proofs are now modular, too.
berghofe
parents: 13719
diff changeset
   786
    (Scan.repeat1 (P.xname -- parse_vars) >> (fn xs => Toplevel.theory
16486
1a12cdb6ee6b get_thm(s): Name;
wenzelm
parents: 16458
diff changeset
   787
      (fn thy => extract (map (apfst (PureThy.get_thm thy o Name)) xs) thy)));
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   788
15801
d2f5ca3c048d superceded by Pure.thy and CPure.thy;
wenzelm
parents: 15798
diff changeset
   789
val _ = OuterSyntax.add_parsers [realizersP, realizabilityP, typeofP, extractP];
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   790
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16363
diff changeset
   791
val etype_of = etype_of o add_syntax;
13714
bdd483321f4b - exported functions etype_of and mk_typ
berghofe
parents: 13609
diff changeset
   792
13402
e6e826bb8c3c Added program extraction module.
berghofe
parents:
diff changeset
   793
end;