src/HOL/Tools/Sledgehammer/clausifier.ML
author blanchet
Mon, 28 Jun 2010 18:15:40 +0200
changeset 37620 537beae999d7
parent 37618 fa57a87f92a0
child 37626 1146291fe718
permissions -rw-r--r--
remove obsolete component of CNF clause tuple (and reorder it)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
37574
b8c1f4c46983 renamed "Sledgehammer_Fact_Preprocessor" to "Clausifier";
blanchet
parents: 37572
diff changeset
     1
(*  Title:      HOL/Tools/Sledgehammer/clausifier.ML
33311
49cd8abb2863 proper header;
wenzelm
parents: 33306
diff changeset
     2
    Author:     Jia Meng, Cambridge University Computer Laboratory
36393
be73a2b2443b support readable names even when Isar proof reconstruction is enabled -- useful for debugging
blanchet
parents: 36228
diff changeset
     3
    Author:     Jasmin Blanchette, TU Muenchen
15347
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
37574
b8c1f4c46983 renamed "Sledgehammer_Fact_Preprocessor" to "Clausifier";
blanchet
parents: 37572
diff changeset
     8
signature CLAUSIFIER =
21505
13d4dba99337 prefer Proof.context over Context.generic;
wenzelm
parents: 21470
diff changeset
     9
sig
27179
8f29fed3dc9a ResAxioms.cnf_axiom/cnf_rules_pairs: pass explicit theory context;
wenzelm
parents: 27174
diff changeset
    10
  val cnf_axiom: theory -> thm -> thm list
27184
b1483d423512 export just one setup function;
wenzelm
parents: 27179
diff changeset
    11
  val multi_base_blacklist: string list
37348
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
    12
  val is_theorem_bad_for_atps: thm -> bool
35568
8fbbfc39508f renamed type_has_empty_sort to type_has_topsort -- {} is the full universal sort;
wenzelm
parents: 33832
diff changeset
    13
  val type_has_topsort: typ -> bool
37620
537beae999d7 remove obsolete component of CNF clause tuple (and reorder it)
blanchet
parents: 37618
diff changeset
    14
  val cnf_rules_pairs :
537beae999d7 remove obsolete component of CNF clause tuple (and reorder it)
blanchet
parents: 37618
diff changeset
    15
    theory -> (string * thm) list -> ((string * int) * thm) list
36398
de8522a5cbae make "neg_clausify" return a list of lists of clauses, so that it's possible to see which clause comes from which theorem
blanchet
parents: 36394
diff changeset
    16
  val neg_clausify: thm -> thm list
de8522a5cbae make "neg_clausify" return a list of lists of clauses, so that it's possible to see which clause comes from which theorem
blanchet
parents: 36394
diff changeset
    17
  val neg_conjecture_clauses:
de8522a5cbae make "neg_clausify" return a list of lists of clauses, so that it's possible to see which clause comes from which theorem
blanchet
parents: 36394
diff changeset
    18
    Proof.context -> thm -> int -> thm list list * (string * typ) list
21505
13d4dba99337 prefer Proof.context over Context.generic;
wenzelm
parents: 21470
diff changeset
    19
end;
19196
62ee8c10d796 Added functions to retrieve local and global atpset rules.
mengj
parents: 19175
diff changeset
    20
37574
b8c1f4c46983 renamed "Sledgehammer_Fact_Preprocessor" to "Clausifier";
blanchet
parents: 37572
diff changeset
    21
structure Clausifier : CLAUSIFIER =
15997
c71031d7988c consolidation and simplification
paulson
parents: 15956
diff changeset
    22
struct
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
    23
35568
8fbbfc39508f renamed type_has_empty_sort to type_has_topsort -- {} is the full universal sort;
wenzelm
parents: 33832
diff changeset
    24
val type_has_topsort = Term.exists_subtype
8fbbfc39508f renamed type_has_empty_sort to type_has_topsort -- {} is the full universal sort;
wenzelm
parents: 33832
diff changeset
    25
  (fn TFree (_, []) => true
8fbbfc39508f renamed type_has_empty_sort to type_has_topsort -- {} is the full universal sort;
wenzelm
parents: 33832
diff changeset
    26
    | TVar (_, []) => true
8fbbfc39508f renamed type_has_empty_sort to type_has_topsort -- {} is the full universal sort;
wenzelm
parents: 33832
diff changeset
    27
    | _ => false);
27184
b1483d423512 export just one setup function;
wenzelm
parents: 27179
diff changeset
    28
28544
26743a1591f5 improved performance of skolem cache, due to parallel map;
wenzelm
parents: 28262
diff changeset
    29
15997
c71031d7988c consolidation and simplification
paulson
parents: 15956
diff changeset
    30
(**** Transformation of Elimination Rules into First-Order Formulas****)
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
    31
29064
70a61d58460e more antiquotations;
wenzelm
parents: 28965
diff changeset
    32
val cfalse = cterm_of @{theory HOL} HOLogic.false_const;
70a61d58460e more antiquotations;
wenzelm
parents: 28965
diff changeset
    33
val ctp_false = cterm_of @{theory HOL} (HOLogic.mk_Trueprop HOLogic.false_const);
20461
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
    34
21430
77651b6d9d6c New transformation of eliminatino rules: we simply replace the final conclusion variable by False
paulson
parents: 21290
diff changeset
    35
(*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
    36
  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
    37
  conclusion variable to False.*)
16009
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
    38
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
    39
  case concl_of th of    (*conclusion variable*)
35963
943e2582dc87 added options to Sledgehammer;
blanchet
parents: 35870
diff changeset
    40
       @{const Trueprop} $ (v as Var (_, @{typ bool})) =>
29064
70a61d58460e more antiquotations;
wenzelm
parents: 28965
diff changeset
    41
           Thm.instantiate ([], [(cterm_of @{theory HOL} v, cfalse)]) th
35963
943e2582dc87 added options to Sledgehammer;
blanchet
parents: 35870
diff changeset
    42
    | v as Var(_, @{typ prop}) =>
29064
70a61d58460e more antiquotations;
wenzelm
parents: 28965
diff changeset
    43
           Thm.instantiate ([], [(cterm_of @{theory HOL} v, ctp_false)]) th
21430
77651b6d9d6c New transformation of eliminatino rules: we simply replace the final conclusion variable by False
paulson
parents: 21290
diff changeset
    44
    | _ => th;
15997
c71031d7988c consolidation and simplification
paulson
parents: 15956
diff changeset
    45
24742
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
    46
(*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
    47
exception Clausify_failure of theory;
20461
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
    48
28544
26743a1591f5 improved performance of skolem cache, due to parallel map;
wenzelm
parents: 28262
diff changeset
    49
16009
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
    50
(**** SKOLEMIZATION BY INFERENCE (lcp) ****)
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
    51
37410
2bf7e6136047 adjusted the polymorphism handling of Skolem constants so that proof reconstruction doesn't fail in "equality_inf"
blanchet
parents: 37403
diff changeset
    52
fun mk_skolem_id t =
37436
2d76997730a6 found missing beta-eta-contraction
blanchet
parents: 37419
diff changeset
    53
  let val T = fastype_of t in
37496
9ae78e12e126 reintroduce new Sledgehammer polymorphic handling code;
blanchet
parents: 37488
diff changeset
    54
    Const (@{const_name skolem_id}, T --> T) $ t
37436
2d76997730a6 found missing beta-eta-contraction
blanchet
parents: 37419
diff changeset
    55
  end
37410
2bf7e6136047 adjusted the polymorphism handling of Skolem constants so that proof reconstruction doesn't fail in "equality_inf"
blanchet
parents: 37403
diff changeset
    56
37617
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
    57
fun beta_eta_under_lambdas (Abs (s, T, t')) =
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
    58
    Abs (s, T, beta_eta_under_lambdas t')
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
    59
  | beta_eta_under_lambdas t = Envir.beta_eta_contract t
37512
ff72d3ddc898 this looks like the most appropriate place to do the beta-eta-contraction
blanchet
parents: 37511
diff changeset
    60
18141
89e2e8bed08f Skolemization by inference, but not quite finished
paulson
parents: 18009
diff changeset
    61
(*Traverse a theorem, accumulating Skolem function definitions.*)
37617
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
    62
fun assume_skolem_funs th =
37399
34f080a12063 proper polymorphic Skolemization of uncached facts + synchronization of caching and relevance filter
blanchet
parents: 37349
diff changeset
    63
  let
37617
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
    64
    fun dec_sko (Const (@{const_name Ex}, _) $ (body as Abs (s', T, p))) rhss =
37399
34f080a12063 proper polymorphic Skolemization of uncached facts + synchronization of caching and relevance filter
blanchet
parents: 37349
diff changeset
    65
        (*Existential: declare a Skolem function, then insert into body and continue*)
34f080a12063 proper polymorphic Skolemization of uncached facts + synchronization of caching and relevance filter
blanchet
parents: 37349
diff changeset
    66
        let
37617
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
    67
          val args = OldTerm.term_frees body
37399
34f080a12063 proper polymorphic Skolemization of uncached facts + synchronization of caching and relevance filter
blanchet
parents: 37349
diff changeset
    68
          val Ts = map type_of args
34f080a12063 proper polymorphic Skolemization of uncached facts + synchronization of caching and relevance filter
blanchet
parents: 37349
diff changeset
    69
          val cT = Ts ---> T (* FIXME: use "skolem_type_and_args" *)
37500
7587b6e63454 thread original theorem along with CNF theorem, as a step toward killing the Skolem cache
blanchet
parents: 37498
diff changeset
    70
          (* Forms a lambda-abstraction over the formal parameters *)
7587b6e63454 thread original theorem along with CNF theorem, as a step toward killing the Skolem cache
blanchet
parents: 37498
diff changeset
    71
          val rhs =
7587b6e63454 thread original theorem along with CNF theorem, as a step toward killing the Skolem cache
blanchet
parents: 37498
diff changeset
    72
            list_abs_free (map dest_Free args,
37617
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
    73
                           HOLogic.choice_const T $ beta_eta_under_lambdas body)
37518
efb0923cc098 use Skolem inlining also in the nonpolymorphic case, as a step toward simplifying the source code
blanchet
parents: 37512
diff changeset
    74
            |> mk_skolem_id
efb0923cc098 use Skolem inlining also in the nonpolymorphic case, as a step toward simplifying the source code
blanchet
parents: 37512
diff changeset
    75
          val comb = list_comb (rhs, args)
37617
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
    76
        in dec_sko (subst_bound (comb, p)) (rhs :: rhss) end
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
    77
      | dec_sko (Const (@{const_name All},_) $ Abs (a, T, p)) rhss =
37399
34f080a12063 proper polymorphic Skolemization of uncached facts + synchronization of caching and relevance filter
blanchet
parents: 37349
diff changeset
    78
        (*Universal quant: insert a free variable into body and continue*)
34f080a12063 proper polymorphic Skolemization of uncached facts + synchronization of caching and relevance filter
blanchet
parents: 37349
diff changeset
    79
        let val fname = Name.variant (OldTerm.add_term_names (p,[])) a
37617
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
    80
        in dec_sko (subst_bound (Free(fname,T), p)) rhss end
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
    81
      | dec_sko (@{const "op &"} $ p $ q) rhss = rhss |> dec_sko p |> dec_sko q
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
    82
      | dec_sko (@{const "op |"} $ p $ q) rhss = rhss |> dec_sko p |> dec_sko q
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
    83
      | dec_sko (@{const Trueprop} $ p) rhss = dec_sko p rhss
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
    84
      | dec_sko _ rhss = rhss
20419
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
    85
  in  dec_sko (prop_of th) []  end;
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
    86
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
    87
24827
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
    88
(**** REPLACING ABSTRACTIONS BY COMBINATORS ****)
20419
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
    89
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
    90
(*Returns the vars of a theorem*)
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
    91
fun vars_of_thm th =
22691
290454649b8c Thm.fold_terms;
wenzelm
parents: 22644
diff changeset
    92
  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
    93
37540
48273d1ea331 better eta-expansion in Sledgehammer's clausification;
blanchet
parents: 37518
diff changeset
    94
val fun_cong_all = @{thm expand_fun_eq [THEN iffD1]}
20419
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
    95
37540
48273d1ea331 better eta-expansion in Sledgehammer's clausification;
blanchet
parents: 37518
diff changeset
    96
(* Removes the lambdas from an equation of the form t = (%x. u). *)
48273d1ea331 better eta-expansion in Sledgehammer's clausification;
blanchet
parents: 37518
diff changeset
    97
fun extensionalize th =
48273d1ea331 better eta-expansion in Sledgehammer's clausification;
blanchet
parents: 37518
diff changeset
    98
  case prop_of th of
48273d1ea331 better eta-expansion in Sledgehammer's clausification;
blanchet
parents: 37518
diff changeset
    99
    _ $ (Const (@{const_name "op ="}, Type (_, [Type (@{type_name fun}, _), _]))
48273d1ea331 better eta-expansion in Sledgehammer's clausification;
blanchet
parents: 37518
diff changeset
   100
         $ _ $ Abs (s, _, _)) => extensionalize (th RS fun_cong_all)
48273d1ea331 better eta-expansion in Sledgehammer's clausification;
blanchet
parents: 37518
diff changeset
   101
  | _ => th
20419
df257a9cf0e9 abstraction of lambda-expressions
paulson
parents: 20373
diff changeset
   102
37416
d5ac8280497e no point in introducing combinators for inlined Skolem functions
blanchet
parents: 37410
diff changeset
   103
fun is_quasi_lambda_free (Const (@{const_name skolem_id}, _) $ _) = true
d5ac8280497e no point in introducing combinators for inlined Skolem functions
blanchet
parents: 37410
diff changeset
   104
  | is_quasi_lambda_free (t1 $ t2) =
d5ac8280497e no point in introducing combinators for inlined Skolem functions
blanchet
parents: 37410
diff changeset
   105
    is_quasi_lambda_free t1 andalso is_quasi_lambda_free t2
d5ac8280497e no point in introducing combinators for inlined Skolem functions
blanchet
parents: 37410
diff changeset
   106
  | is_quasi_lambda_free (Abs _) = false
d5ac8280497e no point in introducing combinators for inlined Skolem functions
blanchet
parents: 37410
diff changeset
   107
  | is_quasi_lambda_free _ = true
20461
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   108
32010
cb1a1c94b4cd more antiquotations;
wenzelm
parents: 31794
diff changeset
   109
val [f_B,g_B] = map (cterm_of @{theory}) (OldTerm.term_vars (prop_of @{thm abs_B}));
cb1a1c94b4cd more antiquotations;
wenzelm
parents: 31794
diff changeset
   110
val [g_C,f_C] = map (cterm_of @{theory}) (OldTerm.term_vars (prop_of @{thm abs_C}));
cb1a1c94b4cd more antiquotations;
wenzelm
parents: 31794
diff changeset
   111
val [f_S,g_S] = map (cterm_of @{theory}) (OldTerm.term_vars (prop_of @{thm abs_S}));
20863
4ee61dbf192d improvements to abstraction, ensuring more re-use of abstraction functions
paulson
parents: 20789
diff changeset
   112
24827
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   113
(*FIXME: requires more use of cterm constructors*)
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   114
fun abstract ct =
28544
26743a1591f5 improved performance of skolem cache, due to parallel map;
wenzelm
parents: 28262
diff changeset
   115
  let
26743a1591f5 improved performance of skolem cache, due to parallel map;
wenzelm
parents: 28262
diff changeset
   116
      val thy = theory_of_cterm ct
25256
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   117
      val Abs(x,_,body) = term_of ct
35963
943e2582dc87 added options to Sledgehammer;
blanchet
parents: 35870
diff changeset
   118
      val Type(@{type_name fun}, [xT,bodyT]) = typ_of (ctyp_of_term ct)
24827
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   119
      val cxT = ctyp_of thy xT and cbodyT = ctyp_of thy bodyT
27184
b1483d423512 export just one setup function;
wenzelm
parents: 27179
diff changeset
   120
      fun makeK() = instantiate' [SOME cxT, SOME cbodyT] [SOME (cterm_of thy body)] @{thm abs_K}
24827
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   121
  in
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   122
      case body of
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   123
          Const _ => makeK()
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   124
        | Free _ => makeK()
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   125
        | Var _ => makeK()  (*though Var isn't expected*)
27184
b1483d423512 export just one setup function;
wenzelm
parents: 27179
diff changeset
   126
        | Bound 0 => instantiate' [SOME cxT] [] @{thm abs_I} (*identity: I*)
24827
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   127
        | rator$rand =>
27184
b1483d423512 export just one setup function;
wenzelm
parents: 27179
diff changeset
   128
            if loose_bvar1 (rator,0) then (*C or S*)
27179
8f29fed3dc9a ResAxioms.cnf_axiom/cnf_rules_pairs: pass explicit theory context;
wenzelm
parents: 27174
diff changeset
   129
               if loose_bvar1 (rand,0) then (*S*)
8f29fed3dc9a ResAxioms.cnf_axiom/cnf_rules_pairs: pass explicit theory context;
wenzelm
parents: 27174
diff changeset
   130
                 let val crator = cterm_of thy (Abs(x,xT,rator))
8f29fed3dc9a ResAxioms.cnf_axiom/cnf_rules_pairs: pass explicit theory context;
wenzelm
parents: 27174
diff changeset
   131
                     val crand = cterm_of thy (Abs(x,xT,rand))
27184
b1483d423512 export just one setup function;
wenzelm
parents: 27179
diff changeset
   132
                     val abs_S' = cterm_instantiate [(f_S,crator),(g_S,crand)] @{thm abs_S}
b1483d423512 export just one setup function;
wenzelm
parents: 27179
diff changeset
   133
                     val (_,rhs) = Thm.dest_equals (cprop_of abs_S')
27179
8f29fed3dc9a ResAxioms.cnf_axiom/cnf_rules_pairs: pass explicit theory context;
wenzelm
parents: 27174
diff changeset
   134
                 in
8f29fed3dc9a ResAxioms.cnf_axiom/cnf_rules_pairs: pass explicit theory context;
wenzelm
parents: 27174
diff changeset
   135
                   Thm.transitive abs_S' (Conv.binop_conv abstract rhs)
8f29fed3dc9a ResAxioms.cnf_axiom/cnf_rules_pairs: pass explicit theory context;
wenzelm
parents: 27174
diff changeset
   136
                 end
8f29fed3dc9a ResAxioms.cnf_axiom/cnf_rules_pairs: pass explicit theory context;
wenzelm
parents: 27174
diff changeset
   137
               else (*C*)
8f29fed3dc9a ResAxioms.cnf_axiom/cnf_rules_pairs: pass explicit theory context;
wenzelm
parents: 27174
diff changeset
   138
                 let val crator = cterm_of thy (Abs(x,xT,rator))
27184
b1483d423512 export just one setup function;
wenzelm
parents: 27179
diff changeset
   139
                     val abs_C' = cterm_instantiate [(f_C,crator),(g_C,cterm_of thy rand)] @{thm abs_C}
b1483d423512 export just one setup function;
wenzelm
parents: 27179
diff changeset
   140
                     val (_,rhs) = Thm.dest_equals (cprop_of abs_C')
27179
8f29fed3dc9a ResAxioms.cnf_axiom/cnf_rules_pairs: pass explicit theory context;
wenzelm
parents: 27174
diff changeset
   141
                 in
8f29fed3dc9a ResAxioms.cnf_axiom/cnf_rules_pairs: pass explicit theory context;
wenzelm
parents: 27174
diff changeset
   142
                   Thm.transitive abs_C' (Conv.fun_conv (Conv.arg_conv abstract) rhs)
8f29fed3dc9a ResAxioms.cnf_axiom/cnf_rules_pairs: pass explicit theory context;
wenzelm
parents: 27174
diff changeset
   143
                 end
27184
b1483d423512 export just one setup function;
wenzelm
parents: 27179
diff changeset
   144
            else if loose_bvar1 (rand,0) then (*B or eta*)
36945
9bec62c10714 less pervasive names from structure Thm;
wenzelm
parents: 36603
diff changeset
   145
               if rand = Bound 0 then Thm.eta_conversion ct
27179
8f29fed3dc9a ResAxioms.cnf_axiom/cnf_rules_pairs: pass explicit theory context;
wenzelm
parents: 27174
diff changeset
   146
               else (*B*)
8f29fed3dc9a ResAxioms.cnf_axiom/cnf_rules_pairs: pass explicit theory context;
wenzelm
parents: 27174
diff changeset
   147
                 let val crand = cterm_of thy (Abs(x,xT,rand))
8f29fed3dc9a ResAxioms.cnf_axiom/cnf_rules_pairs: pass explicit theory context;
wenzelm
parents: 27174
diff changeset
   148
                     val crator = cterm_of thy rator
27184
b1483d423512 export just one setup function;
wenzelm
parents: 27179
diff changeset
   149
                     val abs_B' = cterm_instantiate [(f_B,crator),(g_B,crand)] @{thm abs_B}
b1483d423512 export just one setup function;
wenzelm
parents: 27179
diff changeset
   150
                     val (_,rhs) = Thm.dest_equals (cprop_of abs_B')
37349
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   151
                 in Thm.transitive abs_B' (Conv.arg_conv abstract rhs) end
27179
8f29fed3dc9a ResAxioms.cnf_axiom/cnf_rules_pairs: pass explicit theory context;
wenzelm
parents: 27174
diff changeset
   152
            else makeK()
37349
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   153
        | _ => raise Fail "abstract: Bad term"
24827
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   154
  end;
20863
4ee61dbf192d improvements to abstraction, ensuring more re-use of abstraction functions
paulson
parents: 20789
diff changeset
   155
37349
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   156
(* Traverse a theorem, remplacing lambda-abstractions with combinators. *)
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   157
fun do_introduce_combinators ct =
37416
d5ac8280497e no point in introducing combinators for inlined Skolem functions
blanchet
parents: 37410
diff changeset
   158
  if is_quasi_lambda_free (term_of ct) then
37349
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   159
    Thm.reflexive ct
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   160
  else case term_of ct of
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   161
    Abs _ =>
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   162
    let
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   163
      val (cv, cta) = Thm.dest_abs NONE ct
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   164
      val (v, _) = dest_Free (term_of cv)
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   165
      val u_th = do_introduce_combinators cta
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   166
      val cu = Thm.rhs_of u_th
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   167
      val comb_eq = abstract (Thm.cabs cv cu)
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   168
    in Thm.transitive (Thm.abstract_rule v cv u_th) comb_eq end
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   169
  | _ $ _ =>
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   170
    let val (ct1, ct2) = Thm.dest_comb ct in
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   171
        Thm.combination (do_introduce_combinators ct1)
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   172
                        (do_introduce_combinators ct2)
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   173
    end
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   174
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   175
fun introduce_combinators th =
37416
d5ac8280497e no point in introducing combinators for inlined Skolem functions
blanchet
parents: 37410
diff changeset
   176
  if is_quasi_lambda_free (prop_of th) then
37349
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   177
    th
24827
646bdc51eb7d combinator translation
paulson
parents: 24821
diff changeset
   178
  else
37349
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   179
    let
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   180
      val th = Drule.eta_contraction_rule th
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   181
      val eqth = do_introduce_combinators (cprop_of th)
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   182
    in Thm.equal_elim eqth th end
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   183
    handle THM (msg, _, _) =>
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   184
           (warning ("Error in the combinator translation of " ^
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   185
                     Display.string_of_thm_without_context th ^
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   186
                     "\nException message: " ^ msg ^ ".");
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   187
            (* A type variable of sort "{}" will make abstraction fail. *)
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   188
            TrueI)
16009
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   189
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   190
(*cterms are used throughout for efficiency*)
29064
70a61d58460e more antiquotations;
wenzelm
parents: 28965
diff changeset
   191
val cTrueprop = Thm.cterm_of @{theory HOL} HOLogic.Trueprop;
16009
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   192
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   193
(*Given an abstraction over n variables, replace the bound variables by free
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   194
  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
   195
fun c_variant_abs_multi (ct0, vars) =
16009
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   196
      let val (cv,ct) = Thm.dest_abs NONE ct0
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   197
      in  c_variant_abs_multi (ct, cv::vars)  end
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   198
      handle CTERM _ => (ct0, rev vars);
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   199
37617
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   200
val skolem_id_def_raw = @{thms skolem_id_def_raw}
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   201
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   202
(* Given the definition of a Skolem function, return a theorem to replace
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   203
   an existential formula by a use of that function.
18141
89e2e8bed08f Skolemization by inference, but not quite finished
paulson
parents: 18009
diff changeset
   204
   Example: "EX x. x : A & x ~: B ==> sko A B : A & sko A B ~: B"  [.] *)
37617
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   205
fun skolem_theorem_of_def thy rhs0 =
37399
34f080a12063 proper polymorphic Skolemization of uncached facts + synchronization of caching and relevance filter
blanchet
parents: 37349
diff changeset
   206
  let
37617
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   207
    val rhs = rhs0 |> Type.legacy_freeze_thaw |> #1 |> Thm.cterm_of thy
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   208
    val rhs' = rhs |> Thm.dest_comb |> snd
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   209
    val (ch, frees) = c_variant_abs_multi (rhs', [])
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   210
    val (hilbert, cabs) = ch |> Thm.dest_comb |>> term_of
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   211
    val T =
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   212
      case hilbert of
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   213
        Const (@{const_name Eps}, Type (@{type_name fun}, [_, T])) => T
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   214
      | _ => raise TERM ("skolem_theorem_of_def: expected \"Eps\"", [hilbert])
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   215
    val cex = Thm.cterm_of thy (HOLogic.exists_const T)
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   216
    val ex_tm = Thm.capply cTrueprop (Thm.capply cex cabs)
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   217
    and conc =
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   218
      Drule.list_comb (rhs, frees)
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   219
      |> Drule.beta_conv cabs |> Thm.capply cTrueprop
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   220
    fun tacf [prem] =
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   221
      rewrite_goals_tac skolem_id_def_raw
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   222
      THEN rtac ((prem |> rewrite_rule skolem_id_def_raw)
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   223
                 RS @{thm someI_ex}) 1
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   224
  in
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   225
    Goal.prove_internal [ex_tm] conc tacf
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   226
    |> forall_intr_list frees
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   227
    |> Thm.forall_elim_vars 0  (*Introduce Vars, but don't discharge defs.*)
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   228
    |> Thm.varifyT_global
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   229
  end
24742
73b8b42a36b6 removal of some "ref"s from res_axioms.ML; a side-effect is that the ordering
paulson
parents: 24669
diff changeset
   230
20863
4ee61dbf192d improvements to abstraction, ensuring more re-use of abstraction functions
paulson
parents: 20789
diff changeset
   231
(*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
   232
fun to_nnf th ctxt0 =
27179
8f29fed3dc9a ResAxioms.cnf_axiom/cnf_rules_pairs: pass explicit theory context;
wenzelm
parents: 27174
diff changeset
   233
  let val th1 = th |> transform_elim |> zero_var_indexes
32262
73cd8f74cf2a Meson.first_order_resolve: avoid handle _;
wenzelm
parents: 32257
diff changeset
   234
      val ((_, [th2]), ctxt) = Variable.import true [th1] ctxt0
37540
48273d1ea331 better eta-expansion in Sledgehammer's clausification;
blanchet
parents: 37518
diff changeset
   235
      val th3 = th2 |> Conv.fconv_rule Object_Logic.atomize
48273d1ea331 better eta-expansion in Sledgehammer's clausification;
blanchet
parents: 37518
diff changeset
   236
                    |> extensionalize
48273d1ea331 better eta-expansion in Sledgehammer's clausification;
blanchet
parents: 37518
diff changeset
   237
                    |> Meson.make_nnf ctxt
24937
340523598914 context-based treatment of generalization; also handling TFrees in axiom clauses
paulson
parents: 24854
diff changeset
   238
  in  (th3, ctxt)  end;
16009
a6d480e6c5f0 Skolemization of simprules and classical rules
paulson
parents: 15997
diff changeset
   239
37349
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   240
(*** Blacklisting (more in "Sledgehammer_Fact_Filter") ***)
25007
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   241
37348
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   242
val max_lambda_nesting = 3
27184
b1483d423512 export just one setup function;
wenzelm
parents: 27179
diff changeset
   243
37348
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   244
fun term_has_too_many_lambdas max (t1 $ t2) =
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   245
    exists (term_has_too_many_lambdas max) [t1, t2]
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   246
  | term_has_too_many_lambdas max (Abs (_, _, t)) =
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   247
    max = 0 orelse term_has_too_many_lambdas (max - 1) t
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   248
  | term_has_too_many_lambdas _ _ = false
25007
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   249
37348
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   250
fun is_formula_type T = (T = HOLogic.boolT orelse T = propT)
25007
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   251
37348
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   252
(* Don't count nested lambdas at the level of formulas, since they are
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   253
   quantifiers. *)
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   254
fun formula_has_too_many_lambdas Ts (Abs (_, T, t)) =
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   255
    formula_has_too_many_lambdas (T :: Ts) t
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   256
  | formula_has_too_many_lambdas Ts t =
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   257
    if is_formula_type (fastype_of1 (Ts, t)) then
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   258
      exists (formula_has_too_many_lambdas Ts) (#2 (strip_comb t))
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   259
    else
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   260
      term_has_too_many_lambdas max_lambda_nesting t
25007
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   261
37348
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   262
(* The max apply depth of any "metis" call in "Metis_Examples" (on 31-10-2007)
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   263
   was 11. *)
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   264
val max_apply_depth = 15
27184
b1483d423512 export just one setup function;
wenzelm
parents: 27179
diff changeset
   265
37348
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   266
fun apply_depth (f $ t) = Int.max (apply_depth f, apply_depth t + 1)
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   267
  | apply_depth (Abs (_, _, t)) = apply_depth t
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   268
  | apply_depth _ = 0
25256
fe467fdf129a Catch exceptions arising during the abstraction operation.
paulson
parents: 25243
diff changeset
   269
37348
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   270
fun is_formula_too_complex t =
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   271
  apply_depth t > max_apply_depth orelse Meson.too_many_clauses NONE t orelse
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   272
  formula_has_too_many_lambdas [] t
27184
b1483d423512 export just one setup function;
wenzelm
parents: 27179
diff changeset
   273
25243
78f8aaa27493 bugfixes concerning strange theorems
paulson
parents: 25007
diff changeset
   274
fun is_strange_thm th =
78f8aaa27493 bugfixes concerning strange theorems
paulson
parents: 25007
diff changeset
   275
  case head_of (concl_of th) of
35963
943e2582dc87 added options to Sledgehammer;
blanchet
parents: 35870
diff changeset
   276
      Const (a, _) => (a <> @{const_name Trueprop} andalso
943e2582dc87 added options to Sledgehammer;
blanchet
parents: 35870
diff changeset
   277
                       a <> @{const_name "=="})
25243
78f8aaa27493 bugfixes concerning strange theorems
paulson
parents: 25007
diff changeset
   278
    | _ => false;
78f8aaa27493 bugfixes concerning strange theorems
paulson
parents: 25007
diff changeset
   279
37348
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   280
fun is_theorem_bad_for_atps thm =
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   281
  let val t = prop_of thm in
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   282
    is_formula_too_complex t orelse exists_type type_has_topsort t orelse
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   283
    is_strange_thm thm
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   284
  end
25243
78f8aaa27493 bugfixes concerning strange theorems
paulson
parents: 25007
diff changeset
   285
35963
943e2582dc87 added options to Sledgehammer;
blanchet
parents: 35870
diff changeset
   286
(* FIXME: put other record thms here, or declare as "no_atp" *)
37616
c8d2d84d6011 always perform relevance filtering on original formulas
blanchet
parents: 37584
diff changeset
   287
(* FIXME: move to "Sledgehammer_Fact_Filter" *)
25007
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   288
val multi_base_blacklist =
35963
943e2582dc87 added options to Sledgehammer;
blanchet
parents: 35870
diff changeset
   289
  ["defs", "select_defs", "update_defs", "induct", "inducts", "split", "splits",
943e2582dc87 added options to Sledgehammer;
blanchet
parents: 35870
diff changeset
   290
   "split_asm", "cases", "ext_cases"];
25007
cd497f6fe8d1 trying to make it run faster
paulson
parents: 24959
diff changeset
   291
27184
b1483d423512 export just one setup function;
wenzelm
parents: 27179
diff changeset
   292
(*Skolemize a named theorem, with Skolem functions as additional premises.*)
37617
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   293
fun skolemize_theorem thy th =
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   294
  if member (op =) multi_base_blacklist
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   295
            (Long_Name.base_name (Thm.get_name_hint th)) orelse
37348
3ad1bfd2de46 renaming
blanchet
parents: 37347
diff changeset
   296
     is_theorem_bad_for_atps th then
37345
4402a2bfa204 make Sledgehammer's "add:" and "del:" syntax work better in the presence of aliases;
blanchet
parents: 37332
diff changeset
   297
    []
27184
b1483d423512 export just one setup function;
wenzelm
parents: 27179
diff changeset
   298
  else
b1483d423512 export just one setup function;
wenzelm
parents: 27179
diff changeset
   299
    let
36603
d5d6111761a6 renamed Variable.thm_context to Variable.global_thm_context to emphasize that this is not the real thing;
wenzelm
parents: 36492
diff changeset
   300
      val ctxt0 = Variable.global_thm_context th
37349
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   301
      val (nnfth, ctxt) = to_nnf th ctxt0
37617
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   302
      val sko_ths = map (skolem_theorem_of_def thy) (assume_skolem_funs nnfth)
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   303
      val (cnfs, ctxt) = Meson.make_cnf sko_ths nnfth ctxt
37349
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   304
    in
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   305
      cnfs |> map introduce_combinators
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   306
           |> Variable.export ctxt ctxt0
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   307
           |> Meson.finish_cnf
37617
f73cd4069f69 always perform "inline" skolemization, polymorphism or not, Skolem cache or not
blanchet
parents: 37616
diff changeset
   308
           |> map Thm.close_derivation
37349
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   309
    end
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   310
    handle THM _ => []
27184
b1483d423512 export just one setup function;
wenzelm
parents: 27179
diff changeset
   311
36228
df47dc6c0e03 got rid of somewhat pointless "pairname" function in Sledgehammer
blanchet
parents: 36106
diff changeset
   312
(* Convert Isabelle theorems into axiom clauses. *)
37618
fa57a87f92a0 get rid of Skolem cache by performing CNF-conversion after fact selection
blanchet
parents: 37617
diff changeset
   313
(* FIXME: is transfer necessary? *)
fa57a87f92a0 get rid of Skolem cache by performing CNF-conversion after fact selection
blanchet
parents: 37617
diff changeset
   314
fun cnf_axiom thy = skolemize_theorem thy o Thm.transfer thy
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   315
18141
89e2e8bed08f Skolemization by inference, but not quite finished
paulson
parents: 18009
diff changeset
   316
22471
7c51f1a799f3 Removal of axiom names from the theorem cache
paulson
parents: 22360
diff changeset
   317
(**** Translate a set of theorems into CNF ****)
15347
14585bc8fa09 resolution package tools by Jia Meng
paulson
parents:
diff changeset
   318
21290
33b6bb5d6ab8 Improvement to classrel clauses: now outputs the minimum needed.
paulson
parents: 21254
diff changeset
   319
(*The combination of rev and tail recursion preserves the original order*)
37416
d5ac8280497e no point in introducing combinators for inlined Skolem functions
blanchet
parents: 37410
diff changeset
   320
fun cnf_rules_pairs thy =
d5ac8280497e no point in introducing combinators for inlined Skolem functions
blanchet
parents: 37410
diff changeset
   321
  let
37500
7587b6e63454 thread original theorem along with CNF theorem, as a step toward killing the Skolem cache
blanchet
parents: 37498
diff changeset
   322
    fun do_one _ [] = []
7587b6e63454 thread original theorem along with CNF theorem, as a step toward killing the Skolem cache
blanchet
parents: 37498
diff changeset
   323
      | do_one ((name, k), th) (cls :: clss) =
37620
537beae999d7 remove obsolete component of CNF clause tuple (and reorder it)
blanchet
parents: 37618
diff changeset
   324
        ((name, k), cls) :: do_one ((name, k + 1), th) clss
37500
7587b6e63454 thread original theorem along with CNF theorem, as a step toward killing the Skolem cache
blanchet
parents: 37498
diff changeset
   325
    fun do_all pairs [] = pairs
7587b6e63454 thread original theorem along with CNF theorem, as a step toward killing the Skolem cache
blanchet
parents: 37498
diff changeset
   326
      | do_all pairs ((name, th) :: ths) =
37416
d5ac8280497e no point in introducing combinators for inlined Skolem functions
blanchet
parents: 37410
diff changeset
   327
        let
37500
7587b6e63454 thread original theorem along with CNF theorem, as a step toward killing the Skolem cache
blanchet
parents: 37498
diff changeset
   328
          val new_pairs = do_one ((name, 0), th) (cnf_axiom thy th)
37570
de5feddaa95c got rid of needless exception
blanchet
parents: 37567
diff changeset
   329
                          handle THM _ => []
37500
7587b6e63454 thread original theorem along with CNF theorem, as a step toward killing the Skolem cache
blanchet
parents: 37498
diff changeset
   330
        in do_all (new_pairs @ pairs) ths end
7587b6e63454 thread original theorem along with CNF theorem, as a step toward killing the Skolem cache
blanchet
parents: 37498
diff changeset
   331
  in do_all [] o rev end
19353
36b6b15ee670 added another function for CNF.
mengj
parents: 19232
diff changeset
   332
19196
62ee8c10d796 Added functions to retrieve local and global atpset rules.
mengj
parents: 19175
diff changeset
   333
21999
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21900
diff changeset
   334
(*** Converting a subgoal into negated conjecture clauses. ***)
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21900
diff changeset
   335
32262
73cd8f74cf2a Meson.first_order_resolve: avoid handle _;
wenzelm
parents: 32257
diff changeset
   336
fun neg_skolemize_tac ctxt =
37332
51d99ba6fc4d don't raise Option.Option if assumptions contain schematic variables
blanchet
parents: 37171
diff changeset
   337
  EVERY' [rtac ccontr, Object_Logic.atomize_prems_tac, Meson.skolemize_tac ctxt]
36398
de8522a5cbae make "neg_clausify" return a list of lists of clauses, so that it's possible to see which clause comes from which theorem
blanchet
parents: 36394
diff changeset
   338
35869
cac366550624 start work on direct proof reconstruction for Sledgehammer
blanchet
parents: 35865
diff changeset
   339
val neg_clausify =
37349
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   340
  single
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   341
  #> Meson.make_clauses_unsorted
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   342
  #> map introduce_combinators
3d7058e24b7a cosmetics
blanchet
parents: 37348
diff changeset
   343
  #> Meson.finish_cnf
21999
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21900
diff changeset
   344
32257
bad5a99c16d8 neg_conjecture_clauses, neg_clausify_tac: proper context, eliminated METAHYPS;
wenzelm
parents: 32231
diff changeset
   345
fun neg_conjecture_clauses ctxt st0 n =
bad5a99c16d8 neg_conjecture_clauses, neg_clausify_tac: proper context, eliminated METAHYPS;
wenzelm
parents: 32231
diff changeset
   346
  let
37332
51d99ba6fc4d don't raise Option.Option if assumptions contain schematic variables
blanchet
parents: 37171
diff changeset
   347
    (* "Option" is thrown if the assumptions contain schematic variables. *)
51d99ba6fc4d don't raise Option.Option if assumptions contain schematic variables
blanchet
parents: 37171
diff changeset
   348
    val st = Seq.hd (neg_skolemize_tac ctxt n st0) handle Option.Option => st0
51d99ba6fc4d don't raise Option.Option if assumptions contain schematic variables
blanchet
parents: 37171
diff changeset
   349
    val ({params, prems, ...}, _) =
51d99ba6fc4d don't raise Option.Option if assumptions contain schematic variables
blanchet
parents: 37171
diff changeset
   350
      Subgoal.focus (Variable.set_body false ctxt) n st
51d99ba6fc4d don't raise Option.Option if assumptions contain schematic variables
blanchet
parents: 37171
diff changeset
   351
  in (map neg_clausify prems, map (dest_Free o term_of o #2) params) end
21999
0cf192e489e2 improvements to proof reconstruction. Some files loaded in a different order
paulson
parents: 21900
diff changeset
   352
27184
b1483d423512 export just one setup function;
wenzelm
parents: 27179
diff changeset
   353
20461
d689ad772b2c skolem_cache_thm: Drule.close_derivation on clauses preserves some space;
wenzelm
parents: 20457
diff changeset
   354
end;