src/HOL/Tools/meson.ML
author wenzelm
Wed, 11 Jun 2008 18:02:00 +0200
changeset 27153 56b6cdce22f1
parent 26931 aa226d8405a8
child 27230 c0103bc7f7eb
permissions -rw-r--r--
Drule.read_instantiate;
wenzelm@9869
     1
(*  Title:      HOL/Tools/meson.ML
paulson@9840
     2
    ID:         $Id$
paulson@9840
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
paulson@9840
     4
    Copyright   1992  University of Cambridge
paulson@9840
     5
wenzelm@9869
     6
The MESON resolution proof procedure for HOL.
paulson@9840
     7
paulson@9840
     8
When making clauses, avoids using the rewriter -- instead uses RS recursively
paulson@9840
     9
*)
paulson@9840
    10
wenzelm@24300
    11
signature MESON =
paulson@15579
    12
sig
wenzelm@24300
    13
  val term_pair_of: indexname * (typ * 'a) -> term * 'a
wenzelm@24300
    14
  val first_order_resolve: thm -> thm -> thm
wenzelm@24300
    15
  val flexflex_first_order: thm -> thm
wenzelm@24300
    16
  val size_of_subgoals: thm -> int
paulson@26562
    17
  val too_many_clauses: Proof.context option -> term -> bool
paulson@24937
    18
  val make_cnf: thm list -> thm -> Proof.context -> thm list * Proof.context
wenzelm@24300
    19
  val finish_cnf: thm list -> thm list
wenzelm@24300
    20
  val make_nnf: thm -> thm
wenzelm@24300
    21
  val make_nnf1: thm -> thm
wenzelm@24300
    22
  val skolemize: thm -> thm
wenzelm@24300
    23
  val is_fol_term: theory -> term -> bool
wenzelm@24300
    24
  val make_clauses: thm list -> thm list
wenzelm@24300
    25
  val make_horns: thm list -> thm list
wenzelm@24300
    26
  val best_prolog_tac: (thm -> int) -> thm list -> tactic
wenzelm@24300
    27
  val depth_prolog_tac: thm list -> tactic
wenzelm@24300
    28
  val gocls: thm list -> thm list
wenzelm@24300
    29
  val skolemize_prems_tac: thm list -> int -> tactic
wenzelm@24300
    30
  val MESON: (thm list -> thm list) -> (thm list -> tactic) -> int -> tactic
wenzelm@24300
    31
  val best_meson_tac: (thm -> int) -> int -> tactic
wenzelm@24300
    32
  val safe_best_meson_tac: int -> tactic
wenzelm@24300
    33
  val depth_meson_tac: int -> tactic
wenzelm@24300
    34
  val prolog_step_tac': thm list -> int -> tactic
wenzelm@24300
    35
  val iter_deepen_prolog_tac: thm list -> tactic
wenzelm@24300
    36
  val iter_deepen_meson_tac: thm list -> int -> tactic
wenzelm@24300
    37
  val make_meta_clause: thm -> thm
wenzelm@24300
    38
  val make_meta_clauses: thm list -> thm list
wenzelm@24300
    39
  val meson_claset_tac: thm list -> claset -> int -> tactic
wenzelm@24300
    40
  val meson_tac: int -> tactic
wenzelm@24300
    41
  val negate_head: thm -> thm
wenzelm@24300
    42
  val select_literal: int -> thm -> thm
wenzelm@24300
    43
  val skolemize_tac: int -> tactic
paulson@26562
    44
  val setup: Context.theory -> Context.theory
paulson@15579
    45
end
paulson@9840
    46
wenzelm@24300
    47
structure Meson: MESON =
paulson@15579
    48
struct
paulson@9840
    49
paulson@26562
    50
val max_clauses_default = 60;
paulson@26562
    51
val (max_clauses, setup) = Attrib.config_int "max_clauses" max_clauses_default;
paulson@26562
    52
paulson@15579
    53
val not_conjD = thm "meson_not_conjD";
paulson@15579
    54
val not_disjD = thm "meson_not_disjD";
paulson@15579
    55
val not_notD = thm "meson_not_notD";
paulson@15579
    56
val not_allD = thm "meson_not_allD";
paulson@15579
    57
val not_exD = thm "meson_not_exD";
paulson@15579
    58
val imp_to_disjD = thm "meson_imp_to_disjD";
paulson@15579
    59
val not_impD = thm "meson_not_impD";
paulson@15579
    60
val iff_to_disjD = thm "meson_iff_to_disjD";
paulson@15579
    61
val not_iffD = thm "meson_not_iffD";
paulson@15579
    62
val conj_exD1 = thm "meson_conj_exD1";
paulson@15579
    63
val conj_exD2 = thm "meson_conj_exD2";
paulson@15579
    64
val disj_exD = thm "meson_disj_exD";
paulson@15579
    65
val disj_exD1 = thm "meson_disj_exD1";
paulson@15579
    66
val disj_exD2 = thm "meson_disj_exD2";
paulson@15579
    67
val disj_assoc = thm "meson_disj_assoc";
paulson@15579
    68
val disj_comm = thm "meson_disj_comm";
paulson@15579
    69
val disj_FalseD1 = thm "meson_disj_FalseD1";
paulson@15579
    70
val disj_FalseD2 = thm "meson_disj_FalseD2";
paulson@9840
    71
paulson@9840
    72
paulson@15579
    73
(**** Operators for forward proof ****)
paulson@9840
    74
paulson@20417
    75
paulson@20417
    76
(** First-order Resolution **)
paulson@20417
    77
paulson@20417
    78
fun typ_pair_of (ix, (sort,ty)) = (TVar (ix,sort), ty);
paulson@20417
    79
fun term_pair_of (ix, (ty,t)) = (Var (ix,ty), t);
paulson@20417
    80
paulson@20417
    81
val Envir.Envir {asol = tenv0, iTs = tyenv0, ...} = Envir.empty 0
paulson@20417
    82
paulson@20417
    83
(*FIXME: currently does not "rename variables apart"*)
paulson@20417
    84
fun first_order_resolve thA thB =
paulson@20417
    85
  let val thy = theory_of_thm thA
paulson@20417
    86
      val tmA = concl_of thA
paulson@20417
    87
      val Const("==>",_) $ tmB $ _ = prop_of thB
paulson@23440
    88
      val (tyenv,tenv) = Pattern.first_order_match thy (tmB,tmA) (tyenv0,tenv0)
paulson@20417
    89
      val ct_pairs = map (pairself (cterm_of thy) o term_pair_of) (Vartab.dest tenv)
paulson@20417
    90
  in  thA RS (cterm_instantiate ct_pairs thB)  end
paulson@20417
    91
  handle _ => raise THM ("first_order_resolve", 0, [thA,thB]);
paulson@18175
    92
wenzelm@24300
    93
fun flexflex_first_order th =
paulson@23440
    94
  case (tpairs_of th) of
paulson@23440
    95
      [] => th
paulson@23440
    96
    | pairs =>
wenzelm@24300
    97
        let val thy = theory_of_thm th
wenzelm@24300
    98
            val (tyenv,tenv) =
wenzelm@24300
    99
                  foldl (uncurry (Pattern.first_order_match thy)) (tyenv0,tenv0) pairs
wenzelm@24300
   100
            val t_pairs = map term_pair_of (Vartab.dest tenv)
wenzelm@24300
   101
            val th' = Thm.instantiate ([], map (pairself (cterm_of thy)) t_pairs) th
wenzelm@24300
   102
        in  th'  end
wenzelm@24300
   103
        handle THM _ => th;
paulson@23440
   104
paulson@24937
   105
(*Forward proof while preserving bound variables names*)
paulson@24937
   106
fun rename_bvs_RS th rl =
paulson@24937
   107
  let val th' = th RS rl
paulson@24937
   108
  in  Thm.rename_boundvars (concl_of th') (concl_of th) th' end;
paulson@24937
   109
paulson@24937
   110
(*raises exception if no rules apply*)
wenzelm@24300
   111
fun tryres (th, rls) =
paulson@18141
   112
  let fun tryall [] = raise THM("tryres", 0, th::rls)
paulson@24937
   113
        | tryall (rl::rls) = (rename_bvs_RS th rl handle THM _ => tryall rls)
paulson@18141
   114
  in  tryall rls  end;
wenzelm@24300
   115
paulson@21050
   116
(*Permits forward proof from rules that discharge assumptions. The supplied proof state st,
paulson@21050
   117
  e.g. from conj_forward, should have the form
paulson@21050
   118
    "[| P' ==> ?P; Q' ==> ?Q |] ==> ?P & ?Q"
paulson@21050
   119
  and the effect should be to instantiate ?P and ?Q with normalized versions of P' and Q'.*)
paulson@15579
   120
fun forward_res nf st =
paulson@21050
   121
  let fun forward_tacf [prem] = rtac (nf prem) 1
wenzelm@24300
   122
        | forward_tacf prems =
paulson@21050
   123
            error ("Bad proof state in forward_res, please inform lcp@cl.cam.ac.uk:\n" ^
wenzelm@26928
   124
                   Display.string_of_thm st ^
paulson@21050
   125
                   "\nPremises:\n" ^
wenzelm@26928
   126
                   cat_lines (map Display.string_of_thm prems))
paulson@21050
   127
  in
paulson@21050
   128
    case Seq.pull (ALLGOALS (METAHYPS forward_tacf) st)
paulson@21050
   129
    of SOME(th,_) => th
paulson@21050
   130
     | NONE => raise THM("forward_res", 0, [st])
paulson@21050
   131
  end;
paulson@9840
   132
paulson@20134
   133
(*Are any of the logical connectives in "bs" present in the term?*)
paulson@20134
   134
fun has_conns bs =
paulson@20134
   135
  let fun has (Const(a,_)) = false
paulson@20134
   136
        | has (Const("Trueprop",_) $ p) = has p
paulson@20134
   137
        | has (Const("Not",_) $ p) = has p
paulson@20134
   138
        | has (Const("op |",_) $ p $ q) = member (op =) bs "op |" orelse has p orelse has q
paulson@20134
   139
        | has (Const("op &",_) $ p $ q) = member (op =) bs "op &" orelse has p orelse has q
paulson@20134
   140
        | has (Const("All",_) $ Abs(_,_,p)) = member (op =) bs "All" orelse has p
paulson@20134
   141
        | has (Const("Ex",_) $ Abs(_,_,p)) = member (op =) bs "Ex" orelse has p
wenzelm@24300
   142
        | has _ = false
paulson@15579
   143
  in  has  end;
wenzelm@24300
   144
paulson@9840
   145
paulson@15579
   146
(**** Clause handling ****)
paulson@9840
   147
paulson@15579
   148
fun literals (Const("Trueprop",_) $ P) = literals P
paulson@15579
   149
  | literals (Const("op |",_) $ P $ Q) = literals P @ literals Q
paulson@15579
   150
  | literals (Const("Not",_) $ P) = [(false,P)]
paulson@15579
   151
  | literals P = [(true,P)];
paulson@9840
   152
paulson@15579
   153
(*number of literals in a term*)
paulson@15579
   154
val nliterals = length o literals;
paulson@9840
   155
paulson@18389
   156
paulson@18389
   157
(*** Tautology Checking ***)
paulson@18389
   158
wenzelm@24300
   159
fun signed_lits_aux (Const ("op |", _) $ P $ Q) (poslits, neglits) =
paulson@18389
   160
      signed_lits_aux Q (signed_lits_aux P (poslits, neglits))
paulson@18389
   161
  | signed_lits_aux (Const("Not",_) $ P) (poslits, neglits) = (poslits, P::neglits)
paulson@18389
   162
  | signed_lits_aux P (poslits, neglits) = (P::poslits, neglits);
wenzelm@24300
   163
paulson@18389
   164
fun signed_lits th = signed_lits_aux (HOLogic.dest_Trueprop (concl_of th)) ([],[]);
paulson@18389
   165
paulson@18389
   166
(*Literals like X=X are tautologous*)
paulson@18389
   167
fun taut_poslit (Const("op =",_) $ t $ u) = t aconv u
paulson@18389
   168
  | taut_poslit (Const("True",_)) = true
paulson@18389
   169
  | taut_poslit _ = false;
paulson@18389
   170
paulson@18389
   171
fun is_taut th =
paulson@18389
   172
  let val (poslits,neglits) = signed_lits th
paulson@18389
   173
  in  exists taut_poslit poslits
paulson@18389
   174
      orelse
wenzelm@20073
   175
      exists (member (op aconv) neglits) (HOLogic.false_const :: poslits)
paulson@19894
   176
  end
wenzelm@24300
   177
  handle TERM _ => false;       (*probably dest_Trueprop on a weird theorem*)
paulson@18389
   178
paulson@18389
   179
paulson@18389
   180
(*** To remove trivial negated equality literals from clauses ***)
paulson@18389
   181
paulson@18389
   182
(*They are typically functional reflexivity axioms and are the converses of
paulson@18389
   183
  injectivity equivalences*)
wenzelm@24300
   184
paulson@18389
   185
val not_refl_disj_D = thm"meson_not_refl_disj_D";
paulson@18389
   186
paulson@20119
   187
(*Is either term a Var that does not properly occur in the other term?*)
paulson@20119
   188
fun eliminable (t as Var _, u) = t aconv u orelse not (Logic.occs(t,u))
paulson@20119
   189
  | eliminable (u, t as Var _) = t aconv u orelse not (Logic.occs(t,u))
paulson@20119
   190
  | eliminable _ = false;
paulson@20119
   191
paulson@18389
   192
fun refl_clause_aux 0 th = th
paulson@18389
   193
  | refl_clause_aux n th =
paulson@18389
   194
       case HOLogic.dest_Trueprop (concl_of th) of
wenzelm@24300
   195
          (Const ("op |", _) $ (Const ("op |", _) $ _ $ _) $ _) =>
paulson@18389
   196
            refl_clause_aux n (th RS disj_assoc)    (*isolate an atom as first disjunct*)
wenzelm@24300
   197
        | (Const ("op |", _) $ (Const("Not",_) $ (Const("op =",_) $ t $ u)) $ _) =>
wenzelm@24300
   198
            if eliminable(t,u)
wenzelm@24300
   199
            then refl_clause_aux (n-1) (th RS not_refl_disj_D)  (*Var inequation: delete*)
wenzelm@24300
   200
            else refl_clause_aux (n-1) (th RS disj_comm)  (*not between Vars: ignore*)
wenzelm@24300
   201
        | (Const ("op |", _) $ _ $ _) => refl_clause_aux n (th RS disj_comm)
wenzelm@24300
   202
        | _ => (*not a disjunction*) th;
paulson@18389
   203
wenzelm@24300
   204
fun notequal_lits_count (Const ("op |", _) $ P $ Q) =
paulson@18389
   205
      notequal_lits_count P + notequal_lits_count Q
paulson@18389
   206
  | notequal_lits_count (Const("Not",_) $ (Const("op =",_) $ _ $ _)) = 1
paulson@18389
   207
  | notequal_lits_count _ = 0;
paulson@18389
   208
paulson@18389
   209
(*Simplify a clause by applying reflexivity to its negated equality literals*)
wenzelm@24300
   210
fun refl_clause th =
paulson@18389
   211
  let val neqs = notequal_lits_count (HOLogic.dest_Trueprop (concl_of th))
paulson@19894
   212
  in  zero_var_indexes (refl_clause_aux neqs th)  end
wenzelm@24300
   213
  handle TERM _ => th;  (*probably dest_Trueprop on a weird theorem*)
paulson@18389
   214
paulson@18389
   215
paulson@24937
   216
(*** Removal of duplicate literals ***)
paulson@24937
   217
paulson@24937
   218
(*Forward proof, passing extra assumptions as theorems to the tactic*)
paulson@24937
   219
fun forward_res2 nf hyps st =
paulson@24937
   220
  case Seq.pull
paulson@24937
   221
        (REPEAT
paulson@24937
   222
         (METAHYPS (fn major::minors => rtac (nf (minors@hyps) major) 1) 1)
paulson@24937
   223
         st)
paulson@24937
   224
  of SOME(th,_) => th
paulson@24937
   225
   | NONE => raise THM("forward_res2", 0, [st]);
paulson@24937
   226
paulson@24937
   227
(*Remove duplicates in P|Q by assuming ~P in Q
paulson@24937
   228
  rls (initially []) accumulates assumptions of the form P==>False*)
paulson@24937
   229
fun nodups_aux rls th = nodups_aux rls (th RS disj_assoc)
paulson@24937
   230
    handle THM _ => tryres(th,rls)
paulson@24937
   231
    handle THM _ => tryres(forward_res2 nodups_aux rls (th RS disj_forward2),
paulson@24937
   232
                           [disj_FalseD1, disj_FalseD2, asm_rl])
paulson@24937
   233
    handle THM _ => th;
paulson@24937
   234
paulson@24937
   235
(*Remove duplicate literals, if there are any*)
paulson@24937
   236
fun nodups th =
paulson@24937
   237
  if has_duplicates (op =) (literals (prop_of th))
paulson@24937
   238
    then nodups_aux [] th
paulson@24937
   239
    else th;
paulson@24937
   240
paulson@24937
   241
paulson@18389
   242
(*** The basic CNF transformation ***)
paulson@18389
   243
paulson@26562
   244
fun too_many_clauses ctxto t = 
paulson@26562
   245
 let
paulson@26562
   246
  val max_cl = case ctxto of SOME ctxt => Config.get ctxt max_clauses
paulson@26562
   247
                           | NONE => max_clauses_default
paulson@26562
   248
  
paulson@26562
   249
  fun sum x y = if x < max_cl andalso y < max_cl then x+y else max_cl;
paulson@26562
   250
  fun prod x y = if x < max_cl andalso y < max_cl then x*y else max_cl;
paulson@26562
   251
  
paulson@26562
   252
  (*Estimate the number of clauses in order to detect infeasible theorems*)
paulson@26562
   253
  fun signed_nclauses b (Const("Trueprop",_) $ t) = signed_nclauses b t
paulson@26562
   254
    | signed_nclauses b (Const("Not",_) $ t) = signed_nclauses (not b) t
paulson@26562
   255
    | signed_nclauses b (Const("op &",_) $ t $ u) =
paulson@26562
   256
	if b then sum (signed_nclauses b t) (signed_nclauses b u)
paulson@26562
   257
	     else prod (signed_nclauses b t) (signed_nclauses b u)
paulson@26562
   258
    | signed_nclauses b (Const("op |",_) $ t $ u) =
paulson@26562
   259
	if b then prod (signed_nclauses b t) (signed_nclauses b u)
paulson@26562
   260
	     else sum (signed_nclauses b t) (signed_nclauses b u)
paulson@26562
   261
    | signed_nclauses b (Const("op -->",_) $ t $ u) =
paulson@26562
   262
	if b then prod (signed_nclauses (not b) t) (signed_nclauses b u)
paulson@26562
   263
	     else sum (signed_nclauses (not b) t) (signed_nclauses b u)
paulson@26562
   264
    | signed_nclauses b (Const("op =", Type ("fun", [T, _])) $ t $ u) =
paulson@26562
   265
	if T = HOLogic.boolT then (*Boolean equality is if-and-only-if*)
paulson@26562
   266
	    if b then sum (prod (signed_nclauses (not b) t) (signed_nclauses b u))
paulson@26562
   267
			  (prod (signed_nclauses (not b) u) (signed_nclauses b t))
paulson@26562
   268
		 else sum (prod (signed_nclauses b t) (signed_nclauses b u))
paulson@26562
   269
			  (prod (signed_nclauses (not b) t) (signed_nclauses (not b) u))
paulson@26562
   270
	else 1
paulson@26562
   271
    | signed_nclauses b (Const("Ex", _) $ Abs (_,_,t)) = signed_nclauses b t
paulson@26562
   272
    | signed_nclauses b (Const("All",_) $ Abs (_,_,t)) = signed_nclauses b t
paulson@26562
   273
    | signed_nclauses _ _ = 1; (* literal *)
paulson@26562
   274
 in 
paulson@26562
   275
  signed_nclauses true t >= max_cl
paulson@26562
   276
 end;
paulson@19894
   277
paulson@15579
   278
(*Replaces universally quantified variables by FREE variables -- because
paulson@24937
   279
  assumptions may not contain scheme variables.  Later, generalize using Variable.export. *)
paulson@24937
   280
local  
paulson@24937
   281
  val spec_var = Thm.dest_arg (Thm.dest_arg (#2 (Thm.dest_implies (Thm.cprop_of spec))));
paulson@24937
   282
  val spec_varT = #T (Thm.rep_cterm spec_var);
paulson@24937
   283
  fun name_of (Const ("All", _) $ Abs(x,_,_)) = x | name_of _ = Name.uu;
paulson@24937
   284
in  
paulson@24937
   285
  fun freeze_spec th ctxt =
paulson@24937
   286
    let
paulson@24937
   287
      val cert = Thm.cterm_of (ProofContext.theory_of ctxt);
paulson@24937
   288
      val ([x], ctxt') = Variable.variant_fixes [name_of (HOLogic.dest_Trueprop (concl_of th))] ctxt;
paulson@24937
   289
      val spec' = Thm.instantiate ([], [(spec_var, cert (Free (x, spec_varT)))]) spec;
paulson@24937
   290
    in (th RS spec', ctxt') end
paulson@24937
   291
end;
paulson@9840
   292
paulson@15998
   293
(*Used with METAHYPS below. There is one assumption, which gets bound to prem
paulson@15998
   294
  and then normalized via function nf. The normal form is given to resolve_tac,
paulson@22515
   295
  instantiate a Boolean variable created by resolution with disj_forward. Since
paulson@22515
   296
  (nf prem) returns a LIST of theorems, we can backtrack to get all combinations.*)
paulson@15579
   297
fun resop nf [prem] = resolve_tac (nf prem) 1;
paulson@9840
   298
wenzelm@24300
   299
(*Any need to extend this list with
wenzelm@26424
   300
  "HOL.type_class","HOL.eq_class","Pure.term"?*)
wenzelm@24300
   301
val has_meta_conn =
wenzelm@22871
   302
    exists_Const (member (op =) ["==", "==>", "all", "prop"] o #1);
paulson@20417
   303
wenzelm@24300
   304
fun apply_skolem_ths (th, rls) =
paulson@20417
   305
  let fun tryall [] = raise THM("apply_skolem_ths", 0, th::rls)
paulson@20417
   306
        | tryall (rl::rls) = (first_order_resolve th rl handle THM _ => tryall rls)
paulson@20417
   307
  in  tryall rls  end;
paulson@22515
   308
paulson@15998
   309
(*Conjunctive normal form, adding clauses from th in front of ths (for foldr).
paulson@15998
   310
  Strips universal quantifiers and breaks up conjunctions.
paulson@15998
   311
  Eliminates existential quantifiers using skoths: Skolemization theorems.*)
paulson@24937
   312
fun cnf skoths ctxt (th,ths) =
paulson@24937
   313
  let val ctxtr = ref ctxt
paulson@24937
   314
      fun cnf_aux (th,ths) =
wenzelm@24300
   315
        if not (can HOLogic.dest_Trueprop (prop_of th)) then ths (*meta-level: ignore*)
wenzelm@24300
   316
        else if not (has_conns ["All","Ex","op &"] (prop_of th))
paulson@24937
   317
        then nodups th :: ths (*no work to do, terminate*)
wenzelm@24300
   318
        else case head_of (HOLogic.dest_Trueprop (concl_of th)) of
wenzelm@24300
   319
            Const ("op &", _) => (*conjunction*)
wenzelm@24300
   320
                cnf_aux (th RS conjunct1, cnf_aux (th RS conjunct2, ths))
wenzelm@24300
   321
          | Const ("All", _) => (*universal quantifier*)
paulson@24937
   322
                let val (th',ctxt') = freeze_spec th (!ctxtr)
paulson@24937
   323
                in  ctxtr := ctxt'; cnf_aux (th', ths) end
wenzelm@24300
   324
          | Const ("Ex", _) =>
wenzelm@24300
   325
              (*existential quantifier: Insert Skolem functions*)
wenzelm@24300
   326
              cnf_aux (apply_skolem_ths (th,skoths), ths)
wenzelm@24300
   327
          | Const ("op |", _) =>
wenzelm@24300
   328
              (*Disjunction of P, Q: Create new goal of proving ?P | ?Q and solve it using
wenzelm@24300
   329
                all combinations of converting P, Q to CNF.*)
wenzelm@24300
   330
              let val tac =
wenzelm@24300
   331
                  (METAHYPS (resop cnf_nil) 1) THEN
wenzelm@24300
   332
                   (fn st' => st' |> METAHYPS (resop cnf_nil) 1)
wenzelm@24300
   333
              in  Seq.list_of (tac (th RS disj_forward)) @ ths  end
paulson@24937
   334
          | _ => nodups th :: ths  (*no work to do*)
paulson@19154
   335
      and cnf_nil th = cnf_aux (th,[])
paulson@24937
   336
      val cls = 
paulson@26562
   337
	    if too_many_clauses (SOME ctxt) (concl_of th)
wenzelm@26928
   338
	    then (warning ("cnf is ignoring: " ^ Display.string_of_thm th); ths)
paulson@24937
   339
	    else cnf_aux (th,ths)
paulson@24937
   340
  in  (cls, !ctxtr)  end;
paulson@9840
   341
paulson@24937
   342
fun make_cnf skoths th ctxt = cnf skoths ctxt (th, []);
paulson@20417
   343
paulson@20417
   344
(*Generalization, removal of redundant equalities, removal of tautologies.*)
paulson@24937
   345
fun finish_cnf ths = filter (not o is_taut) (map refl_clause ths);
paulson@9840
   346
paulson@9840
   347
paulson@15579
   348
(**** Generation of contrapositives ****)
paulson@9840
   349
wenzelm@24300
   350
fun is_left (Const ("Trueprop", _) $
paulson@21102
   351
               (Const ("op |", _) $ (Const ("op |", _) $ _ $ _) $ _)) = true
paulson@21102
   352
  | is_left _ = false;
wenzelm@24300
   353
paulson@15579
   354
(*Associate disjuctions to right -- make leftmost disjunct a LITERAL*)
wenzelm@24300
   355
fun assoc_right th =
paulson@21102
   356
  if is_left (prop_of th) then assoc_right (th RS disj_assoc)
paulson@21102
   357
  else th;
paulson@9840
   358
paulson@15579
   359
(*Must check for negative literal first!*)
paulson@15579
   360
val clause_rules = [disj_assoc, make_neg_rule, make_pos_rule];
paulson@9840
   361
paulson@15579
   362
(*For ordinary resolution. *)
paulson@15579
   363
val resolution_clause_rules = [disj_assoc, make_neg_rule', make_pos_rule'];
paulson@9840
   364
paulson@15579
   365
(*Create a goal or support clause, conclusing False*)
paulson@15579
   366
fun make_goal th =   (*Must check for negative literal first!*)
paulson@15579
   367
    make_goal (tryres(th, clause_rules))
paulson@15579
   368
  handle THM _ => tryres(th, [make_neg_goal, make_pos_goal]);
paulson@9840
   369
paulson@15579
   370
(*Sort clauses by number of literals*)
paulson@15579
   371
fun fewerlits(th1,th2) = nliterals(prop_of th1) < nliterals(prop_of th2);
paulson@9840
   372
paulson@18389
   373
fun sort_clauses ths = sort (make_ord fewerlits) ths;
paulson@9840
   374
paulson@15581
   375
(*True if the given type contains bool anywhere*)
paulson@15581
   376
fun has_bool (Type("bool",_)) = true
paulson@15581
   377
  | has_bool (Type(_, Ts)) = exists has_bool Ts
paulson@15581
   378
  | has_bool _ = false;
wenzelm@24300
   379
wenzelm@24300
   380
(*Is the string the name of a connective? Really only | and Not can remain,
wenzelm@24300
   381
  since this code expects to be called on a clause form.*)
wenzelm@19875
   382
val is_conn = member (op =)
wenzelm@24300
   383
    ["Trueprop", "op &", "op |", "op -->", "Not",
paulson@15613
   384
     "All", "Ex", "Ball", "Bex"];
paulson@15613
   385
wenzelm@24300
   386
(*True if the term contains a function--not a logical connective--where the type
paulson@20524
   387
  of any argument contains bool.*)
wenzelm@24300
   388
val has_bool_arg_const =
paulson@15613
   389
    exists_Const
paulson@15613
   390
      (fn (c,T) => not(is_conn c) andalso exists (has_bool) (binder_types T));
paulson@22381
   391
wenzelm@24300
   392
(*A higher-order instance of a first-order constant? Example is the definition of
paulson@22381
   393
  HOL.one, 1, at a function type in theory SetsAndFunctions.*)
wenzelm@24300
   394
fun higher_inst_const thy (c,T) =
paulson@22381
   395
  case binder_types T of
paulson@22381
   396
      [] => false (*not a function type, OK*)
paulson@22381
   397
    | Ts => length (binder_types (Sign.the_const_type thy c)) <> length Ts;
paulson@22381
   398
paulson@24742
   399
(*Returns false if any Vars in the theorem mention type bool.
paulson@21102
   400
  Also rejects functions whose arguments are Booleans or other functions.*)
paulson@22381
   401
fun is_fol_term thy t =
paulson@22381
   402
    Term.is_first_order ["all","All","Ex"] t andalso
paulson@19204
   403
    not (exists (has_bool o fastype_of) (term_vars t)  orelse
wenzelm@24300
   404
         has_bool_arg_const t  orelse
wenzelm@24300
   405
         exists_Const (higher_inst_const thy) t orelse
wenzelm@24300
   406
         has_meta_conn t);
paulson@19204
   407
paulson@21102
   408
fun rigid t = not (is_Var (head_of t));
paulson@21102
   409
paulson@21102
   410
fun ok4horn (Const ("Trueprop",_) $ (Const ("op |", _) $ t $ _)) = rigid t
paulson@21102
   411
  | ok4horn (Const ("Trueprop",_) $ t) = rigid t
paulson@21102
   412
  | ok4horn _ = false;
paulson@21102
   413
paulson@15579
   414
(*Create a meta-level Horn clause*)
wenzelm@24300
   415
fun make_horn crules th =
wenzelm@24300
   416
  if ok4horn (concl_of th)
paulson@21102
   417
  then make_horn crules (tryres(th,crules)) handle THM _ => th
paulson@21102
   418
  else th;
paulson@9840
   419
paulson@16563
   420
(*Generate Horn clauses for all contrapositives of a clause. The input, th,
paulson@16563
   421
  is a HOL disjunction.*)
paulson@15579
   422
fun add_contras crules (th,hcs) =
paulson@15579
   423
  let fun rots (0,th) = hcs
wenzelm@24300
   424
        | rots (k,th) = zero_var_indexes (make_horn crules th) ::
wenzelm@24300
   425
                        rots(k-1, assoc_right (th RS disj_comm))
paulson@15862
   426
  in case nliterals(prop_of th) of
wenzelm@24300
   427
        1 => th::hcs
paulson@15579
   428
      | n => rots(n, assoc_right th)
paulson@15579
   429
  end;
paulson@9840
   430
paulson@15579
   431
(*Use "theorem naming" to label the clauses*)
paulson@15579
   432
fun name_thms label =
paulson@15579
   433
    let fun name1 (th, (k,ths)) =
wenzelm@24300
   434
          (k-1, PureThy.put_name_hint (label ^ string_of_int k) th :: ths)
paulson@15579
   435
    in  fn ths => #2 (foldr name1 (length ths, []) ths)  end;
paulson@9840
   436
paulson@16563
   437
(*Is the given disjunction an all-negative support clause?*)
paulson@15579
   438
fun is_negative th = forall (not o #1) (literals (prop_of th));
paulson@9840
   439
paulson@15579
   440
val neg_clauses = List.filter is_negative;
paulson@9840
   441
paulson@9840
   442
paulson@15579
   443
(***** MESON PROOF PROCEDURE *****)
paulson@9840
   444
paulson@15579
   445
fun rhyps (Const("==>",_) $ (Const("Trueprop",_) $ A) $ phi,
wenzelm@24300
   446
           As) = rhyps(phi, A::As)
paulson@15579
   447
  | rhyps (_, As) = As;
paulson@9840
   448
paulson@15579
   449
(** Detecting repeated assumptions in a subgoal **)
paulson@9840
   450
paulson@15579
   451
(*The stringtree detects repeated assumptions.*)
wenzelm@16801
   452
fun ins_term (net,t) = Net.insert_term (op aconv) (t,t) net;
paulson@9840
   453
paulson@15579
   454
(*detects repetitions in a list of terms*)
paulson@15579
   455
fun has_reps [] = false
paulson@15579
   456
  | has_reps [_] = false
paulson@15579
   457
  | has_reps [t,u] = (t aconv u)
paulson@15579
   458
  | has_reps ts = (Library.foldl ins_term (Net.empty, ts);  false)
wenzelm@24300
   459
                  handle Net.INSERT => true;
paulson@9840
   460
paulson@15579
   461
(*Like TRYALL eq_assume_tac, but avoids expensive THEN calls*)
paulson@18508
   462
fun TRYING_eq_assume_tac 0 st = Seq.single st
paulson@18508
   463
  | TRYING_eq_assume_tac i st =
paulson@18508
   464
       TRYING_eq_assume_tac (i-1) (eq_assumption i st)
paulson@18508
   465
       handle THM _ => TRYING_eq_assume_tac (i-1) st;
paulson@18508
   466
paulson@18508
   467
fun TRYALL_eq_assume_tac st = TRYING_eq_assume_tac (nprems_of st) st;
paulson@9840
   468
paulson@15579
   469
(*Loop checking: FAIL if trying to prove the same thing twice
paulson@15579
   470
  -- if *ANY* subgoal has repeated literals*)
paulson@15579
   471
fun check_tac st =
paulson@15579
   472
  if exists (fn prem => has_reps (rhyps(prem,[]))) (prems_of st)
paulson@15579
   473
  then  Seq.empty  else  Seq.single st;
paulson@9840
   474
paulson@9840
   475
paulson@15579
   476
(* net_resolve_tac actually made it slower... *)
paulson@15579
   477
fun prolog_step_tac horns i =
paulson@15579
   478
    (assume_tac i APPEND resolve_tac horns i) THEN check_tac THEN
paulson@18508
   479
    TRYALL_eq_assume_tac;
paulson@15579
   480
paulson@9840
   481
(*Sums the sizes of the subgoals, ignoring hypotheses (ancestors)*)
paulson@15579
   482
fun addconcl(prem,sz) = size_of_term(Logic.strip_assums_concl prem) + sz
paulson@15579
   483
paulson@15579
   484
fun size_of_subgoals st = foldr addconcl 0 (prems_of st);
paulson@15579
   485
paulson@9840
   486
paulson@9840
   487
(*Negation Normal Form*)
paulson@9840
   488
val nnf_rls = [imp_to_disjD, iff_to_disjD, not_conjD, not_disjD,
wenzelm@9869
   489
               not_impD, not_iffD, not_allD, not_exD, not_notD];
paulson@15581
   490
paulson@21102
   491
fun ok4nnf (Const ("Trueprop",_) $ (Const ("Not", _) $ t)) = rigid t
paulson@21102
   492
  | ok4nnf (Const ("Trueprop",_) $ t) = rigid t
paulson@21102
   493
  | ok4nnf _ = false;
paulson@21102
   494
wenzelm@24300
   495
fun make_nnf1 th =
wenzelm@24300
   496
  if ok4nnf (concl_of th)
paulson@21102
   497
  then make_nnf1 (tryres(th, nnf_rls))
wenzelm@9869
   498
    handle THM _ =>
paulson@15581
   499
        forward_res make_nnf1
wenzelm@9869
   500
           (tryres(th, [conj_forward,disj_forward,all_forward,ex_forward]))
paulson@21102
   501
    handle THM _ => th
paulson@21102
   502
  else th;
paulson@9840
   503
wenzelm@24300
   504
(*The simplification removes defined quantifiers and occurrences of True and False.
paulson@20018
   505
  nnf_ss also includes the one-point simprocs,
paulson@18405
   506
  which are needed to avoid the various one-point theorems from generating junk clauses.*)
paulson@19894
   507
val nnf_simps =
wenzelm@24300
   508
     [simp_implies_def, Ex1_def, Ball_def, Bex_def, if_True,
paulson@19894
   509
      if_False, if_cancel, if_eq_cancel, cases_simp];
paulson@19894
   510
val nnf_extra_simps =
paulson@19894
   511
      thms"split_ifs" @ ex_simps @ all_simps @ simp_thms;
paulson@18405
   512
paulson@18405
   513
val nnf_ss =
wenzelm@24300
   514
  HOL_basic_ss addsimps nnf_extra_simps
wenzelm@24040
   515
    addsimprocs [defALL_regroup,defEX_regroup, @{simproc neq}, @{simproc let_simp}];
paulson@15872
   516
paulson@21050
   517
fun make_nnf th = case prems_of th of
paulson@21050
   518
    [] => th |> rewrite_rule (map safe_mk_meta_eq nnf_simps)
wenzelm@24300
   519
             |> simplify nnf_ss
wenzelm@24300
   520
             |> make_nnf1
paulson@21050
   521
  | _ => raise THM ("make_nnf: premises in argument", 0, [th]);
paulson@15581
   522
paulson@15965
   523
(*Pull existential quantifiers to front. This accomplishes Skolemization for
paulson@15965
   524
  clauses that arise from a subgoal.*)
wenzelm@9869
   525
fun skolemize th =
paulson@20134
   526
  if not (has_conns ["Ex"] (prop_of th)) then th
quigley@15773
   527
  else (skolemize (tryres(th, [choice, conj_exD1, conj_exD2,
quigley@15679
   528
                              disj_exD, disj_exD1, disj_exD2])))
wenzelm@9869
   529
    handle THM _ =>
wenzelm@9869
   530
        skolemize (forward_res skolemize
wenzelm@9869
   531
                   (tryres (th, [conj_forward, disj_forward, all_forward])))
paulson@24937
   532
    handle THM _ => forward_res skolemize (rename_bvs_RS th ex_forward);
paulson@9840
   533
paulson@25694
   534
fun skolemize_nnf_list [] = []
paulson@25694
   535
  | skolemize_nnf_list (th::ths) = 
paulson@25694
   536
      skolemize (make_nnf th) :: skolemize_nnf_list ths
paulson@25710
   537
      handle THM _ => (*RS can fail if Unify.search_bound is too small*)
wenzelm@26928
   538
       (warning ("Failed to Skolemize " ^ Display.string_of_thm th);
paulson@25694
   539
        skolemize_nnf_list ths);
paulson@25694
   540
paulson@24937
   541
fun add_clauses (th,cls) =
paulson@24937
   542
  let val ctxt0 = Variable.thm_context th
paulson@24937
   543
      val (cnfs,ctxt) = make_cnf [] th ctxt0
paulson@24937
   544
  in Variable.export ctxt ctxt0 cnfs @ cls end;
paulson@9840
   545
paulson@9840
   546
(*Make clauses from a list of theorems, previously Skolemized and put into nnf.
paulson@9840
   547
  The resulting clauses are HOL disjunctions.*)
paulson@24937
   548
fun make_clauses ths = sort_clauses (foldr add_clauses [] ths);
quigley@15773
   549
paulson@16563
   550
(*Convert a list of clauses (disjunctions) to Horn clauses (contrapositives)*)
wenzelm@9869
   551
fun make_horns ths =
paulson@9840
   552
    name_thms "Horn#"
wenzelm@22360
   553
      (distinct Thm.eq_thm_prop (foldr (add_contras clause_rules) [] ths));
paulson@9840
   554
paulson@9840
   555
(*Could simply use nprems_of, which would count remaining subgoals -- no
paulson@9840
   556
  discrimination as to their size!  With BEST_FIRST, fails for problem 41.*)
paulson@9840
   557
wenzelm@9869
   558
fun best_prolog_tac sizef horns =
paulson@9840
   559
    BEST_FIRST (has_fewer_prems 1, sizef) (prolog_step_tac horns 1);
paulson@9840
   560
wenzelm@9869
   561
fun depth_prolog_tac horns =
paulson@9840
   562
    DEPTH_FIRST (has_fewer_prems 1) (prolog_step_tac horns 1);
paulson@9840
   563
paulson@9840
   564
(*Return all negative clauses, as possible goal clauses*)
paulson@9840
   565
fun gocls cls = name_thms "Goal#" (map make_goal (neg_clauses cls));
paulson@9840
   566
paulson@15008
   567
fun skolemize_prems_tac prems =
paulson@25694
   568
    cut_facts_tac (skolemize_nnf_list prems) THEN'
paulson@9840
   569
    REPEAT o (etac exE);
paulson@9840
   570
paulson@22546
   571
(*Basis of all meson-tactics.  Supplies cltac with clauses: HOL disjunctions.
paulson@22546
   572
  Function mkcl converts theorems to clauses.*)
wenzelm@24300
   573
fun MESON mkcl cltac i st =
paulson@16588
   574
  SELECT_GOAL
wenzelm@23590
   575
    (EVERY [ObjectLogic.atomize_prems_tac 1,
paulson@23552
   576
            rtac ccontr 1,
wenzelm@24300
   577
            METAHYPS (fn negs =>
wenzelm@24300
   578
                      EVERY1 [skolemize_prems_tac negs,
wenzelm@24300
   579
                              METAHYPS (cltac o mkcl)]) 1]) i st
wenzelm@24300
   580
  handle THM _ => no_tac st;    (*probably from make_meta_clause, not first-order*)
paulson@9840
   581
paulson@9840
   582
(** Best-first search versions **)
paulson@9840
   583
paulson@16563
   584
(*ths is a list of additional clauses (HOL disjunctions) to use.*)
wenzelm@9869
   585
fun best_meson_tac sizef =
wenzelm@24300
   586
  MESON make_clauses
paulson@22546
   587
    (fn cls =>
paulson@9840
   588
         THEN_BEST_FIRST (resolve_tac (gocls cls) 1)
paulson@9840
   589
                         (has_fewer_prems 1, sizef)
paulson@9840
   590
                         (prolog_step_tac (make_horns cls) 1));
paulson@9840
   591
paulson@9840
   592
(*First, breaks the goal into independent units*)
paulson@9840
   593
val safe_best_meson_tac =
wenzelm@23894
   594
     SELECT_GOAL (TRY (CLASET safe_tac) THEN
paulson@9840
   595
                  TRYALL (best_meson_tac size_of_subgoals));
paulson@9840
   596
paulson@9840
   597
(** Depth-first search version **)
paulson@9840
   598
paulson@9840
   599
val depth_meson_tac =
paulson@22546
   600
  MESON make_clauses
paulson@22546
   601
    (fn cls => EVERY [resolve_tac (gocls cls) 1, depth_prolog_tac (make_horns cls)]);
paulson@9840
   602
paulson@9840
   603
paulson@9840
   604
(** Iterative deepening version **)
paulson@9840
   605
paulson@9840
   606
(*This version does only one inference per call;
paulson@9840
   607
  having only one eq_assume_tac speeds it up!*)
wenzelm@9869
   608
fun prolog_step_tac' horns =
paulson@9840
   609
    let val (horn0s, hornps) = (*0 subgoals vs 1 or more*)
paulson@9840
   610
            take_prefix Thm.no_prems horns
paulson@9840
   611
        val nrtac = net_resolve_tac horns
paulson@9840
   612
    in  fn i => eq_assume_tac i ORELSE
paulson@9840
   613
                match_tac horn0s i ORELSE  (*no backtracking if unit MATCHES*)
paulson@9840
   614
                ((assume_tac i APPEND nrtac i) THEN check_tac)
paulson@9840
   615
    end;
paulson@9840
   616
wenzelm@9869
   617
fun iter_deepen_prolog_tac horns =
paulson@9840
   618
    ITER_DEEPEN (has_fewer_prems 1) (prolog_step_tac' horns);
paulson@9840
   619
wenzelm@24300
   620
fun iter_deepen_meson_tac ths = MESON make_clauses
paulson@21095
   621
 (fn cls =>
paulson@21095
   622
      case (gocls (cls@ths)) of
wenzelm@24300
   623
           [] => no_tac  (*no goal clauses*)
wenzelm@24300
   624
         | goes =>
wenzelm@24300
   625
             let val horns = make_horns (cls@ths)
wenzelm@24300
   626
                 val _ =
wenzelm@24300
   627
                     Output.debug (fn () => ("meson method called:\n" ^
wenzelm@26931
   628
                                  cat_lines (map Display.string_of_thm (cls@ths)) ^
wenzelm@24300
   629
                                  "\nclauses:\n" ^
wenzelm@26931
   630
                                  cat_lines (map Display.string_of_thm horns)))
wenzelm@24300
   631
             in THEN_ITER_DEEPEN (resolve_tac goes 1) (has_fewer_prems 1) (prolog_step_tac' horns)
wenzelm@24300
   632
             end
paulson@21095
   633
 );
paulson@9840
   634
paulson@16563
   635
fun meson_claset_tac ths cs =
paulson@16563
   636
  SELECT_GOAL (TRY (safe_tac cs) THEN TRYALL (iter_deepen_meson_tac ths));
wenzelm@9869
   637
paulson@16563
   638
val meson_tac = CLASET' (meson_claset_tac []);
wenzelm@9869
   639
wenzelm@9869
   640
paulson@14813
   641
(**** Code to support ordinary resolution, rather than Model Elimination ****)
paulson@14744
   642
wenzelm@24300
   643
(*Convert a list of clauses (disjunctions) to meta-level clauses (==>),
paulson@15008
   644
  with no contrapositives, for ordinary resolution.*)
paulson@14744
   645
paulson@14744
   646
(*Rules to convert the head literal into a negated assumption. If the head
paulson@14744
   647
  literal is already negated, then using notEfalse instead of notEfalse'
paulson@14744
   648
  prevents a double negation.*)
wenzelm@27153
   649
val notEfalse = Drule.read_instantiate [("R","False")] notE;
paulson@14744
   650
val notEfalse' = rotate_prems 1 notEfalse;
paulson@14744
   651
wenzelm@24300
   652
fun negated_asm_of_head th =
paulson@14744
   653
    th RS notEfalse handle THM _ => th RS notEfalse';
paulson@14744
   654
paulson@26066
   655
(*Converting one theorem from a disjunction to a meta-level clause*)
paulson@26066
   656
fun make_meta_clause th =
paulson@26066
   657
  let val (fth,thaw) = Drule.freeze_thaw_robust th
paulson@26066
   658
  in  
paulson@26066
   659
      (zero_var_indexes o Thm.varifyT o thaw 0 o 
paulson@26066
   660
       negated_asm_of_head o make_horn resolution_clause_rules) fth
paulson@26066
   661
  end;
wenzelm@24300
   662
paulson@14744
   663
fun make_meta_clauses ths =
paulson@14744
   664
    name_thms "MClause#"
wenzelm@22360
   665
      (distinct Thm.eq_thm_prop (map make_meta_clause ths));
paulson@14744
   666
paulson@14744
   667
(*Permute a rule's premises to move the i-th premise to the last position.*)
paulson@14744
   668
fun make_last i th =
wenzelm@24300
   669
  let val n = nprems_of th
wenzelm@24300
   670
  in  if 1 <= i andalso i <= n
paulson@14744
   671
      then Thm.permute_prems (i-1) 1 th
paulson@15118
   672
      else raise THM("select_literal", i, [th])
paulson@14744
   673
  end;
paulson@14744
   674
paulson@14744
   675
(*Maps a rule that ends "... ==> P ==> False" to "... ==> ~P" while suppressing
paulson@14744
   676
  double-negations.*)
paulson@14744
   677
val negate_head = rewrite_rule [atomize_not, not_not RS eq_reflection];
paulson@14744
   678
paulson@14744
   679
(*Maps the clause  [P1,...Pn]==>False to [P1,...,P(i-1),P(i+1),...Pn] ==> ~P*)
paulson@14744
   680
fun select_literal i cl = negate_head (make_last i cl);
paulson@14744
   681
paulson@18508
   682
paulson@14813
   683
(*Top-level Skolemization. Allows part of the conversion to clauses to be
wenzelm@24300
   684
  expressed as a tactic (or Isar method).  Each assumption of the selected
paulson@14813
   685
  goal is converted to NNF and then its existential quantifiers are pulled
wenzelm@24300
   686
  to the front. Finally, all existential quantifiers are eliminated,
paulson@14813
   687
  leaving !!-quantified variables. Perhaps Safe_tac should follow, but it
paulson@14813
   688
  might generate many subgoals.*)
mengj@18194
   689
wenzelm@24300
   690
fun skolemize_tac i st =
paulson@19204
   691
  let val ts = Logic.strip_assums_hyp (List.nth (prems_of st, i-1))
wenzelm@24300
   692
  in
paulson@19204
   693
     EVERY' [METAHYPS
paulson@25694
   694
            (fn hyps => (cut_facts_tac (skolemize_nnf_list hyps) 1
paulson@14813
   695
                         THEN REPEAT (etac exE 1))),
paulson@19204
   696
            REPEAT_DETERM_N (length ts) o (etac thin_rl)] i st
paulson@19204
   697
  end
paulson@19204
   698
  handle Subscript => Seq.empty;
mengj@18194
   699
paulson@9840
   700
end;
wenzelm@9869
   701