src/HOL/Tools/res_axioms.ML
author wenzelm
Thu, 12 Jun 2008 16:41:54 +0200
changeset 27174 c2c484480f40
parent 26939 1035c89b4c02
child 27179 8f29fed3dc9a
permissions -rw-r--r--
declare_skofuns/skolem: canonical argument order; minor tuning;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
     1
(*  Author: Jia Meng, Cambridge University Computer Laboratory
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
     2
    ID: $Id$
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
     3
    Copyright 2004 University of Cambridge
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
     4
20461
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
     5
Transformation of axiom rules (elim/intro/etc) into CNF forms.
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
     6
*)
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
     7
15997
c71031d7988c consolidation and simplification
paulson
parents: 15956
diff changeset
     8
signature RES_AXIOMS =
21505
13d4dba99337 prefer Proof.context over Context.generic;
wenzelm
parents: 21470
diff changeset
     9
sig
24669
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
    10
  val cnf_axiom: thm -> thm list
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
    11
  val pairname: thm -> string * thm
24854
0ebcd575d3c6 filtering out some package theorems
paulson
parents: 24827
diff changeset
    12
  val multi_base_blacklist: string list 
25243
78f8aaa27493 bugfixes concerning strange theorems
paulson
parents: 25007
diff changeset
    13
  val bad_for_atp: thm -> bool
25761
466e714de2fc testing for empty sort
paulson
parents: 25256
diff changeset
    14
  val type_has_empty_sort: typ -> bool
24669
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
    15
  val cnf_rules_pairs: (string * thm) list -> (thm * (string * int)) list
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
    16
  val cnf_rules_of_ths: thm list -> thm list
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
    17
  val neg_clausify: thm list -> thm list
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
    18
  val expand_defs_tac: thm -> tactic
24827
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
    19
  val combinators: thm -> thm
21999
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21900
diff changeset
    20
  val neg_conjecture_clauses: thm -> int -> thm list * (string * typ) list
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21900
diff changeset
    21
  val claset_rules_of: Proof.context -> (string * thm) list   (*FIXME DELETE*)
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21900
diff changeset
    22
  val simpset_rules_of: Proof.context -> (string * thm) list  (*FIXME DELETE*)
21505
13d4dba99337 prefer Proof.context over Context.generic;
wenzelm
parents: 21470
diff changeset
    23
  val atpset_rules_of: Proof.context -> (string * thm) list
24669
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
    24
  val meson_method_setup: theory -> theory
24742
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
    25
  val clause_cache_endtheory: theory -> theory option
25256
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
    26
  val suppress_endtheory: bool ref     (*for emergency use where endtheory causes problems*)
24669
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
    27
  val setup: theory -> theory
21505
13d4dba99337 prefer Proof.context over Context.generic;
wenzelm
parents: 21470
diff changeset
    28
end;
19196
62ee8c10d796 Added functions to retrieve local and global atpset rules.
mengj
parents: 19175
diff changeset
    29
24669
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
    30
structure ResAxioms: RES_AXIOMS =
15997
c71031d7988c consolidation and simplification
paulson
parents: 15956
diff changeset
    31
struct
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
    32
20902
a0034e545c13 replaced Drule.clhs/crhs_of by Drule.lhs/rhs_of;
wenzelm
parents: 20867
diff changeset
    33
(* FIXME legacy *)
20863
4ee61dbf192d improvements to abstraction, ensuring more re-use of abstraction functions
paulson
parents: 20789
diff changeset
    34
fun freeze_thm th = #1 (Drule.freeze_thaw th);
4ee61dbf192d improvements to abstraction, ensuring more re-use of abstraction functions
paulson
parents: 20789
diff changeset
    35
25761
466e714de2fc testing for empty sort
paulson
parents: 25256
diff changeset
    36
fun type_has_empty_sort (TFree (_, [])) = true
466e714de2fc testing for empty sort
paulson
parents: 25256
diff changeset
    37
  | type_has_empty_sort (TVar (_, [])) = true
466e714de2fc testing for empty sort
paulson
parents: 25256
diff changeset
    38
  | type_has_empty_sort (Type (_, Ts)) = exists type_has_empty_sort Ts
466e714de2fc testing for empty sort
paulson
parents: 25256
diff changeset
    39
  | type_has_empty_sort _ = false;
466e714de2fc testing for empty sort
paulson
parents: 25256
diff changeset
    40
  
15997
c71031d7988c consolidation and simplification
paulson
parents: 15956
diff changeset
    41
(**** Transformation of Elimination Rules into First-Order Formulas****)
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
    42
21430
77651b6d9d6c New transformation of eliminatino rules: we simply replace the final conclusion variable by False
paulson
parents: 21290
diff changeset
    43
val cfalse = cterm_of HOL.thy HOLogic.false_const;
77651b6d9d6c New transformation of eliminatino rules: we simply replace the final conclusion variable by False
paulson
parents: 21290
diff changeset
    44
val ctp_false = cterm_of HOL.thy (HOLogic.mk_Trueprop HOLogic.false_const);
20461
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
    45
21430
77651b6d9d6c New transformation of eliminatino rules: we simply replace the final conclusion variable by False
paulson
parents: 21290
diff changeset
    46
(*Converts an elim-rule into an equivalent theorem that does not have the
77651b6d9d6c New transformation of eliminatino rules: we simply replace the final conclusion variable by False
paulson
parents: 21290
diff changeset
    47
  predicate variable.  Leaves other theorems unchanged.  We simply instantiate the
77651b6d9d6c New transformation of eliminatino rules: we simply replace the final conclusion variable by False
paulson
parents: 21290
diff changeset
    48
  conclusion variable to False.*)
16009
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
    49
fun transform_elim th =
21430
77651b6d9d6c New transformation of eliminatino rules: we simply replace the final conclusion variable by False
paulson
parents: 21290
diff changeset
    50
  case concl_of th of    (*conclusion variable*)
24669
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
    51
       Const("Trueprop",_) $ (v as Var(_,Type("bool",[]))) =>
21430
77651b6d9d6c New transformation of eliminatino rules: we simply replace the final conclusion variable by False
paulson
parents: 21290
diff changeset
    52
           Thm.instantiate ([], [(cterm_of HOL.thy v, cfalse)]) th
24669
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
    53
    | v as Var(_, Type("prop",[])) =>
21430
77651b6d9d6c New transformation of eliminatino rules: we simply replace the final conclusion variable by False
paulson
parents: 21290
diff changeset
    54
           Thm.instantiate ([], [(cterm_of HOL.thy v, ctp_false)]) th
77651b6d9d6c New transformation of eliminatino rules: we simply replace the final conclusion variable by False
paulson
parents: 21290
diff changeset
    55
    | _ => th;
15997
c71031d7988c consolidation and simplification
paulson
parents: 15956
diff changeset
    56
24742
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
    57
(*To enforce single-threading*)
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
    58
exception Clausify_failure of theory;
20461
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
    59
16009
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
    60
(**** SKOLEMIZATION BY INFERENCE (lcp) ****)
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
    61
24742
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
    62
fun rhs_extra_types lhsT rhs =
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
    63
  let val lhs_vars = Term.add_tfreesT lhsT []
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
    64
      fun add_new_TFrees (TFree v) =
24821
cc55041ca8ba skolem_cache: ignore internal theorems -- major speedup;
wenzelm
parents: 24785
diff changeset
    65
            if member (op =) lhs_vars v then I else insert (op =) (TFree v)
cc55041ca8ba skolem_cache: ignore internal theorems -- major speedup;
wenzelm
parents: 24785
diff changeset
    66
        | add_new_TFrees _ = I
