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