src/HOL/Tools/meson.ML
author paulson
Wed, 13 Sep 2006 12:17:17 +0200
changeset 20524 1493053fc111
parent 20417 c611b1412056
child 20822 634070b40731
permissions -rw-r--r--
Tweaks to is_fol_term, the first-order test. We don't count "=" as a connective
since this test is applied to clause forms.
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
paulson@15579
    14
signature BASIC_MESON =
paulson@15579
    15
sig
paulson@15579
    16
  val size_of_subgoals	: thm -> int
paulson@15998
    17
  val make_cnf		: thm list -> thm -> thm list
paulson@20417
    18
  val finish_cnf	: thm list -> thm list
paulson@15579
    19
  val make_nnf		: thm -> thm
paulson@17849
    20
  val make_nnf1		: thm -> thm
paulson@15579
    21
  val skolemize		: thm -> thm
paulson@15579
    22
  val make_clauses	: thm list -> thm list
paulson@15579
    23
  val make_horns	: thm list -> thm list
paulson@15579
    24
  val best_prolog_tac	: (thm -> int) -> thm list -> tactic
paulson@15579
    25
  val depth_prolog_tac	: thm list -> tactic
paulson@15579
    26
  val gocls		: thm list -> thm list
paulson@15579
    27
  val skolemize_prems_tac	: thm list -> int -> tactic
paulson@15579
    28
  val MESON		: (thm list -> tactic) -> int -> tactic
paulson@15579
    29
  val best_meson_tac	: (thm -> int) -> int -> tactic
paulson@15579
    30
  val safe_best_meson_tac	: int -> tactic
paulson@15579
    31
  val depth_meson_tac	: int -> tactic
paulson@15579
    32
  val prolog_step_tac'	: thm list -> int -> tactic
paulson@15579
    33
  val iter_deepen_prolog_tac	: thm list -> tactic
paulson@16563
    34
  val iter_deepen_meson_tac	: thm list -> int -> tactic
paulson@15579
    35
  val meson_tac		: int -> tactic
paulson@15579
    36
  val negate_head	: thm -> thm
paulson@15579
    37
  val select_literal	: int -> thm -> thm
paulson@15579
    38
  val skolemize_tac	: int -> tactic
paulson@15579
    39
  val make_clauses_tac	: int -> tactic
paulson@15579
    40
end
paulson@9840
    41
paulson@9840
    42
paulson@15579
    43
structure Meson =
paulson@15579
    44
struct
paulson@9840
    45
paulson@15579
    46
val not_conjD = thm "meson_not_conjD";
paulson@15579
    47
val not_disjD = thm "meson_not_disjD";
paulson@15579
    48
val not_notD = thm "meson_not_notD";
paulson@15579
    49
val not_allD = thm "meson_not_allD";
paulson@15579
    50
val not_exD = thm "meson_not_exD";
paulson@15579
    51
val imp_to_disjD = thm "meson_imp_to_disjD";
paulson@15579
    52
val not_impD = thm "meson_not_impD";
paulson@15579
    53
val iff_to_disjD = thm "meson_iff_to_disjD";
paulson@15579
    54
val not_iffD = thm "meson_not_iffD";
paulson@15579
    55
val conj_exD1 = thm "meson_conj_exD1";
paulson@15579
    56
val conj_exD2 = thm "meson_conj_exD2";
paulson@15579
    57
val disj_exD = thm "meson_disj_exD";
paulson@15579
    58
val disj_exD1 = thm "meson_disj_exD1";
paulson@15579
    59
val disj_exD2 = thm "meson_disj_exD2";
paulson@15579
    60
val disj_assoc = thm "meson_disj_assoc";
paulson@15579
    61
val disj_comm = thm "meson_disj_comm";
paulson@15579
    62
val disj_FalseD1 = thm "meson_disj_FalseD1";
paulson@15579
    63
val disj_FalseD2 = thm "meson_disj_FalseD2";
paulson@9840
    64
paulson@16563
    65
val depth_limit = ref 2000;
paulson@9840
    66
paulson@15579
    67
(**** Operators for forward proof ****)
paulson@9840
    68
paulson@20417
    69
paulson@20417
    70
(** First-order Resolution **)
paulson@20417
    71
paulson@20417
    72
fun typ_pair_of (ix, (sort,ty)) = (TVar (ix,sort), ty);
paulson@20417
    73
fun term_pair_of (ix, (ty,t)) = (Var (ix,ty), t);
paulson@20417
    74
paulson@20417
    75
val Envir.Envir {asol = tenv0, iTs = tyenv0, ...} = Envir.empty 0
paulson@20417
    76
paulson@20417
    77
(*FIXME: currently does not "rename variables apart"*)
paulson@20417
    78
fun first_order_resolve thA thB =
paulson@20417
    79
  let val thy = theory_of_thm thA
paulson@20417
    80
      val tmA = concl_of thA
paulson@20417
    81
      fun match pat = Pattern.first_order_match thy (pat,tmA) (tyenv0,tenv0)
paulson@20417
    82
      val Const("==>",_) $ tmB $ _ = prop_of thB
paulson@20417
    83
      val (tyenv,tenv) = match tmB
paulson@20417
    84
      val ct_pairs = map (pairself (cterm_of thy) o term_pair_of) (Vartab.dest tenv)
paulson@20417
    85
  in  thA RS (cterm_instantiate ct_pairs thB)  end