24742
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
    67
      val rhs_consts = fold_aterms (fn Const c => insert (op =) c | _ => I) rhs []
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
    68
  in fold (#2 #> Term.fold_atyps add_new_TFrees) rhs_consts [] end;
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
    69
18141
89e2e8bed08f Skolemization by inference, but not quite finished
paulson
parents: 18009
diff changeset
    70
(*Traverse a theorem, declaring Skolem function definitions. String s is the suggested
27174
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    71
  prefix for the Skolem constant.*)
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    72
fun declare_skofuns s th =
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    73
  let
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    74
    val nref = ref 0
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    75
    fun dec_sko (Const ("Ex",_) $ (xtp as Abs (_, T, p))) (axs, thy) =
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    76
          (*Existential: declare a Skolem function, then insert into body and continue*)
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    77
          let
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    78
            val cname = "sko_" ^ s ^ "_" ^ Int.toString (inc nref)
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    79
            val args0 = term_frees xtp  (*get the formal parameter list*)
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    80
            val Ts = map type_of args0
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    81
            val extraTs = rhs_extra_types (Ts ---> T) xtp
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    82
            val _ = if null extraTs then () else
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    83
              warning ("Skolemization: extra type vars: " ^
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    84
                commas_quote (map (Syntax.string_of_typ_global thy) extraTs))
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    85
            val argsx = map (fn T => Free (gensym "vsk", T)) extraTs
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    86
            val args = argsx @ args0
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    87
            val cT = extraTs ---> Ts ---> T
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    88
            val rhs = list_abs_free (map dest_Free args, HOLogic.choice_const T $ xtp)
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    89
                    (*Forms a lambda-abstraction over the formal parameters*)
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    90
            val (c, thy') = Sign.declare_const [Markup.property_internal] (cname, cT, NoSyn) thy
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    91
            val cdef = cname ^ "_def"
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    92
            val thy'' = Theory.add_defs_i true false [(cdef, equals cT $ c $ rhs)] thy'
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    93
              handle ERROR _ => raise Clausify_failure thy'
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    94
            val ax = Thm.get_axiom_i thy'' (Sign.full_name thy'' cdef)
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    95
          in dec_sko (subst_bound (list_comb (c, args), p)) (ax :: axs, thy'') end
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    96
      | dec_sko (Const ("All", _) $ (xtp as Abs (a, T, p))) thx =
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    97
          (*Universal quant: insert a free variable into body and continue*)
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    98
          let val fname = Name.variant (add_term_names (p, [])) a
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
    99
          in dec_sko (subst_bound (Free (fname, T), p)) thx end
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
   100
      | dec_sko (Const ("op &", _) $ p $ q) thx = dec_sko q (dec_sko p thx)
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
   101
      | dec_sko (Const ("op |", _) $ p $ q) thx = dec_sko q (dec_sko p thx)
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
   102
      | dec_sko (Const ("Trueprop", _) $ p) thx = dec_sko p thx
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
   103
      | dec_sko t thx = thx (*Do nothing otherwise*)
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
   104
  in fn thy => dec_sko (Thm.prop_of th) ([], thy) end;
18141
89e2e8bed08f Skolemization by inference, but not quite finished
paulson
parents: 18009
diff changeset
   105
89e2e8bed08f Skolemization by inference, but not quite finished
paulson
parents: 18009
diff changeset
   106
(*Traverse a theorem, accumulating Skolem function definitions.*)
22731
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   107
fun assume_skofuns s th =
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   108
  let val sko_count = ref 0
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   109
      fun dec_sko (Const ("Ex",_) $ (xtp as Abs(_,T,p))) defs =
20461
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   110
            (*Existential: declare a Skolem function, then insert into body and continue*)
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   111
            let val skos = map (#1 o Logic.dest_equals) defs  (*existing sko fns*)
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   112
                val args = term_frees xtp \\ skos  (*the formal parameters*)
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   113
                val Ts = map type_of args
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   114
                val cT = Ts ---> T
22731
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   115
                val id = "sko_" ^ s ^ "_" ^ Int.toString (inc sko_count)
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   116
                val c = Free (id, cT)
20461
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   117
                val rhs = list_abs_free (map dest_Free args,
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   118
                                         HOLogic.choice_const T $ xtp)
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   119
                      (*Forms a lambda-abstraction over the formal parameters*)
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   120
                val def = equals cT $ c $ rhs
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   121
            in dec_sko (subst_bound (list_comb(c,args), p))
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   122
                       (def :: defs)
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   123
            end
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   124
        | dec_sko (Const ("All",_) $ (xtp as Abs(a,T,p))) defs =
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   125
            (*Universal quant: insert a free variable into body and continue*)
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   126
            let val fname = Name.variant (add_term_names (p,[])) a
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   127
            in dec_sko (subst_bound (Free(fname,T), p)) defs end
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   128
        | dec_sko (Const ("op &", _) $ p $ q) defs = dec_sko q (dec_sko p defs)
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   129
        | dec_sko (Const ("op |", _) $ p $ q) defs = dec_sko q (dec_sko p defs)
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   130
        | dec_sko (Const ("Trueprop", _) $ p) defs = dec_sko p defs
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   131
        | dec_sko t defs = defs (*Do nothing otherwise*)
20419
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
   132
  in  dec_sko (prop_of th) []  end;
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
   133
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
   134
24827
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   135
(**** REPLACING ABSTRACTIONS BY COMBINATORS ****)
20419
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
   136
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
   137
(*Returns the vars of a theorem*)
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
   138
fun vars_of_thm th =
22691
290454649b8c Thm.fold_terms;
wenzelm
parents: 22644
diff changeset
   139
  map (Thm.cterm_of (theory_of_thm th) o Var) (Thm.fold_terms Term.add_vars th []);
20419
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
   140
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
   141
(*Make a version of fun_cong with a given variable name*)
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
   142
local
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
   143
    val fun_cong' = fun_cong RS asm_rl; (*renumber f, g to prevent clashes with (a,0)*)
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
   144
    val cx = hd (vars_of_thm fun_cong');
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
   145
    val ty = typ_of (ctyp_of_term cx);
20445
b222d9939e00 improvements to abstraction generation
paulson
parents: 20421
diff changeset
   146
    val thy = theory_of_thm fun_cong;
20419
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
   147
    fun mkvar a = cterm_of thy (Var((a,0),ty));
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
   148
in
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
   149
fun xfun_cong x = Thm.instantiate ([], [(cx, mkvar x)]) fun_cong'
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
   150
end;
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
   151
20863
4ee61dbf192d improvements to abstraction, ensuring more re-use of abstraction functions
paulson
parents: 20789
diff changeset
   152
(*Removes the lambdas from an equation of the form t = (%x. u).  A non-negative n,
4ee61dbf192d improvements to abstraction, ensuring more re-use of abstraction functions
paulson
parents: 20789
diff changeset
   153
  serves as an upper bound on how many to remove.*)
4ee61dbf192d improvements to abstraction, ensuring more re-use of abstraction functions
paulson
parents: 20789
diff changeset
   154
fun strip_lambdas 0 th = th
24669
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
   155
  | strip_lambdas n th =
20863
4ee61dbf192d improvements to abstraction, ensuring more re-use of abstraction functions
paulson
parents: 20789
diff changeset
   156
      case prop_of th of
24669
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
   157
          _ $ (Const ("op =", _) $ _ $ Abs (x,_,_)) =>
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
   158
              strip_lambdas (n-1) (freeze_thm (th RS xfun_cong x))
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
   159
        | _ => th;
20419
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
   160
24669
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
   161
val lambda_free = not o Term.has_abs;
20461
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   162
24669
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
   163
val monomorphic = not o Term.exists_type (Term.exists_subtype Term.is_TVar);
20461
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   164
24827
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   165
val abs_S = @{thm"abs_S"};
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   166
val abs_K = @{thm"abs_K"};
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   167
val abs_I = @{thm"abs_I"};
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   168
val abs_B = @{thm"abs_B"};
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   169
val abs_C = @{thm"abs_C"};
20710
384bfce59254 Abstraction now handles equations where the RHS is a lambda-expression; also, strings of lambdas
paulson
parents: 20624
diff changeset
   170
24827
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   171
val [f_B,g_B] = map (cterm_of @{theory}) (term_vars (prop_of abs_B));
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   172
val [g_C,f_C] = map (cterm_of @{theory}) (term_vars (prop_of abs_C));
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   173
val [f_S,g_S] = map (cterm_of @{theory}) (term_vars (prop_of abs_S));
20863
4ee61dbf192d improvements to abstraction, ensuring more re-use of abstraction functions
paulson
parents: 20789
diff changeset
   174
24827
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   175
(*FIXME: requires more use of cterm constructors*)
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   176
fun abstract ct =
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26653
diff changeset
   177
  let val _ = Output.debug (fn()=>"  abstraction: " ^ Display.string_of_cterm ct)
25256
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   178
      val Abs(x,_,body) = term_of ct
24827
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   179
      val thy = theory_of_cterm ct
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   180
      val Type("fun",[xT,bodyT]) = typ_of (ctyp_of_term ct)
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   181
      val cxT = ctyp_of thy xT and cbodyT = ctyp_of thy bodyT
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   182
      fun makeK() = instantiate' [SOME cxT, SOME cbodyT] [SOME (cterm_of thy body)] abs_K
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   183
  in
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   184
      case body of
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   185
          Const _ => makeK()
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   186
        | Free _ => makeK()
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   187
        | Var _ => makeK()  (*though Var isn't expected*)
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   188
        | Bound 0 => instantiate' [SOME cxT] [] abs_I (*identity: I*)
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   189
        | rator$rand =>
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   190
	    if loose_bvar1 (rator,0) then (*C or S*) 
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   191
	       if loose_bvar1 (rand,0) then (*S*)
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   192
	         let val crator = cterm_of thy (Abs(x,xT,rator))
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   193
	             val crand = cterm_of thy (Abs(x,xT,rand))
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   194
	             val abs_S' = cterm_instantiate [(f_S,crator),(g_S,crand)] abs_S
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   195
	             val (_,rhs) = Thm.dest_equals (cprop_of abs_S') 
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   196
	         in
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   197
	           Thm.transitive abs_S' (Conv.binop_conv abstract rhs)
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   198
	         end
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   199
	       else (*C*)
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   200
	         let val crator = cterm_of thy (Abs(x,xT,rator))
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   201
	             val abs_C' = cterm_instantiate [(f_C,crator),(g_C,cterm_of thy rand)] abs_C
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   202
	             val (_,rhs) = Thm.dest_equals (cprop_of abs_C') 
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   203
	         in
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   204
	           Thm.transitive abs_C' (Conv.fun_conv (Conv.arg_conv abstract) rhs)
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   205
	         end
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   206
	    else if loose_bvar1 (rand,0) then (*B or eta*) 
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   207
	       if rand = Bound 0 then eta_conversion ct
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   208
	       else (*B*)
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   209
	         let val crand = cterm_of thy (Abs(x,xT,rand))
25256
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   210
	             val crator = cterm_of thy rator
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   211
	             val abs_B' = cterm_instantiate [(f_B,crator),(g_B,crand)] abs_B
24827
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   212
	             val (_,rhs) = Thm.dest_equals (cprop_of abs_B') 
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   213
	         in
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   214
	           Thm.transitive abs_B' (Conv.arg_conv abstract rhs)
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   215
	         end
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   216
	    else makeK()
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   217
        | _ => error "abstract: Bad term"
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   218
  end;
20863
4ee61dbf192d improvements to abstraction, ensuring more re-use of abstraction functions
paulson
parents: 20789
diff changeset
   219
20419
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
   220
(*Traverse a theorem, declaring abstraction function definitions. String s is the suggested
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
   221
  prefix for the constants. Resulting theory is returned in the first theorem. *)
24827
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   222
fun combinators_aux ct =
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   223
  if lambda_free (term_of ct) then reflexive ct
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   224
  else
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   225
  case term_of ct of
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   226
      Abs _ =>
25007
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   227
	let val (cv,cta) = Thm.dest_abs NONE ct
24827
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   228
	    val (v,Tv) = (dest_Free o term_of) cv
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26653
diff changeset
   229
	    val _ = Output.debug (fn()=>"  recursion: " ^ Display.string_of_cterm cta);
24827
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   230
	    val u_th = combinators_aux cta
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26653
diff changeset
   231
	    val _ = Output.debug (fn()=>"  returned " ^ Display.string_of_thm u_th);
24827
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   232
	    val cu = Thm.rhs_of u_th
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   233
	    val comb_eq = abstract (Thm.cabs cv cu)
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26653
diff changeset
   234
	in Output.debug (fn()=>"  abstraction result: " ^ Display.string_of_thm comb_eq);
24827
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   235
	   (transitive (abstract_rule v cv u_th) comb_eq) end
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   236
    | t1 $ t2 =>
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   237
	let val (ct1,ct2) = Thm.dest_comb ct
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   238
	in  combination (combinators_aux ct1) (combinators_aux ct2)  end;
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   239
            
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   240
fun combinators th =
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   241
  if lambda_free (prop_of th) then th 
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   242
  else
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26653
diff changeset
   243
    let val _ = Output.debug (fn()=>"Conversion to combinators: " ^ Display.string_of_thm th);
24827
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   244
	val th = Drule.eta_contraction_rule th
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   245
	val eqth = combinators_aux (cprop_of th)
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26653
diff changeset
   246
	val _ = Output.debug (fn()=>"Conversion result: " ^ Display.string_of_thm eqth);
25256
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   247
    in  equal_elim eqth th   end
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   248
    handle THM (msg,_,_) => 
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26653
diff changeset
   249
      (warning ("Error in the combinator translation of " ^ Display.string_of_thm th);
25256
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   250
       warning ("  Exception message: " ^ msg);
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   251
       TrueI);  (*A type variable of sort {} will cause make abstraction fail.*)
16009
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   252
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   253
(*cterms are used throughout for efficiency*)
18141
89e2e8bed08f Skolemization by inference, but not quite finished
paulson
parents: 18009
diff changeset
   254
val cTrueprop = Thm.cterm_of HOL.thy HOLogic.Trueprop;
16009
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   255
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   256
(*cterm version of mk_cTrueprop*)
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   257
fun c_mkTrueprop A = Thm.capply cTrueprop A;
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   258
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   259
(*Given an abstraction over n variables, replace the bound variables by free
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   260
  ones. Return the body, along with the list of free variables.*)
20461
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   261
fun c_variant_abs_multi (ct0, vars) =
16009
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   262
      let val (cv,ct) = Thm.dest_abs NONE ct0
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   263
      in  c_variant_abs_multi (ct, cv::vars)  end
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   264
      handle CTERM _ => (ct0, rev vars);
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   265
20461
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   266
(*Given the definition of a Skolem function, return a theorem to replace
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   267
  an existential formula by a use of that function.
18141
89e2e8bed08f Skolemization by inference, but not quite finished
paulson
parents: 18009
diff changeset
   268
   Example: "EX x. x : A & x ~: B ==> sko A B : A & sko A B ~: B"  [.] *)
20461
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   269
fun skolem_of_def def =
22902
ac833b4bb7ee moved some Drule operations to Thm (see more_thm.ML);
wenzelm
parents: 22846
diff changeset
   270
  let val (c,rhs) = Thm.dest_equals (cprop_of (freeze_thm def))
16009
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   271
      val (ch, frees) = c_variant_abs_multi (rhs, [])
18141
89e2e8bed08f Skolemization by inference, but not quite finished
paulson
parents: 18009
diff changeset
   272
      val (chilbert,cabs) = Thm.dest_comb ch
26627
dac6d56b7c8d rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents: 26618
diff changeset
   273
      val thy = Thm.theory_of_cterm chilbert
dac6d56b7c8d rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents: 26618
diff changeset
   274
      val t = Thm.term_of chilbert
18141
89e2e8bed08f Skolemization by inference, but not quite finished
paulson
parents: 18009
diff changeset
   275
      val T = case t of Const ("Hilbert_Choice.Eps", Type("fun",[_,T])) => T
89e2e8bed08f Skolemization by inference, but not quite finished
paulson
parents: 18009
diff changeset
   276
                      | _ => raise THM ("skolem_of_def: expected Eps", 0, [def])
22596
d0d2af4db18f rep_thm/cterm/ctyp: removed obsolete sign field;
wenzelm
parents: 22516
diff changeset
   277
      val cex = Thm.cterm_of thy (HOLogic.exists_const T)
16009
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   278
      val ex_tm = c_mkTrueprop (Thm.capply cex cabs)
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   279
      and conc =  c_mkTrueprop (Drule.beta_conv cabs (Drule.list_comb(c,frees)));
18141
89e2e8bed08f Skolemization by inference, but not quite finished
paulson
parents: 18009
diff changeset
   280
      fun tacf [prem] = rewrite_goals_tac [def] THEN rtac (prem RS someI_ex) 1
23352
356edb5eb1c4 renamed Goal.prove_raw to Goal.prove_internal;
wenzelm
parents: 22902
diff changeset
   281
  in  Goal.prove_internal [ex_tm] conc tacf
18141
89e2e8bed08f Skolemization by inference, but not quite finished
paulson
parents: 18009
diff changeset
   282
       |> forall_intr_list frees
26653
60e0cf6bef89 Thm.forall_elim_var(s);
wenzelm
parents: 26627
diff changeset
   283
       |> Thm.forall_elim_vars 0  (*Introduce Vars, but don't discharge defs.*)
18141
89e2e8bed08f Skolemization by inference, but not quite finished
paulson
parents: 18009
diff changeset
   284
       |> Thm.varifyT
89e2e8bed08f Skolemization by inference, but not quite finished
paulson
parents: 18009
diff changeset
   285
  end;
16009
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   286
24742
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   287
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   288
(*This will refer to the final version of theory ATP_Linkup.*)
27174
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
   289
val atp_linkup_thy_ref = @{theory_ref}
24742
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   290
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   291
(*Transfer a theorem into theory ATP_Linkup.thy if it is not already
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   292
  inside that theory -- because it's needed for Skolemization.
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   293
  If called while ATP_Linkup is being created, it will transfer to the
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   294
  current version. If called afterward, it will transfer to the final version.*)
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   295
fun transfer_to_ATP_Linkup th =
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   296
    transfer (Theory.deref atp_linkup_thy_ref) th handle THM _ => th;
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   297
20863
4ee61dbf192d improvements to abstraction, ensuring more re-use of abstraction functions
paulson
parents: 20789
diff changeset
   298
(*Converts an Isabelle theorem (intro, elim or simp format, even higher-order) into NNF.*)
24937
340523598914 context-based treatment of generalization; also handling TFrees in axiom clauses
paulson
parents: 24854
diff changeset
   299
fun to_nnf th ctxt0 =
340523598914 context-based treatment of generalization; also handling TFrees in axiom clauses
paulson
parents: 24854
diff changeset
   300
  let val th1 = th |> transfer_to_ATP_Linkup |> transform_elim |> zero_var_indexes
340523598914 context-based treatment of generalization; also handling TFrees in axiom clauses
paulson
parents: 24854
diff changeset
   301
      val ((_,[th2]),ctxt) = Variable.import_thms false [th1] ctxt0
340523598914 context-based treatment of generalization; also handling TFrees in axiom clauses
paulson
parents: 24854
diff changeset
   302
      val th3 = th2 |> Conv.fconv_rule ObjectLogic.atomize |> Meson.make_nnf |> strip_lambdas ~1
340523598914 context-based treatment of generalization; also handling TFrees in axiom clauses
paulson
parents: 24854
diff changeset
   303
  in  (th3, ctxt)  end;
16009
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   304
18141
89e2e8bed08f Skolemization by inference, but not quite finished
paulson
parents: 18009
diff changeset
   305
(*Generate Skolem functions for a theorem supplied in nnf*)
24937
340523598914 context-based treatment of generalization; also handling TFrees in axiom clauses
paulson
parents: 24854
diff changeset
   306
fun assume_skolem_of_def s th =
22731
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   307
  map (skolem_of_def o assume o (cterm_of (theory_of_thm th))) (assume_skofuns s th);
18141
89e2e8bed08f Skolemization by inference, but not quite finished
paulson
parents: 18009
diff changeset
   308
24669
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
   309
fun assert_lambda_free ths msg =
20863
4ee61dbf192d improvements to abstraction, ensuring more re-use of abstraction functions
paulson
parents: 20789
diff changeset
   310
  case filter (not o lambda_free o prop_of) ths of
4ee61dbf192d improvements to abstraction, ensuring more re-use of abstraction functions
paulson
parents: 20789
diff changeset
   311
      [] => ()
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26653
diff changeset
   312
    | ths' => error (msg ^ "\n" ^ cat_lines (map Display.string_of_thm ths'));
20457
85414caac94a refinements to conversion into clause form, esp for the HO case
paulson
parents: 20445
diff changeset
   313
25007
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   314
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   315
(*** Blacklisting (duplicated in ResAtp? ***)
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   316
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   317
val max_lambda_nesting = 3;
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   318
     
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   319
fun excessive_lambdas (f$t, k) = excessive_lambdas (f,k) orelse excessive_lambdas (t,k)
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   320
  | excessive_lambdas (Abs(_,_,t), k) = k=0 orelse excessive_lambdas (t,k-1)
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   321
  | excessive_lambdas _ = false;
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   322
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   323
fun is_formula_type T = (T = HOLogic.boolT orelse T = propT);
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   324
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   325
(*Don't count nested lambdas at the level of formulas, as they are quantifiers*)
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   326
fun excessive_lambdas_fm Ts (Abs(_,T,t)) = excessive_lambdas_fm (T::Ts) t
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   327
  | excessive_lambdas_fm Ts t =
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   328
      if is_formula_type (fastype_of1 (Ts, t))
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   329
      then exists (excessive_lambdas_fm Ts) (#2 (strip_comb t))
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   330
      else excessive_lambdas (t, max_lambda_nesting);
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   331
25256
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   332
(*The max apply_depth of any metis call in MetisExamples (on 31-10-2007) was 11.*)
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   333
val max_apply_depth = 15;
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   334
     
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   335
fun apply_depth (f$t) = Int.max (apply_depth f, apply_depth t + 1)
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   336
  | apply_depth (Abs(_,_,t)) = apply_depth t
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   337
  | apply_depth _ = 0;
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   338
25007
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   339
fun too_complex t = 
25256
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   340
  apply_depth t > max_apply_depth orelse 
26562
9d25ef112cf6 * Metis: the maximum number of clauses that can be produced from a theorem is now given by the attribute max_clauses. Theorems that exceed this number are ignored, with a warning printed.
paulson
parents: 25761
diff changeset
   341
  Meson.too_many_clauses NONE t orelse
25256
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   342
  excessive_lambdas_fm [] t;
25007
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   343
  
25243
78f8aaa27493 bugfixes concerning strange theorems
paulson
parents: 25007
diff changeset
   344
fun is_strange_thm th =
78f8aaa27493 bugfixes concerning strange theorems
paulson
parents: 25007
diff changeset
   345
  case head_of (concl_of th) of
78f8aaa27493 bugfixes concerning strange theorems
paulson
parents: 25007
diff changeset
   346
      Const (a,_) => (a <> "Trueprop" andalso a <> "==")
78f8aaa27493 bugfixes concerning strange theorems
paulson
parents: 25007
diff changeset
   347
    | _ => false;
78f8aaa27493 bugfixes concerning strange theorems
paulson
parents: 25007
diff changeset
   348
78f8aaa27493 bugfixes concerning strange theorems
paulson
parents: 25007
diff changeset
   349
fun bad_for_atp th = 
25761
466e714de2fc testing for empty sort
paulson
parents: 25256
diff changeset
   350
  PureThy.is_internal th     
466e714de2fc testing for empty sort
paulson
parents: 25256
diff changeset
   351
  orelse too_complex (prop_of th)   
466e714de2fc testing for empty sort
paulson
parents: 25256
diff changeset
   352
  orelse exists_type type_has_empty_sort (prop_of th)  
466e714de2fc testing for empty sort
paulson
parents: 25256
diff changeset
   353
  orelse is_strange_thm th;
25243
78f8aaa27493 bugfixes concerning strange theorems
paulson
parents: 25007
diff changeset
   354
25007
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   355
val multi_base_blacklist =
25256
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   356
  ["defs","select_defs","update_defs","induct","inducts","split","splits","split_asm",
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   357
   "cases","ext_cases"];  (*FIXME: put other record thms here, or use the "Internal" marker*)
25007
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   358
21071
8d0245c5ed9e Fixed the "exception Empty" bug in elim2Fol
paulson
parents: 20996
diff changeset
   359
(*Keep the full complexity of the original name*)
21858
05f57309170c avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents: 21646
diff changeset
   360
fun flatten_name s = space_implode "_X" (NameSpace.explode s);
21071
8d0245c5ed9e Fixed the "exception Empty" bug in elim2Fol
paulson
parents: 20996
diff changeset
   361
22731
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   362
fun fake_name th =
24669
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
   363
  if PureThy.has_name_hint th then flatten_name (PureThy.get_name_hint th)
22731
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   364
  else gensym "unknown_thm_";
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   365
24742
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   366
fun name_or_string th =
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   367
  if PureThy.has_name_hint th then PureThy.get_name_hint th
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26653
diff changeset
   368
  else Display.string_of_thm th;
24742
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   369
18510
0a6c24f549c3 the "skolem" attribute and better initialization of the clause database
paulson
parents: 18404
diff changeset
   370
(*Declare Skolem functions for a theorem, supplied in nnf and with its name.
0a6c24f549c3 the "skolem" attribute and better initialization of the clause database
paulson
parents: 18404
diff changeset
   371
  It returns a modified theory, unless skolemization fails.*)
27174
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
   372
fun skolem th thy =
24937
340523598914 context-based treatment of generalization; also handling TFrees in axiom clauses
paulson
parents: 24854
diff changeset
   373
  let val ctxt0 = Variable.thm_context th
25256
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   374
      val _ = Output.debug (fn () => "skolemizing " ^ name_or_string th)
24937
340523598914 context-based treatment of generalization; also handling TFrees in axiom clauses
paulson
parents: 24854
diff changeset
   375
  in
22731
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   376
     Option.map
24937
340523598914 context-based treatment of generalization; also handling TFrees in axiom clauses
paulson
parents: 24854
diff changeset
   377
        (fn (nnfth,ctxt1) =>
25256
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   378
          let 
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26653
diff changeset
   379
              val _ = Output.debug (fn () => "  initial nnf: " ^ Display.string_of_thm nnfth)
24742
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   380
              val s = fake_name th
27174
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
   381
              val (defs,thy') = declare_skofuns s nnfth thy
24937
340523598914 context-based treatment of generalization; also handling TFrees in axiom clauses
paulson
parents: 24854
diff changeset
   382
              val (cnfs,ctxt2) = Meson.make_cnf (map skolem_of_def defs) nnfth ctxt1
24742
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   383
              val _ = Output.debug (fn () => Int.toString (length cnfs) ^ " clauses yielded")
24937
340523598914 context-based treatment of generalization; also handling TFrees in axiom clauses
paulson
parents: 24854
diff changeset
   384
              val cnfs' = cnfs |> map combinators |> Variable.export ctxt2 ctxt0 
26627
dac6d56b7c8d rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents: 26618
diff changeset
   385
                               |> Meson.finish_cnf |> map Thm.close_derivation
24937
340523598914 context-based treatment of generalization; also handling TFrees in axiom clauses
paulson
parents: 24854
diff changeset
   386
          in (cnfs', thy') end
24742
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   387
          handle Clausify_failure thy_e => ([],thy_e)
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   388
        )
24937
340523598914 context-based treatment of generalization; also handling TFrees in axiom clauses
paulson
parents: 24854
diff changeset
   389
      (try (to_nnf th) ctxt0)
340523598914 context-based treatment of generalization; also handling TFrees in axiom clauses
paulson
parents: 24854
diff changeset
   390
  end;
16009
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   391
24742
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   392
(*The cache prevents repeated clausification of a theorem, and also repeated declaration of
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   393
  Skolem functions.*)
22516
c986140356b8 Clause cache is now in theory data.
paulson
parents: 22471
diff changeset
   394
structure ThmCache = TheoryDataFun
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22731
diff changeset
   395
(
26618
wenzelm
parents: 26562
diff changeset
   396
  type T = thm list Thmtab.table;
24742
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   397
  val empty = Thmtab.empty;
26618
wenzelm
parents: 26562
diff changeset
   398
  val copy = I;
wenzelm
parents: 26562
diff changeset
   399
  val extend = I;
wenzelm
parents: 26562
diff changeset
   400
  fun merge _ tabs : T = Thmtab.merge (K true) tabs;
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22731
diff changeset
   401
);
22516
c986140356b8 Clause cache is now in theory data.
paulson
parents: 22471
diff changeset
   402
18510
0a6c24f549c3 the "skolem" attribute and better initialization of the clause database
paulson
parents: 18404
diff changeset
   403
(*Populate the clause cache using the supplied theorem. Return the clausal form
0a6c24f549c3 the "skolem" attribute and better initialization of the clause database
paulson
parents: 18404
diff changeset
   404
  and modified theory.*)
24742
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   405
fun skolem_cache_thm th thy =
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   406
  case Thmtab.lookup (ThmCache.get thy) th of
20461
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   407
      NONE =>
27174
c2c484480f40 declare_skofuns/skolem: canonical argument order;
wenzelm
parents: 26939
diff changeset
   408
        (case skolem (Thm.transfer thy th) thy of
20461
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   409
             NONE => ([th],thy)
24669
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
   410
           | SOME (cls,thy') =>
24785
197e4df96fd4 llabs/sko: removed Name.internal;
wenzelm
parents: 24771
diff changeset
   411
                 (Output.debug (fn () => "skolem_cache_thm: " ^ Int.toString (length cls) ^
24742
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   412
                                         " clauses inserted into cache: " ^ name_or_string th);
24821
cc55041ca8ba skolem_cache: ignore internal theorems -- major speedup;
wenzelm
parents: 24785
diff changeset
   413
                  (cls, ThmCache.map (Thmtab.update (th,cls)) thy')))
22471
7c51f1a799f3 Removal of axiom names from the theorem cache
paulson
parents: 22360
diff changeset
   414
    | SOME cls => (cls,thy);
20461
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   415
25007
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   416
(*Skolemize a named theorem, with Skolem functions as additional premises.*)
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   417
fun skolem_thm (s,th) =
25243
78f8aaa27493 bugfixes concerning strange theorems
paulson
parents: 25007
diff changeset
   418
  if (Sign.base_name s) mem_string multi_base_blacklist orelse bad_for_atp th then []
25007
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   419
  else 
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   420
      let val ctxt0 = Variable.thm_context th
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   421
	  val (nnfth,ctxt1) = to_nnf th ctxt0
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   422
	  val (cnfs,ctxt2) = Meson.make_cnf (assume_skolem_of_def s nnfth) nnfth ctxt1
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   423
      in  cnfs |> map combinators |> Variable.export ctxt2 ctxt0 |> Meson.finish_cnf  end
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   424
      handle THM _ => [];
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   425
20461
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   426
(*Exported function to convert Isabelle theorems into axiom clauses*)
22471
7c51f1a799f3 Removal of axiom names from the theorem cache
paulson
parents: 22360
diff changeset
   427
fun cnf_axiom th =
24742
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   428
  let val thy = Theory.merge (Theory.deref atp_linkup_thy_ref, Thm.theory_of_thm th)
22516
c986140356b8 Clause cache is now in theory data.
paulson
parents: 22471
diff changeset
   429
  in
24742
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   430
      case Thmtab.lookup (ThmCache.get thy) th of
24821
cc55041ca8ba skolem_cache: ignore internal theorems -- major speedup;
wenzelm
parents: 24785
diff changeset
   431
          NONE => (Output.debug (fn () => "cnf_axiom: " ^ name_or_string th);
26627
dac6d56b7c8d rep_cterm/rep_thm: no longer dereference theory_ref;
wenzelm
parents: 26618
diff changeset
   432
                   map Thm.close_derivation (skolem_thm (fake_name th, th)))
24821
cc55041ca8ba skolem_cache: ignore internal theorems -- major speedup;
wenzelm
parents: 24785
diff changeset
   433
        | SOME cls => cls
22516
c986140356b8 Clause cache is now in theory data.
paulson
parents: 22471
diff changeset
   434
  end;
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   435
21646
c07b5b0e8492 thm/prf: separate official name vs. additional tags;
wenzelm
parents: 21602
diff changeset
   436
fun pairname th = (PureThy.get_name_hint th, th);
18141
89e2e8bed08f Skolemization by inference, but not quite finished
paulson
parents: 18009
diff changeset
   437
15872
8336ff711d80 fixed treatment of higher-order simprules
paulson
parents: 15736
diff changeset
   438
(**** Extract and Clausify theorems from a theory's claset and simpset ****)
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   439
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17412
diff changeset
   440
fun rules_of_claset cs =
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17412
diff changeset
   441
  let val {safeIs,safeEs,hazIs,hazEs,...} = rep_cs cs
19175
c6e4b073f6a5 subset_refl now included using the atp attribute
paulson
parents: 19113
diff changeset
   442
      val intros = safeIs @ hazIs
18532
0347c1bba406 elim rules: Classical.classical_rule;
wenzelm
parents: 18510
diff changeset
   443
      val elims  = map Classical.classical_rule (safeEs @ hazEs)
17404
d16c3a62c396 the experimental tagging system, and the usual tidying
paulson
parents: 17279
diff changeset
   444
  in
22130
0906fd95e0b5 Output.debug: non-strict;
wenzelm
parents: 21999
diff changeset
   445
     Output.debug (fn () => "rules_of_claset intros: " ^ Int.toString(length intros) ^
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17412
diff changeset
   446
            " elims: " ^ Int.toString(length elims));
20017
a2070352371c made the conversion of elimination rules more robust
paulson
parents: 19894
diff changeset
   447
     map pairname (intros @ elims)
17404
d16c3a62c396 the experimental tagging system, and the usual tidying
paulson
parents: 17279
diff changeset
   448
  end;
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   449
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17412
diff changeset
   450
fun rules_of_simpset ss =
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17412
diff changeset
   451
  let val ({rules,...}, _) = rep_ss ss
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17412
diff changeset
   452
      val simps = Net.entries rules
20461
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   453
  in
22130
0906fd95e0b5 Output.debug: non-strict;
wenzelm
parents: 21999
diff changeset
   454
    Output.debug (fn () => "rules_of_simpset: " ^ Int.toString(length simps));
0906fd95e0b5 Output.debug: non-strict;
wenzelm
parents: 21999
diff changeset
   455
    map (fn r => (#name r, #thm r)) simps
17484
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17412
diff changeset
   456
  end;
f6a225f97f0a simplification of the Isabelle-ATP code; hooks for batch generation of problems
paulson
parents: 17412
diff changeset
   457
21505
13d4dba99337 prefer Proof.context over Context.generic;
wenzelm
parents: 21470
diff changeset
   458
fun claset_rules_of ctxt = rules_of_claset (local_claset_of ctxt);
13d4dba99337 prefer Proof.context over Context.generic;
wenzelm
parents: 21470
diff changeset
   459
fun simpset_rules_of ctxt = rules_of_simpset (local_simpset_of ctxt);
19196
62ee8c10d796 Added functions to retrieve local and global atpset rules.
mengj
parents: 19175
diff changeset
   460
24042
968f42fe6836 simplified ResAtpset via NamedThmsFun;
wenzelm
parents: 23592
diff changeset
   461
fun atpset_rules_of ctxt = map pairname (ResAtpset.get ctxt);
20774
8f947ffb5eb8 ResAtpset.get_atpset;
wenzelm
parents: 20710
diff changeset
   462
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   463
22471
7c51f1a799f3 Removal of axiom names from the theorem cache
paulson
parents: 22360
diff changeset
   464
(**** Translate a set of theorems into CNF ****)
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   465
19894
7c7e15b27145 the "all_theorems" option and some fixes
paulson
parents: 19630
diff changeset
   466
fun pair_name_cls k (n, []) = []
7c7e15b27145 the "all_theorems" option and some fixes
paulson
parents: 19630
diff changeset
   467
  | pair_name_cls k (n, cls::clss) = (cls, (n,k)) :: pair_name_cls (k+1) (n, clss)
20461
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   468
19894
7c7e15b27145 the "all_theorems" option and some fixes
paulson
parents: 19630
diff changeset
   469
fun cnf_rules_pairs_aux pairs [] = pairs
7c7e15b27145 the "all_theorems" option and some fixes
paulson
parents: 19630
diff changeset
   470
  | cnf_rules_pairs_aux pairs ((name,th)::ths) =
22471
7c51f1a799f3 Removal of axiom names from the theorem cache
paulson
parents: 22360
diff changeset
   471
      let val pairs' = (pair_name_cls 0 (name, cnf_axiom th)) @ pairs
20461
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   472
                       handle THM _ => pairs | ResClause.CLAUSE _ => pairs
19894
7c7e15b27145 the "all_theorems" option and some fixes
paulson
parents: 19630
diff changeset
   473
      in  cnf_rules_pairs_aux pairs' ths  end;
20461
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   474
21290
33b6bb5d6ab8 Improvement to classrel clauses: now outputs the minimum needed.
paulson
parents: 21254
diff changeset
   475
(*The combination of rev and tail recursion preserves the original order*)
33b6bb5d6ab8 Improvement to classrel clauses: now outputs the minimum needed.
paulson
parents: 21254
diff changeset
   476
fun cnf_rules_pairs l = cnf_rules_pairs_aux [] (rev l);
19353
36b6b15ee670 added another function for CNF.
mengj
parents: 19232
diff changeset
   477
19196
62ee8c10d796 Added functions to retrieve local and global atpset rules.
mengj
parents: 19175
diff changeset
   478
18198
95330fc0ea8d -- combined common CNF functions used by HOL and FOL axioms, the difference between conversion of HOL and FOL theorems only comes in when theorems are converted to ResClause.clause or ResHolClause.clause format.
mengj
parents: 18144
diff changeset
   479
(**** Convert all theorems of a claset/simpset into clauses (ResClause.clause, or ResHolClause.clause) ****)
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   480
20419
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
   481
(*Setup function: takes a theory and installs ALL known theorems into the clause cache*)
20457
85414caac94a refinements to conversion into clause form, esp for the HO case
paulson
parents: 20445
diff changeset
   482
24742
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   483
val mark_skolemized = Sign.add_consts_i [("ResAxioms_endtheory", HOLogic.boolT, NoSyn)];
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   484
24821
cc55041ca8ba skolem_cache: ignore internal theorems -- major speedup;
wenzelm
parents: 24785
diff changeset
   485
fun skolem_cache th thy =
25243
78f8aaa27493 bugfixes concerning strange theorems
paulson
parents: 25007
diff changeset
   486
  if bad_for_atp th then thy else #2 (skolem_cache_thm th thy);
24742
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   487
24854
0ebcd575d3c6 filtering out some package theorems
paulson
parents: 24827
diff changeset
   488
fun skolem_cache_list (a,ths) thy =
0ebcd575d3c6 filtering out some package theorems
paulson
parents: 24827
diff changeset
   489
  if (Sign.base_name a) mem_string multi_base_blacklist then thy
0ebcd575d3c6 filtering out some package theorems
paulson
parents: 24827
diff changeset
   490
  else fold skolem_cache ths thy;
0ebcd575d3c6 filtering out some package theorems
paulson
parents: 24827
diff changeset
   491
0ebcd575d3c6 filtering out some package theorems
paulson
parents: 24827
diff changeset
   492
val skolem_cache_theorems_of = Symtab.fold skolem_cache_list o #2 o PureThy.theorems_of;
24821
cc55041ca8ba skolem_cache: ignore internal theorems -- major speedup;
wenzelm
parents: 24785
diff changeset
   493
fun skolem_cache_node thy = skolem_cache_theorems_of thy thy;
cc55041ca8ba skolem_cache: ignore internal theorems -- major speedup;
wenzelm
parents: 24785
diff changeset
   494
fun skolem_cache_all thy = fold skolem_cache_theorems_of (thy :: Theory.ancestors_of thy) thy;
20457
85414caac94a refinements to conversion into clause form, esp for the HO case
paulson
parents: 20445
diff changeset
   495
22516
c986140356b8 Clause cache is now in theory data.
paulson
parents: 22471
diff changeset
   496
(*The cache can be kept smaller by inspecting the prop of each thm. Can ignore all that are
c986140356b8 Clause cache is now in theory data.
paulson
parents: 22471
diff changeset
   497
  lambda_free, but then the individual theory caches become much bigger.*)
21071
8d0245c5ed9e Fixed the "exception Empty" bug in elim2Fol
paulson
parents: 20996
diff changeset
   498
25256
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   499
val suppress_endtheory = ref false;
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   500
24742
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   501
(*The new constant is a hack to prevent multiple execution*)
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   502
fun clause_cache_endtheory thy =
25256
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   503
  if !suppress_endtheory then NONE
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   504
  else
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   505
   (Output.debug (fn () => "RexAxioms end theory action: " ^ Context.str_of_thy thy);
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   506
    Option.map skolem_cache_node (try mark_skolemized thy) );
16563
a92f96951355 meson method taking an argument list
paulson
parents: 16173
diff changeset
   507
a92f96951355 meson method taking an argument list
paulson
parents: 16173
diff changeset
   508
(*** meson proof methods ***)
a92f96951355 meson method taking an argument list
paulson
parents: 16173
diff changeset
   509
22516
c986140356b8 Clause cache is now in theory data.
paulson
parents: 22471
diff changeset
   510
fun cnf_rules_of_ths ths = List.concat (map cnf_axiom ths);
16563
a92f96951355 meson method taking an argument list
paulson
parents: 16173
diff changeset
   511
22731
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   512
(*Expand all new*definitions of abstraction or Skolem functions in a proof state.*)
24827
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   513
fun is_absko (Const ("==", _) $ Free (a,_) $ u) = String.isPrefix "sko_" a
22731
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   514
  | is_absko _ = false;
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   515
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   516
fun is_okdef xs (Const ("==", _) $ t $ u) =   (*Definition of Free, not in certain terms*)
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   517
      is_Free t andalso not (member (op aconv) xs t)
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   518
  | is_okdef _ _ = false
22724
3002683a6e0f Fixes for proof reconstruction, especially involving abstractions and definitions
paulson
parents: 22691
diff changeset
   519
24215
5458fbf18276 removal of some refs
paulson
parents: 24137
diff changeset
   520
(*This function tries to cope with open locales, which introduce hypotheses of the form
5458fbf18276 removal of some refs
paulson
parents: 24137
diff changeset
   521
  Free == t, conjecture clauses, which introduce various hypotheses, and also definitions
24827
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   522
  of sko_ functions. *)
22731
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   523
fun expand_defs_tac st0 st =
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   524
  let val hyps0 = #hyps (rep_thm st0)
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   525
      val hyps = #hyps (crep_thm st)
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   526
      val newhyps = filter_out (member (op aconv) hyps0 o Thm.term_of) hyps
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   527
      val defs = filter (is_absko o Thm.term_of) newhyps
24669
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
   528
      val remaining_hyps = filter_out (member (op aconv) (map Thm.term_of defs))
22731
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   529
                                      (map Thm.term_of hyps)
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   530
      val fixed = term_frees (concl_of st) @
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   531
                  foldl (gen_union (op aconv)) [] (map term_frees remaining_hyps)
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26653
diff changeset
   532
  in  Output.debug (fn _ => "expand_defs_tac: " ^ Display.string_of_thm st);
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26653
diff changeset
   533
      Output.debug (fn _ => "  st0: " ^ Display.string_of_thm st0);
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26653
diff changeset
   534
      Output.debug (fn _ => "  defs: " ^ commas (map Display.string_of_cterm defs));
22731
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   535
      Seq.of_list [LocalDefs.expand (filter (is_okdef fixed o Thm.term_of) defs) st]
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   536
  end;
22724
3002683a6e0f Fixes for proof reconstruction, especially involving abstractions and definitions
paulson
parents: 22691
diff changeset
   537
22731
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   538
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   539
fun meson_general_tac ths i st0 =
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 26653
diff changeset
   540
 let val _ = Output.debug (fn () => "Meson called: " ^ cat_lines (map Display.string_of_thm ths))
22731
abfdccaed085 trying to make single-step proofs work better, especially if they contain
paulson
parents: 22724
diff changeset
   541
 in  (Meson.meson_claset_tac (cnf_rules_of_ths ths) HOL_cs i THEN expand_defs_tac st0) st0 end;
22724
3002683a6e0f Fixes for proof reconstruction, especially involving abstractions and definitions
paulson
parents: 22691
diff changeset
   542
21588
cd0dc678a205 simplified method setup;
wenzelm
parents: 21505
diff changeset
   543
val meson_method_setup = Method.add_methods
cd0dc678a205 simplified method setup;
wenzelm
parents: 21505
diff changeset
   544
  [("meson", Method.thms_args (fn ths =>
22724
3002683a6e0f Fixes for proof reconstruction, especially involving abstractions and definitions
paulson
parents: 22691
diff changeset
   545
      Method.SIMPLE_METHOD' (CHANGED_PROP o meson_general_tac ths)),
21588
cd0dc678a205 simplified method setup;
wenzelm
parents: 21505
diff changeset
   546
    "MESON resolution proof procedure")];
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   547
21102
7f2ebe5c5b72 Conversion to clause form now tolerates Boolean variables without looping.
paulson
parents: 21096
diff changeset
   548
(** Attribute for converting a theorem into clauses **)
18510
0a6c24f549c3 the "skolem" attribute and better initialization of the clause database
paulson
parents: 18404
diff changeset
   549
22471
7c51f1a799f3 Removal of axiom names from the theorem cache
paulson
parents: 22360
diff changeset
   550
fun meta_cnf_axiom th = map Meson.make_meta_clause (cnf_axiom th);
18510
0a6c24f549c3 the "skolem" attribute and better initialization of the clause database
paulson
parents: 18404
diff changeset
   551
21102
7f2ebe5c5b72 Conversion to clause form now tolerates Boolean variables without looping.
paulson
parents: 21096
diff changeset
   552
fun clausify_rule (th,i) = List.nth (meta_cnf_axiom th, i)
7f2ebe5c5b72 Conversion to clause form now tolerates Boolean variables without looping.
paulson
parents: 21096
diff changeset
   553
7f2ebe5c5b72 Conversion to clause form now tolerates Boolean variables without looping.
paulson
parents: 21096
diff changeset
   554
val clausify = Attrib.syntax (Scan.lift Args.nat
7f2ebe5c5b72 Conversion to clause form now tolerates Boolean variables without looping.
paulson
parents: 21096
diff changeset
   555
  >> (fn i => Thm.rule_attribute (fn _ => fn th => clausify_rule (th, i))));
7f2ebe5c5b72 Conversion to clause form now tolerates Boolean variables without looping.
paulson
parents: 21096
diff changeset
   556
21999
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21900
diff changeset
   557
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21900
diff changeset
   558
(*** Converting a subgoal into negated conjecture clauses. ***)
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21900
diff changeset
   559
24300
e170cee91c66 proper signature for Meson;
wenzelm
parents: 24215
diff changeset
   560
val neg_skolemize_tac = EVERY' [rtac ccontr, ObjectLogic.atomize_prems_tac, Meson.skolemize_tac];
22471
7c51f1a799f3 Removal of axiom names from the theorem cache
paulson
parents: 22360
diff changeset
   561
24937
340523598914 context-based treatment of generalization; also handling TFrees in axiom clauses
paulson
parents: 24854
diff changeset
   562
fun neg_clausify sts =
340523598914 context-based treatment of generalization; also handling TFrees in axiom clauses
paulson
parents: 24854
diff changeset
   563
  sts |> Meson.make_clauses |> map combinators |> Meson.finish_cnf;
21999
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21900
diff changeset
   564
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21900
diff changeset
   565
fun neg_conjecture_clauses st0 n =
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21900
diff changeset
   566
  let val st = Seq.hd (neg_skolemize_tac n st0)
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21900
diff changeset
   567
      val (params,_,_) = strip_context (Logic.nth_prem (n, Thm.prop_of st))
22516
c986140356b8 Clause cache is now in theory data.
paulson
parents: 22471
diff changeset
   568
  in (neg_clausify (Option.valOf (metahyps_thms n st)), params) end
c986140356b8 Clause cache is now in theory data.
paulson
parents: 22471
diff changeset
   569
  handle Option => raise ERROR "unable to Skolemize subgoal";
21999
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21900
diff changeset
   570
24669
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
   571
(*Conversion of a subgoal to conjecture clauses. Each clause has
21999
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21900
diff changeset
   572
  leading !!-bound universal variables, to express generality. *)
24669
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
   573
val neg_clausify_tac =
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
   574
  neg_skolemize_tac THEN'
21999
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21900
diff changeset
   575
  SUBGOAL
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21900
diff changeset
   576
    (fn (prop,_) =>
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21900
diff changeset
   577
     let val ts = Logic.strip_assums_hyp prop
24669
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
   578
     in EVERY1
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
   579
         [METAHYPS
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
   580
            (fn hyps =>
21999
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21900
diff changeset
   581
              (Method.insert_tac
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21900
diff changeset
   582
                (map forall_intr_vars (neg_clausify hyps)) 1)),
24669
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
   583
          REPEAT_DETERM_N (length ts) o (etac thin_rl)]
21999
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21900
diff changeset
   584
     end);
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21900
diff changeset
   585
21102
7f2ebe5c5b72 Conversion to clause form now tolerates Boolean variables without looping.
paulson
parents: 21096
diff changeset
   586
(** The Skolemization attribute **)
18510
0a6c24f549c3 the "skolem" attribute and better initialization of the clause database
paulson
parents: 18404
diff changeset
   587
0a6c24f549c3 the "skolem" attribute and better initialization of the clause database
paulson
parents: 18404
diff changeset
   588
fun conj2_rule (th1,th2) = conjI OF [th1,th2];
0a6c24f549c3 the "skolem" attribute and better initialization of the clause database
paulson
parents: 18404
diff changeset
   589
20457
85414caac94a refinements to conversion into clause form, esp for the HO case
paulson
parents: 20445
diff changeset
   590
(*Conjoin a list of theorems to form a single theorem*)
85414caac94a refinements to conversion into clause form, esp for the HO case
paulson
parents: 20445
diff changeset
   591
fun conj_rule []  = TrueI
20445
b222d9939e00 improvements to abstraction generation
paulson
parents: 20421
diff changeset
   592
  | conj_rule ths = foldr1 conj2_rule ths;
18510
0a6c24f549c3 the "skolem" attribute and better initialization of the clause database
paulson
parents: 18404
diff changeset
   593
20419
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
   594
fun skolem_attr (Context.Theory thy, th) =
24742
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   595
      let val (cls, thy') = skolem_cache_thm th thy
18728
6790126ab5f6 simplified type attribute;
wenzelm
parents: 18708
diff changeset
   596
      in (Context.Theory thy', conj_rule cls) end
22724
3002683a6e0f Fixes for proof reconstruction, especially involving abstractions and definitions
paulson
parents: 22691
diff changeset
   597
  | skolem_attr (context, th) = (context, th)
18510
0a6c24f549c3 the "skolem" attribute and better initialization of the clause database
paulson
parents: 18404
diff changeset
   598
0a6c24f549c3 the "skolem" attribute and better initialization of the clause database
paulson
parents: 18404
diff changeset
   599
val setup_attrs = Attrib.add_attributes
21102
7f2ebe5c5b72 Conversion to clause form now tolerates Boolean variables without looping.
paulson
parents: 21096
diff changeset
   600
  [("skolem", Attrib.no_args skolem_attr, "skolemization of a theorem"),
21999
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21900
diff changeset
   601
   ("clausify", clausify, "conversion of theorem to clauses")];
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21900
diff changeset
   602
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21900
diff changeset
   603
val setup_methods = Method.add_methods
24669
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
   604
  [("neg_clausify", Method.no_args (Method.SIMPLE_METHOD' neg_clausify_tac),
21999
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21900
diff changeset
   605
    "conversion of goal to conjecture clauses")];
24669
4579eac2c997 proper signature constraint;
wenzelm
parents: 24632
diff changeset
   606
24742
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   607
val setup = mark_skolemized #> skolem_cache_all #> ThmCache.init #> setup_attrs #> setup_methods;
18510
0a6c24f549c3 the "skolem" attribute and better initialization of the clause database
paulson
parents: 18404
diff changeset
   608
20461
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   609
end;