src/HOL/Tools/reconstruction.ML
author mengj
Fri, 07 Apr 2006 05:12:51 +0200
changeset 19354 aebf9dddccd7
parent 18729 216e31270509
child 19963 806eaa2a2a5e
permissions -rw-r--r--
tptp_write_file accepts axioms as thm.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15151
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
     1
(*  Title:      HOL/Reconstruction.thy
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
     2
    ID: $Id$
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson and Claire Quigley
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
     4
    Copyright   2004  University of Cambridge
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
     5
*)
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
     6
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
     7
(*Attributes for reconstructing external resolution proofs*)
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
     8
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
     9
structure Reconstruction =
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    10
struct
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    11
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    12
(**************************************************************)
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    13
(* extra functions necessary for factoring and paramodulation *)
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    14
(**************************************************************)
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    15
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    16
fun mksubstlist [] sublist = sublist
18729
216e31270509 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    17
  | mksubstlist ((a, (_, b)) :: rest) sublist =
15151
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    18
      let val vartype = type_of b
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    19
          val avar = Var(a,vartype)
18729
216e31270509 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    20
          val newlist = ((avar,b)::sublist)
15151
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    21
      in mksubstlist rest newlist end;
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    22
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    23
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    24
(**** attributes ****)
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    25
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    26
(** Binary resolution **)
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    27
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    28
fun binary_rule ((cl1, lit1), (cl2 , lit2)) =
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    29
     select_literal (lit1 + 1) cl1
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    30
     RSN ((lit2 + 1), cl2);
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    31
18729
216e31270509 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    32
val binary = Attrib.syntax
216e31270509 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    33
  (Scan.lift Args.nat -- Attrib.thm -- Scan.lift Args.nat
216e31270509 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    34
    >> (fn ((i, B), j) => Thm.rule_attribute (fn _ => fn A => binary_rule ((A, i), (B, j)))));
15151
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    35
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    36
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    37
fun inst_single sign t1 t2 cl =
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    38
    let val ct1 = cterm_of sign t1 and ct2 = cterm_of sign t2
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    39
    in  hd (Seq.list_of(distinct_subgoals_tac
18729
216e31270509 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    40
                            (cterm_instantiate [(ct1,ct2)] cl)))
15151
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    41
    end;
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    42
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    43
fun inst_subst sign substs cl =
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    44
    if (is_Var (fst(hd(substs))))
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    45
    then inst_single sign (fst (hd substs)) (snd (hd substs)) cl
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    46
    else if (is_Var (snd(hd(substs))))
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    47
    then inst_single sign (snd (hd substs)) (fst (hd substs)) cl
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    48
    else raise THM ("inst_subst", 0, [cl]);
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    49
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    50
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    51
(** Factoring **)
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    52
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    53
fun factor_rule (cl, lit1, lit2) =
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    54
    let
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    55
       val prems = prems_of cl
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    56
       val fac1 = List.nth (prems,lit1)
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    57
       val fac2 = List.nth (prems,lit2)
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    58
       val sign = sign_of_thm cl
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    59
       val unif_env = Unify.unifiers (sign, Envir.empty 0, [(fac1, fac2)])
17488
67376a311a2b further simplification of the Isabelle-ATP linkup
paulson
parents: 15955
diff changeset
    60
       val newenv = ReconTranslateProof.getnewenv unif_env
15151
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    61
       val envlist = Envir.alist_of newenv
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    62
     in
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    63
       inst_subst sign (mksubstlist envlist []) cl
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    64
    end;
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    65
18729
216e31270509 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    66
val factor = Attrib.syntax (Scan.lift (Args.nat -- Args.nat)
216e31270509 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    67
  >> (fn (i, j) => Thm.rule_attribute (fn _ => fn A => factor_rule (A, i, j))));
15151
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    68
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    69
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    70
(** Paramodulation **)
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    71
15449
a27c81bd838d fixed the treatment of demodulation and paramodulation
paulson
parents: 15384
diff changeset
    72
(*subst with premises exchanged: that way, side literals of the equality will appear
a27c81bd838d fixed the treatment of demodulation and paramodulation
paulson
parents: 15384
diff changeset
    73
  as the second to last premises of the result.*)
a27c81bd838d fixed the treatment of demodulation and paramodulation
paulson
parents: 15384
diff changeset
    74
val rev_subst = rotate_prems 1 subst;
a27c81bd838d fixed the treatment of demodulation and paramodulation
paulson
parents: 15384
diff changeset
    75
15499
419dc5ffe8bc clausification and proof reconstruction
paulson
parents: 15495
diff changeset
    76
fun paramod_rule ((cl1, lit1), (cl2, lit2)) =
15449
a27c81bd838d fixed the treatment of demodulation and paramodulation
paulson
parents: 15384
diff changeset
    77
    let  val eq_lit_th = select_literal (lit1+1) cl1
a27c81bd838d fixed the treatment of demodulation and paramodulation
paulson
parents: 15384
diff changeset
    78
         val mod_lit_th = select_literal (lit2+1) cl2
a27c81bd838d fixed the treatment of demodulation and paramodulation
paulson
parents: 15384
diff changeset
    79
         val eqsubst = eq_lit_th RSN (2,rev_subst)