paulson@20417
    86
  handle _ => raise THM ("first_order_resolve", 0, [thA,thB]);
paulson@18175
    87
paulson@15579
    88
(*raises exception if no rules apply -- unlike RL*)
paulson@18141
    89
fun tryres (th, rls) = 
paulson@18141
    90
  let fun tryall [] = raise THM("tryres", 0, th::rls)
paulson@20417
    91
        | tryall (rl::rls) = (th RS rl handle THM _ => tryall rls)
paulson@18141
    92
  in  tryall rls  end;
paulson@18141
    93
  
paulson@15579
    94
(*Permits forward proof from rules that discharge assumptions*)
paulson@15579
    95
fun forward_res nf st =
paulson@15579
    96
  case Seq.pull (ALLGOALS (METAHYPS (fn [prem] => rtac (nf prem) 1)) st)
paulson@15579
    97
  of SOME(th,_) => th
paulson@15579
    98
   | NONE => raise THM("forward_res", 0, [st]);
paulson@9840
    99
paulson@9840
   100
paulson@20134
   101
(*Are any of the logical connectives in "bs" present in the term?*)
paulson@20134
   102
fun has_conns bs =
paulson@20134
   103
  let fun has (Const(a,_)) = false
paulson@20134
   104
        | has (Const("Trueprop",_) $ p) = has p
paulson@20134
   105
        | has (Const("Not",_) $ p) = has p
paulson@20134
   106
        | has (Const("op |",_) $ p $ q) = member (op =) bs "op |" orelse has p orelse has q
paulson@20134
   107
        | has (Const("op &",_) $ p $ q) = member (op =) bs "op &" orelse has p orelse has q
paulson@20134
   108
        | has (Const("All",_) $ Abs(_,_,p)) = member (op =) bs "All" orelse has p
paulson@20134
   109
        | has (Const("Ex",_) $ Abs(_,_,p)) = member (op =) bs "Ex" orelse has p
paulson@15579
   110
	| has _ = false
paulson@15579
   111
  in  has  end;
paulson@17716
   112
  
paulson@9840
   113
paulson@15579
   114
(**** Clause handling ****)
paulson@9840
   115
paulson@15579
   116
fun literals (Const("Trueprop",_) $ P) = literals P
paulson@15579
   117
  | literals (Const("op |",_) $ P $ Q) = literals P @ literals Q
paulson@15579
   118
  | literals (Const("Not",_) $ P) = [(false,P)]
paulson@15579
   119
  | literals P = [(true,P)];
paulson@9840
   120
paulson@15579
   121
(*number of literals in a term*)
paulson@15579
   122
val nliterals = length o literals;
paulson@9840
   123
paulson@18389
   124
paulson@18389
   125
(*** Tautology Checking ***)
paulson@18389
   126
paulson@18389
   127
fun signed_lits_aux (Const ("op |", _) $ P $ Q) (poslits, neglits) = 
paulson@18389
   128
      signed_lits_aux Q (signed_lits_aux P (poslits, neglits))
paulson@18389
   129
  | signed_lits_aux (Const("Not",_) $ P) (poslits, neglits) = (poslits, P::neglits)
paulson@18389
   130
  | signed_lits_aux P (poslits, neglits) = (P::poslits, neglits);
paulson@18389
   131
  
paulson@18389
   132
fun signed_lits th = signed_lits_aux (HOLogic.dest_Trueprop (concl_of th)) ([],[]);
paulson@18389
   133
paulson@18389
   134
(*Literals like X=X are tautologous*)
paulson@18389
   135
fun taut_poslit (Const("op =",_) $ t $ u) = t aconv u
paulson@18389
   136
  | taut_poslit (Const("True",_)) = true
paulson@18389
   137
  | taut_poslit _ = false;
paulson@18389
   138
paulson@18389
   139
fun is_taut th =
paulson@18389
   140
  let val (poslits,neglits) = signed_lits th
paulson@18389
   141
  in  exists taut_poslit poslits
paulson@18389
   142
      orelse
wenzelm@20073
   143
      exists (member (op aconv) neglits) (HOLogic.false_const :: poslits)
paulson@19894
   144
  end
paulson@19894
   145
  handle TERM _ => false;	(*probably dest_Trueprop on a weird theorem*)		      
paulson@18389
   146
paulson@18389
   147
paulson@18389
   148
(*** To remove trivial negated equality literals from clauses ***)
paulson@18389
   149
paulson@18389
   150
(*They are typically functional reflexivity axioms and are the converses of
paulson@18389
   151
  injectivity equivalences*)
paulson@18389
   152
  
paulson@18389
   153
val not_refl_disj_D = thm"meson_not_refl_disj_D";
paulson@18389
   154
paulson@20119
   155
(*Is either term a Var that does not properly occur in the other term?*)
paulson@20119
   156
fun eliminable (t as Var _, u) = t aconv u orelse not (Logic.occs(t,u))
paulson@20119
   157
  | eliminable (u, t as Var _) = t aconv u orelse not (Logic.occs(t,u))
paulson@20119
   158
  | eliminable _ = false;
paulson@20119
   159
paulson@18389
   160
fun refl_clause_aux 0 th = th
paulson@18389
   161
  | refl_clause_aux n th =
paulson@18389
   162
       case HOLogic.dest_Trueprop (concl_of th) of
paulson@18389
   163
	  (Const ("op |", _) $ (Const ("op |", _) $ _ $ _) $ _) => 
paulson@18389
   164
            refl_clause_aux n (th RS disj_assoc)    (*isolate an atom as first disjunct*)
paulson@18389
   165
	| (Const ("op |", _) $ (Const("Not",_) $ (Const("op =",_) $ t $ u)) $ _) => 
paulson@20119
   166
	    if eliminable(t,u) 
paulson@20119
   167
	    then refl_clause_aux (n-1) (th RS not_refl_disj_D)  (*Var inequation: delete*)
paulson@18389
   168
	    else refl_clause_aux (n-1) (th RS disj_comm)  (*not between Vars: ignore*)
paulson@18389
   169
	| (Const ("op |", _) $ _ $ _) => refl_clause_aux n (th RS disj_comm)
paulson@18752
   170
	| _ => (*not a disjunction*) th;
paulson@18389
   171
paulson@18389
   172
fun notequal_lits_count (Const ("op |", _) $ P $ Q) = 
paulson@18389
   173
      notequal_lits_count P + notequal_lits_count Q
paulson@18389
   174
  | notequal_lits_count (Const("Not",_) $ (Const("op =",_) $ _ $ _)) = 1
paulson@18389
   175
  | notequal_lits_count _ = 0;
paulson@18389
   176
paulson@18389
   177
(*Simplify a clause by applying reflexivity to its negated equality literals*)
paulson@18389
   178
fun refl_clause th = 
paulson@18389
   179
  let val neqs = notequal_lits_count (HOLogic.dest_Trueprop (concl_of th))
paulson@19894
   180
  in  zero_var_indexes (refl_clause_aux neqs th)  end
paulson@19894
   181
  handle TERM _ => th;	(*probably dest_Trueprop on a weird theorem*)		      
paulson@18389
   182
paulson@18389
   183
paulson@18389
   184
(*** The basic CNF transformation ***)
paulson@18389
   185
paulson@19894
   186
(*Estimate the number of clauses in order to detect infeasible theorems*)
paulson@19894
   187
fun nclauses (Const("Trueprop",_) $ t) = nclauses t
paulson@19894
   188
  | nclauses (Const("op &",_) $ t $ u) = nclauses t + nclauses u
paulson@19894
   189
  | nclauses (Const("Ex", _) $ Abs (_,_,t)) = nclauses t
paulson@19894
   190
  | nclauses (Const("All",_) $ Abs (_,_,t)) = nclauses t
paulson@19894
   191
  | nclauses (Const("op |",_) $ t $ u) = nclauses t * nclauses u
paulson@19894
   192
  | nclauses _ = 1; (* literal *)
paulson@19894
   193
paulson@15579
   194
(*Replaces universally quantified variables by FREE variables -- because
paulson@15579
   195
  assumptions may not contain scheme variables.  Later, call "generalize". *)
paulson@15579
   196
fun freeze_spec th =
paulson@20361
   197
  let val newname = gensym "mes_"
paulson@19154
   198
      val spec' = read_instantiate [("x", newname)] spec
paulson@19154
   199
  in  th RS spec'  end;
paulson@9840
   200
paulson@15998
   201
(*Used with METAHYPS below. There is one assumption, which gets bound to prem
paulson@15998
   202
  and then normalized via function nf. The normal form is given to resolve_tac,
paulson@15998
   203
  presumably to instantiate a Boolean variable.*)
paulson@15579
   204
fun resop nf [prem] = resolve_tac (nf prem) 1;
paulson@9840
   205
paulson@18389
   206
val has_meta_conn = 
paulson@18389
   207
    exists_Const (fn (c,_) => c mem_string ["==", "==>", "all", "prop"]);
paulson@20417
   208
paulson@20417
   209
fun apply_skolem_ths (th, rls) = 
paulson@20417
   210
  let fun tryall [] = raise THM("apply_skolem_ths", 0, th::rls)
paulson@20417
   211
        | tryall (rl::rls) = (first_order_resolve th rl handle THM _ => tryall rls)
paulson@20417
   212
  in  tryall rls  end;
paulson@18389
   213
  
paulson@15998
   214
(*Conjunctive normal form, adding clauses from th in front of ths (for foldr).
paulson@15998
   215
  Strips universal quantifiers and breaks up conjunctions.
paulson@15998
   216
  Eliminates existential quantifiers using skoths: Skolemization theorems.*)
paulson@15998
   217
fun cnf skoths (th,ths) =
paulson@18389
   218
  let fun cnf_aux (th,ths) =
paulson@19894
   219
  	if has_meta_conn (prop_of th) then ths (*meta-level: ignore*)
paulson@20134
   220
        else if not (has_conns ["All","Ex","op &"] (prop_of th))  
paulson@15998
   221
	then th::ths (*no work to do, terminate*)
paulson@16588
   222
	else case head_of (HOLogic.dest_Trueprop (concl_of th)) of
paulson@16588
   223
	    Const ("op &", _) => (*conjunction*)
paulson@20417
   224
		cnf_aux (th RS conjunct1, cnf_aux (th RS conjunct2, ths))
paulson@16588
   225
	  | Const ("All", _) => (*universal quantifier*)
paulson@18389
   226
	        cnf_aux (freeze_spec th,  ths)
paulson@16588
   227
	  | Const ("Ex", _) => 