a27c81bd838d fixed the treatment of demodulation and paramodulation
paulson
parents: 15384
diff changeset
    80
         val newth = Seq.hd (biresolution false [(false, mod_lit_th)] 1 eqsubst)
15499
419dc5ffe8bc clausification and proof reconstruction
paulson
parents: 15495
diff changeset
    81
         val newth' = Seq.hd (flexflex_rule newth)
15579
32bee18c675f Tools/meson.ML: signature, structure and "open" rather than "local"
paulson
parents: 15531
diff changeset
    82
    in Meson.negated_asm_of_head newth' end;
15151
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    83
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    84
18729
216e31270509 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    85
val paramod = Attrib.syntax (Scan.lift Args.nat -- Attrib.thm -- Scan.lift Args.nat
216e31270509 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    86
  >> (fn ((i, B), j) => Thm.rule_attribute (fn _ => fn A => paramod_rule ((A, i), (B, j)))));
15151
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    87
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    88
15449
a27c81bd838d fixed the treatment of demodulation and paramodulation
paulson
parents: 15384
diff changeset
    89
(** Demodulation: rewriting of a single literal (Non-Unit Rewriting, SPASS) **)
15151
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    90
18729
216e31270509 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    91
fun demod_rule ((cl1, lit1), (cl2 , lit2)) =
15151
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
    92
    let  val eq_lit_th = select_literal (lit1+1) cl1
15449
a27c81bd838d fixed the treatment of demodulation and paramodulation
paulson
parents: 15384
diff changeset
    93
         val mod_lit_th = select_literal (lit2+1) cl2
18729
216e31270509 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    94
         val (fmod_th,thaw) = Drule.freeze_thaw_robust mod_lit_th
15449
a27c81bd838d fixed the treatment of demodulation and paramodulation
paulson
parents: 15384
diff changeset
    95
         val eqsubst = eq_lit_th RSN (2,rev_subst)
15495
50fde6f04e4c new treatment of demodulation in proof reconstruction
paulson
parents: 15466
diff changeset
    96
         val newth = Seq.hd(biresolution false [(false, fmod_th)] 1 eqsubst)
15499
419dc5ffe8bc clausification and proof reconstruction
paulson
parents: 15495
diff changeset
    97
         val offset = #maxidx(rep_thm newth) + 1
18729
216e31270509 simplified type attribute;
wenzelm
parents: 18708
diff changeset
    98
                          (*ensures "renaming apart" even when Vars are frozen*)
15579
32bee18c675f Tools/meson.ML: signature, structure and "open" rather than "local"
paulson
parents: 15531
diff changeset
    99
    in Meson.negated_asm_of_head (thaw offset newth) end;
15151
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
   100
18729
216e31270509 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   101
val demod = Attrib.syntax (Scan.lift Args.nat -- Attrib.thm -- Scan.lift Args.nat
216e31270509 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   102
  >> (fn ((i, B), j) => Thm.rule_attribute (fn _ => fn A => demod_rule ((A, i), (B, j)))));
15151
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
   103
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
   104
15359
8bad1f42fec0 new CLAUSIFY attribute for proof reconstruction with lemmas
paulson
parents: 15151
diff changeset
   105
(** Conversion of a theorem into clauses **)
8bad1f42fec0 new CLAUSIFY attribute for proof reconstruction with lemmas
paulson
parents: 15151
diff changeset
   106
15955
87cf2ce8ede8 memoization of ResAxioms.cnf_axiom rather than of Reconstruction.clausify_rule
paulson
parents: 15794
diff changeset
   107
(*For efficiency, we rely upon memo-izing in ResAxioms.*)
87cf2ce8ede8 memoization of ResAxioms.cnf_axiom rather than of Reconstruction.clausify_rule
paulson
parents: 15794
diff changeset
   108
fun clausify_rule (th,i) = List.nth (ResAxioms.meta_cnf_axiom th, i)
15466
dce7827f8d75 implemented cache for conversion to clauses
paulson
parents: 15449
diff changeset
   109
18729
216e31270509 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   110
val clausify = Attrib.syntax (Scan.lift Args.nat
216e31270509 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   111
  >> (fn i => Thm.rule_attribute (fn _ => fn th => clausify_rule (th, i))));
15359
8bad1f42fec0 new CLAUSIFY attribute for proof reconstruction with lemmas
paulson
parents: 15151
diff changeset
   112
8bad1f42fec0 new CLAUSIFY attribute for proof reconstruction with lemmas
paulson
parents: 15151
diff changeset
   113
15151
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
   114
(** theory setup **)
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
   115
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
   116
val setup =
18708
4b3dadb4fe33 setup: theory -> theory;
wenzelm
parents: 17488
diff changeset
   117
  Attrib.add_attributes
18729
216e31270509 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   118
    [("binary", binary, "binary resolution"),
216e31270509 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   119
     ("paramod", paramod, "paramodulation"),
216e31270509 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   120
     ("demod", demod, "demodulation"),
216e31270509 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   121
     ("factor", factor, "factoring"),
216e31270509 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   122
     ("clausify", clausify, "conversion to clauses")];
15151
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
   123
429666b09783 proof reconstruction for external ATPs
paulson
parents:
diff changeset
   124
end