paulson@16588
   228
	      (*existential quantifier: Insert Skolem functions*)
paulson@20417
   229
	      cnf_aux (apply_skolem_ths (th,skoths), ths)
paulson@16588
   230
	  | Const ("op |", _) => (*disjunction*)
paulson@16588
   231
	      let val tac =
paulson@18389
   232
		  (METAHYPS (resop cnf_nil) 1) THEN
paulson@19154
   233
		   (fn st' => st' |> METAHYPS (resop cnf_nil) 1)
paulson@16588
   234
	      in  Seq.list_of (tac (th RS disj_forward)) @ ths  end 
paulson@16588
   235
	  | _ => (*no work to do*) th::ths 
paulson@19154
   236
      and cnf_nil th = cnf_aux (th,[])
paulson@15998
   237
  in 
paulson@19894
   238
    if nclauses (concl_of th) > 20 
paulson@19894
   239
    then (Output.debug ("cnf is ignoring: " ^ string_of_thm th); ths)
paulson@19894
   240
    else cnf_aux (th,ths)
paulson@15998
   241
  end;
paulson@9840
   242
paulson@16012
   243
(*Convert all suitable free variables to schematic variables, 
paulson@16012
   244
  but don't discharge assumptions.*)
paulson@16173
   245
fun generalize th = Thm.varifyT (forall_elim_vars 0 (forall_intr_frees th));
paulson@16012
   246
paulson@20417
   247
fun make_cnf skoths th = cnf skoths (th, []);
paulson@20417
   248
paulson@20417
   249
(*Generalization, removal of redundant equalities, removal of tautologies.*)
paulson@20417
   250
fun finish_cnf ths = filter (not o is_taut) (map (refl_clause o generalize) ths);
paulson@15998
   251
paulson@9840
   252
paulson@15579
   253
(**** Removal of duplicate literals ****)
paulson@9840
   254
paulson@15579
   255
(*Forward proof, passing extra assumptions as theorems to the tactic*)
paulson@15579
   256
fun forward_res2 nf hyps st =
paulson@15579
   257
  case Seq.pull
paulson@15579
   258
	(REPEAT
paulson@15579
   259
	 (METAHYPS (fn major::minors => rtac (nf (minors@hyps) major) 1) 1)
paulson@15579
   260
	 st)
paulson@15579
   261
  of SOME(th,_) => th
paulson@15579
   262
   | NONE => raise THM("forward_res2", 0, [st]);
paulson@9840
   263
paulson@15579
   264
(*Remove duplicates in P|Q by assuming ~P in Q
paulson@15579
   265
  rls (initially []) accumulates assumptions of the form P==>False*)
paulson@15579
   266
fun nodups_aux rls th = nodups_aux rls (th RS disj_assoc)
paulson@15579
   267
    handle THM _ => tryres(th,rls)
paulson@15579
   268
    handle THM _ => tryres(forward_res2 nodups_aux rls (th RS disj_forward2),
paulson@15579
   269
			   [disj_FalseD1, disj_FalseD2, asm_rl])
paulson@15579
   270
    handle THM _ => th;
paulson@9840
   271
paulson@15579
   272
(*Remove duplicate literals, if there are any*)
paulson@15579
   273
fun nodups th =
paulson@15579
   274
    if null(findrep(literals(prop_of th))) then th
paulson@15579
   275
    else nodups_aux [] th;
paulson@9840
   276
paulson@9840
   277
paulson@15579
   278
(**** Generation of contrapositives ****)
paulson@9840
   279
paulson@15579
   280
(*Associate disjuctions to right -- make leftmost disjunct a LITERAL*)
paulson@15579
   281
fun assoc_right th = assoc_right (th RS disj_assoc)
paulson@15579
   282
	handle THM _ => th;
paulson@9840
   283
paulson@15579
   284
(*Must check for negative literal first!*)
paulson@15579
   285
val clause_rules = [disj_assoc, make_neg_rule, make_pos_rule];
paulson@9840
   286
paulson@15579
   287
(*For ordinary resolution. *)
paulson@15579
   288
val resolution_clause_rules = [disj_assoc, make_neg_rule', make_pos_rule'];
paulson@9840
   289
paulson@15579
   290
(*Create a goal or support clause, conclusing False*)
paulson@15579
   291
fun make_goal th =   (*Must check for negative literal first!*)
paulson@15579
   292
    make_goal (tryres(th, clause_rules))
paulson@15579
   293
  handle THM _ => tryres(th, [make_neg_goal, make_pos_goal]);
paulson@9840
   294
paulson@15579
   295
(*Sort clauses by number of literals*)
paulson@15579
   296
fun fewerlits(th1,th2) = nliterals(prop_of th1) < nliterals(prop_of th2);
paulson@9840
   297
paulson@18389
   298
fun sort_clauses ths = sort (make_ord fewerlits) ths;
paulson@9840
   299
paulson@15581
   300
(*True if the given type contains bool anywhere*)
paulson@15581
   301
fun has_bool (Type("bool",_)) = true
paulson@15581
   302
  | has_bool (Type(_, Ts)) = exists has_bool Ts
paulson@15581
   303
  | has_bool _ = false;
paulson@15581
   304
  
paulson@20524
   305
(*Is the string the name of a connective? Really only | and Not can remain, 
paulson@20524
   306
  since this code expects to be called on a clause form.*)  
wenzelm@19875
   307
val is_conn = member (op =)
paulson@20524
   308
    ["Trueprop", "op &", "op |", "op -->", "Not", 
paulson@15613
   309
     "All", "Ex", "Ball", "Bex"];
paulson@15613
   310
paulson@20524
   311
(*True if the term contains a function--not a logical connective--where the type 
paulson@20524
   312
  of any argument contains bool.*)
paulson@15613
   313
val has_bool_arg_const = 
paulson@15613
   314
    exists_Const
paulson@15613
   315
      (fn (c,T) => not(is_conn c) andalso exists (has_bool) (binder_types T));
paulson@15908
   316
      
paulson@16588
   317
(*Raises an exception if any Vars in the theorem mention type bool; they
paulson@16588
   318
  could cause make_horn to loop! Also rejects functions whose arguments are 
paulson@16588
   319
  Booleans or other functions.*)
paulson@19204
   320
fun is_fol_term t =
paulson@19204
   321
    not (exists (has_bool o fastype_of) (term_vars t)  orelse
paulson@19204
   322
	 not (Term.is_first_order ["all","All","Ex"] t) orelse
paulson@19204
   323
	 has_bool_arg_const t  orelse  
paulson@19204
   324
	 has_meta_conn t);
paulson@19204
   325
paulson@15579
   326
(*Create a meta-level Horn clause*)
paulson@15579
   327
fun make_horn crules th = make_horn crules (tryres(th,crules))
paulson@15579
   328
			  handle THM _ => th;
paulson@9840
   329
paulson@16563
   330
(*Generate Horn clauses for all contrapositives of a clause. The input, th,
paulson@16563
   331
  is a HOL disjunction.*)
paulson@15579
   332
fun add_contras crules (th,hcs) =
paulson@15579
   333
  let fun rots (0,th) = hcs
paulson@15579
   334
	| rots (k,th) = zero_var_indexes (make_horn crules th) ::
paulson@15579
   335
			rots(k-1, assoc_right (th RS disj_comm))
paulson@15862
   336
  in case nliterals(prop_of th) of
paulson@15579
   337
	1 => th::hcs
paulson@15579
   338
      | n => rots(n, assoc_right th)
paulson@15579
   339
  end;
paulson@9840
   340
paulson@15579
   341
(*Use "theorem naming" to label the clauses*)
paulson@15579
   342
fun name_thms label =
paulson@15579
   343
    let fun name1 (th, (k,ths)) =
paulson@15579
   344
	  (k-1, Thm.name_thm (label ^ string_of_int k, th) :: ths)
paulson@9840
   345
paulson@15579
   346
    in  fn ths => #2 (foldr name1 (length ths, []) ths)  end;
paulson@9840
   347
paulson@16563
   348
(*Is the given disjunction an all-negative support clause?*)
paulson@15579
   349
fun is_negative th = forall (not o #1) (literals (prop_of th));
paulson@9840
   350
paulson@15579
   351
val neg_clauses = List.filter is_negative;
paulson@9840
   352
paulson@9840
   353
paulson@15579
   354
(***** MESON PROOF PROCEDURE *****)
paulson@9840
   355
paulson@15579
   356
fun rhyps (Const("==>",_) $ (Const("Trueprop",_) $ A) $ phi,
paulson@15579
   357
	   As) = rhyps(phi, A::As)
paulson@15579
   358
  | rhyps (_, As) = As;
paulson@9840
   359
paulson@15579
   360
(** Detecting repeated assumptions in a subgoal **)
paulson@9840
   361
paulson@15579
   362
(*The stringtree detects repeated assumptions.*)
wenzelm@16801
   363
fun ins_term (net,t) = Net.insert_term (op aconv) (t,t) net;
paulson@9840
   364
paulson@15579
   365
(*detects repetitions in a list of terms*)
paulson@15579
   366
fun has_reps [] = false
paulson@15579
   367
  | has_reps [_] = false
paulson@15579
   368
  | has_reps [t,u] = (t aconv u)
paulson@15579
   369
  | has_reps ts = (Library.foldl ins_term (Net.empty, ts);  false)
wenzelm@19875
   370
		  handle Net.INSERT => true;
paulson@9840
   371
paulson@15579
   372
(*Like TRYALL eq_assume_tac, but avoids expensive THEN calls*)
paulson@18508
   373
fun TRYING_eq_assume_tac 0 st = Seq.single st
paulson@18508
   374
  | TRYING_eq_assume_tac i st =
paulson@18508
   375
       TRYING_eq_assume_tac (i-1) (eq_assumption i st)
paulson@18508
   376
       handle THM _ => TRYING_eq_assume_tac (i-1) st;
paulson@18508
   377
paulson@18508
   378
fun TRYALL_eq_assume_tac st = TRYING_eq_assume_tac (nprems_of st) st;
paulson@9840
   379
paulson@15579
   380
(*Loop checking: FAIL if trying to prove the same thing twice
paulson@15579
   381
  -- if *ANY* subgoal has repeated literals*)
paulson@15579
   382
fun check_tac st =
paulson@15579
   383
  if exists (fn prem => has_reps (rhyps(prem,[]))) (prems_of st)
paulson@15579
   384
  then  Seq.empty  else  Seq.single st;
paulson@9840
   385
paulson@9840
   386
paulson@15579
   387
(* net_resolve_tac actually made it slower... *)
paulson@15579
   388
fun prolog_step_tac horns i =
paulson@15579
   389
    (assume_tac i APPEND resolve_tac horns i) THEN check_tac THEN
paulson@18508
   390
    TRYALL_eq_assume_tac;
paulson@15579
   391
paulson@9840
   392
(*Sums the sizes of the subgoals, ignoring hypotheses (ancestors)*)
paulson@15579
   393
fun addconcl(prem,sz) = size_of_term(Logic.strip_assums_concl prem) + sz
paulson@15579
   394
paulson@15579
   395
fun size_of_subgoals st = foldr addconcl 0 (prems_of st);
paulson@15579
   396
paulson@9840
   397
paulson@9840
   398
(*Negation Normal Form*)
paulson@9840
   399
val nnf_rls = [imp_to_disjD, iff_to_disjD, not_conjD, not_disjD,
wenzelm@9869
   400
               not_impD, not_iffD, not_allD, not_exD, not_notD];
paulson@15581
   401
paulson@15581
   402
fun make_nnf1 th = make_nnf1 (tryres(th, nnf_rls))
wenzelm@9869
   403
    handle THM _ =>
paulson@15581
   404
        forward_res make_nnf1
wenzelm@9869
   405
           (tryres(th, [conj_forward,disj_forward,all_forward,ex_forward]))
paulson@9840
   406
    handle THM _ => th;
paulson@9840
   407
paulson@20018
   408
(*The simplification removes defined quantifiers and occurrences of True and False. 
paulson@20018
   409
  nnf_ss also includes the one-point simprocs,
paulson@18405
   410
  which are needed to avoid the various one-point theorems from generating junk clauses.*)
paulson@19894
   411
val nnf_simps =
paulson@20018
   412
     [simp_implies_def, Ex1_def, Ball_def, Bex_def, if_True, 
paulson@19894
   413
      if_False, if_cancel, if_eq_cancel, cases_simp];
paulson@19894
   414
val nnf_extra_simps =
paulson@19894
   415
      thms"split_ifs" @ ex_simps @ all_simps @ simp_thms;
paulson@18405
   416
paulson@18405
   417
val nnf_ss =
paulson@19894
   418
    HOL_basic_ss addsimps nnf_extra_simps 
paulson@19894
   419
                 addsimprocs [defALL_regroup,defEX_regroup,neq_simproc,let_simproc];
paulson@15872
   420
paulson@19894
   421
fun make_nnf th = th |> rewrite_rule (map safe_mk_meta_eq nnf_simps)
paulson@19894
   422
                     |> simplify nnf_ss  (*But this doesn't simplify premises...*)
mengj@18194
   423
                     |> make_nnf1
paulson@15581
   424
paulson@15965
   425
(*Pull existential quantifiers to front. This accomplishes Skolemization for
paulson@15965
   426
  clauses that arise from a subgoal.*)
wenzelm@9869
   427
fun skolemize th =
paulson@20134
   428
  if not (has_conns ["Ex"] (prop_of th)) then th
quigley@15773
   429
  else (skolemize (tryres(th, [choice, conj_exD1, conj_exD2,
quigley@15679
   430
                              disj_exD, disj_exD1, disj_exD2])))
wenzelm@9869
   431
    handle THM _ =>
wenzelm@9869
   432
        skolemize (forward_res skolemize
wenzelm@9869
   433
                   (tryres (th, [conj_forward, disj_forward, all_forward])))
paulson@9840
   434
    handle THM _ => forward_res skolemize (th RS ex_forward);
paulson@9840
   435
paulson@9840
   436
paulson@9840
   437
(*Make clauses from a list of theorems, previously Skolemized and put into nnf.
paulson@9840
   438
  The resulting clauses are HOL disjunctions.*)
wenzelm@9869
   439
fun make_clauses ths =
paulson@15998
   440
    (sort_clauses (map (generalize o nodups) (foldr (cnf[]) [] ths)));
quigley@15773
   441
paulson@16563
   442
(*Convert a list of clauses (disjunctions) to Horn clauses (contrapositives)*)
wenzelm@9869
   443
fun make_horns ths =
paulson@9840
   444
    name_thms "Horn#"
wenzelm@19046
   445
      (distinct Drule.eq_thm_prop (foldr (add_contras clause_rules) [] ths));
paulson@9840
   446
paulson@9840
   447
(*Could simply use nprems_of, which would count remaining subgoals -- no
paulson@9840
   448
  discrimination as to their size!  With BEST_FIRST, fails for problem 41.*)
paulson@9840
   449
wenzelm@9869
   450
fun best_prolog_tac sizef horns =
paulson@9840
   451
    BEST_FIRST (has_fewer_prems 1, sizef) (prolog_step_tac horns 1);
paulson@9840
   452
wenzelm@9869
   453
fun depth_prolog_tac horns =
paulson@9840
   454
    DEPTH_FIRST (has_fewer_prems 1) (prolog_step_tac horns 1);
paulson@9840
   455
paulson@9840
   456
(*Return all negative clauses, as possible goal clauses*)
paulson@9840
   457
fun gocls cls = name_thms "Goal#" (map make_goal (neg_clauses cls));
paulson@9840
   458
paulson@15008
   459
fun skolemize_prems_tac prems =
paulson@9840
   460
    cut_facts_tac (map (skolemize o make_nnf) prems)  THEN'
paulson@9840
   461
    REPEAT o (etac exE);
paulson@9840
   462
paulson@18141
   463
(*Expand all definitions (presumably of Skolem functions) in a proof state.*)
paulson@18141
   464
fun expand_defs_tac st =
paulson@18141
   465
  let val defs = filter (can dest_equals) (#hyps (crep_thm st))
wenzelm@20288
   466
  in  PRIMITIVE (LocalDefs.def_export false defs) st  end;
paulson@18141
   467
paulson@16588
   468
(*Basis of all meson-tactics.  Supplies cltac with clauses: HOL disjunctions*)
paulson@16588
   469
fun MESON cltac i st = 
paulson@16588
   470
  SELECT_GOAL
paulson@18141
   471
    (EVERY [rtac ccontr 1,
paulson@16588
   472
	    METAHYPS (fn negs =>
paulson@16588
   473
		      EVERY1 [skolemize_prems_tac negs,
paulson@18141
   474
			      METAHYPS (cltac o make_clauses)]) 1,
paulson@18141
   475
            expand_defs_tac]) i st
paulson@20417
   476
  handle THM _ => no_tac st;	(*probably from make_meta_clause, not first-order*)		      
paulson@9840
   477
paulson@9840
   478
(** Best-first search versions **)
paulson@9840
   479
paulson@16563
   480
(*ths is a list of additional clauses (HOL disjunctions) to use.*)
wenzelm@9869
   481
fun best_meson_tac sizef =
wenzelm@9869
   482
  MESON (fn cls =>
paulson@9840
   483
         THEN_BEST_FIRST (resolve_tac (gocls cls) 1)
paulson@9840
   484
                         (has_fewer_prems 1, sizef)
paulson@9840
   485
                         (prolog_step_tac (make_horns cls) 1));
paulson@9840
   486
paulson@9840
   487
(*First, breaks the goal into independent units*)
paulson@9840
   488
val safe_best_meson_tac =
wenzelm@9869
   489
     SELECT_GOAL (TRY Safe_tac THEN
paulson@9840
   490
                  TRYALL (best_meson_tac size_of_subgoals));
paulson@9840
   491
paulson@9840
   492
(** Depth-first search version **)
paulson@9840
   493
paulson@9840
   494
val depth_meson_tac =
wenzelm@9869
   495
     MESON (fn cls => EVERY [resolve_tac (gocls cls) 1,
paulson@9840
   496
                             depth_prolog_tac (make_horns cls)]);
paulson@9840
   497
paulson@9840
   498
paulson@9840
   499
(** Iterative deepening version **)
paulson@9840
   500
paulson@9840
   501
(*This version does only one inference per call;
paulson@9840
   502
  having only one eq_assume_tac speeds it up!*)
wenzelm@9869
   503
fun prolog_step_tac' horns =
paulson@9840
   504
    let val (horn0s, hornps) = (*0 subgoals vs 1 or more*)
paulson@9840
   505
            take_prefix Thm.no_prems horns
paulson@9840
   506
        val nrtac = net_resolve_tac horns
paulson@9840
   507
    in  fn i => eq_assume_tac i ORELSE
paulson@9840
   508
                match_tac horn0s i ORELSE  (*no backtracking if unit MATCHES*)
paulson@9840
   509
                ((assume_tac i APPEND nrtac i) THEN check_tac)
paulson@9840
   510
    end;
paulson@9840
   511
wenzelm@9869
   512
fun iter_deepen_prolog_tac horns =
paulson@9840
   513
    ITER_DEEPEN (has_fewer_prems 1) (prolog_step_tac' horns);
paulson@9840
   514
paulson@16563
   515
fun iter_deepen_meson_tac ths =
wenzelm@9869
   516
  MESON (fn cls =>
paulson@16563
   517
           case (gocls (cls@ths)) of
paulson@16563
   518
           	[] => no_tac  (*no goal clauses*)
paulson@16563
   519
              | goes => 
paulson@16563
   520
		 (THEN_ITER_DEEPEN (resolve_tac goes 1)
paulson@16563
   521
				   (has_fewer_prems 1)
paulson@16563
   522
				   (prolog_step_tac' (make_horns (cls@ths)))));
paulson@9840
   523
paulson@16563
   524
fun meson_claset_tac ths cs =
paulson@16563
   525
  SELECT_GOAL (TRY (safe_tac cs) THEN TRYALL (iter_deepen_meson_tac ths));
wenzelm@9869
   526
paulson@16563
   527
val meson_tac = CLASET' (meson_claset_tac []);
wenzelm@9869
   528
wenzelm@9869
   529
paulson@14813
   530
(**** Code to support ordinary resolution, rather than Model Elimination ****)
paulson@14744
   531
paulson@15008
   532
(*Convert a list of clauses (disjunctions) to meta-level clauses (==>), 
paulson@15008
   533
  with no contrapositives, for ordinary resolution.*)
paulson@14744
   534
paulson@14744
   535
(*Rules to convert the head literal into a negated assumption. If the head
paulson@14744
   536
  literal is already negated, then using notEfalse instead of notEfalse'
paulson@14744
   537
  prevents a double negation.*)
paulson@14744
   538
val notEfalse = read_instantiate [("R","False")] notE;
paulson@14744
   539
val notEfalse' = rotate_prems 1 notEfalse;
paulson@14744
   540
paulson@15448
   541
fun negated_asm_of_head th = 
paulson@14744
   542
    th RS notEfalse handle THM _ => th RS notEfalse';
paulson@14744
   543
paulson@14744
   544
(*Converting one clause*)
paulson@15581
   545
fun make_meta_clause th = 
paulson@20417
   546
  if is_fol_term (prop_of th) 
paulson@20417
   547
  then negated_asm_of_head (make_horn resolution_clause_rules th)
paulson@20417
   548
  else raise THM("make_meta_clause", 0, [th]);
paulson@14744
   549
paulson@14744
   550
fun make_meta_clauses ths =
paulson@14744
   551
    name_thms "MClause#"
wenzelm@19046
   552
      (distinct Drule.eq_thm_prop (map make_meta_clause ths));
paulson@14744
   553
paulson@14744
   554
(*Permute a rule's premises to move the i-th premise to the last position.*)
paulson@14744
   555
fun make_last i th =
paulson@14744
   556
  let val n = nprems_of th 
paulson@14744
   557
  in  if 1 <= i andalso i <= n 
paulson@14744
   558
      then Thm.permute_prems (i-1) 1 th
paulson@15118
   559
      else raise THM("select_literal", i, [th])
paulson@14744
   560
  end;
paulson@14744
   561
paulson@14744
   562
(*Maps a rule that ends "... ==> P ==> False" to "... ==> ~P" while suppressing
paulson@14744
   563
  double-negations.*)
paulson@14744
   564
val negate_head = rewrite_rule [atomize_not, not_not RS eq_reflection];
paulson@14744
   565
paulson@14744
   566
(*Maps the clause  [P1,...Pn]==>False to [P1,...,P(i-1),P(i+1),...Pn] ==> ~P*)
paulson@14744
   567
fun select_literal i cl = negate_head (make_last i cl);
paulson@14744
   568
paulson@18508
   569
paulson@14813
   570
(*Top-level Skolemization. Allows part of the conversion to clauses to be
paulson@14813
   571
  expressed as a tactic (or Isar method).  Each assumption of the selected 
paulson@14813
   572
  goal is converted to NNF and then its existential quantifiers are pulled
paulson@14813
   573
  to the front. Finally, all existential quantifiers are eliminated, 
paulson@14813
   574
  leaving !!-quantified variables. Perhaps Safe_tac should follow, but it
paulson@14813
   575
  might generate many subgoals.*)
mengj@18194
   576
paulson@19204
   577
fun skolemize_tac i st = 
paulson@19204
   578
  let val ts = Logic.strip_assums_hyp (List.nth (prems_of st, i-1))
paulson@19204
   579
  in 
paulson@19204
   580
     EVERY' [METAHYPS
quigley@15773
   581
	    (fn hyps => (cut_facts_tac (map (skolemize o make_nnf) hyps) 1
paulson@14813
   582
                         THEN REPEAT (etac exE 1))),
paulson@19204
   583
            REPEAT_DETERM_N (length ts) o (etac thin_rl)] i st
paulson@19204
   584
  end
paulson@19204
   585
  handle Subscript => Seq.empty;
mengj@18194
   586
paulson@15118
   587
(*Top-level conversion to meta-level clauses. Each clause has  
paulson@15118
   588
  leading !!-bound universal variables, to express generality. To get 
paulson@15118
   589
  disjunctions instead of meta-clauses, remove "make_meta_clauses" below.*)
paulson@15008
   590
val make_clauses_tac = 
paulson@15008
   591
  SUBGOAL
paulson@15008
   592
    (fn (prop,_) =>
paulson@15008
   593
     let val ts = Logic.strip_assums_hyp prop
paulson@15008
   594
     in EVERY1 
paulson@15008
   595
	 [METAHYPS
paulson@15008
   596
	    (fn hyps => 
paulson@15151
   597
              (Method.insert_tac
paulson@15118
   598
                (map forall_intr_vars 
paulson@15118
   599
                  (make_meta_clauses (make_clauses hyps))) 1)),
paulson@15008
   600
	  REPEAT_DETERM_N (length ts) o (etac thin_rl)]
paulson@15008
   601
     end);
paulson@16563
   602
     
paulson@16563
   603
     
paulson@16563
   604
(*** setup the special skoklemization methods ***)
paulson@15008
   605
paulson@16563
   606
(*No CHANGED_PROP here, since these always appear in the preamble*)
paulson@14744
   607
paulson@16563
   608
val skolemize_meth = Method.SIMPLE_METHOD' HEADGOAL skolemize_tac;
wenzelm@9869
   609
paulson@16563
   610
val make_clauses_meth = Method.SIMPLE_METHOD' HEADGOAL make_clauses_tac;
wenzelm@9869
   611
paulson@16563
   612
val skolemize_setup =
wenzelm@18708
   613
  Method.add_methods
wenzelm@18708
   614
    [("skolemize", Method.no_args skolemize_meth, 
wenzelm@18708
   615
      "Skolemization into existential quantifiers"),
wenzelm@18708
   616
     ("make_clauses", Method.no_args make_clauses_meth, 
wenzelm@18708
   617
      "Conversion to !!-quantified meta-level clauses")];
paulson@9840
   618
paulson@9840
   619
end;
wenzelm@9869
   620
paulson@15579
   621
structure BasicMeson: BASIC_MESON = Meson;
paulson@15579
   622
open BasicMeson;