src/Provers/blast.ML
author paulson
Tue, 15 Apr 1997 10:22:50 +0200
changeset 2952 ea834e8fac1b
parent 2924 af506c35b4ed
child 2999 fad7cc426242
permissions -rw-r--r--
Changed penalty from log2 to log3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
     1
(*  Title: 	Provers/blast
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
     2
    ID:         $Id$
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
     3
    Author: 	Lawrence C Paulson, Cambridge University Computer Laboratory
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
     4
    Copyright   1992  University of Cambridge
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
     5
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
     6
Generic tableau prover with proof reconstruction
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
     7
2952
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
     8
  Why does Abs take a string argument?
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
     9
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    10
  SKOLEMIZES ReplaceI WRONGLY: allow new vars in prems, or forbid such rules??
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
    11
  Needs explicit instantiation of assumptions?
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
    12
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
    13
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    14
Blast_tac is often more powerful than fast_tac, but has some limitations.
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    15
Blast_tac...
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
    16
  * ignores addss, addbefore, addafter; this restriction is intrinsic
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
    17
  * ignores elimination rules that don't have the correct format
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
    18
	(conclusion must be a formula variable)
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
    19
  * ignores types, which can make HOL proofs fail
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    20
  * rules must not require higher-order unification, e.g. apply_type in ZF
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    21
    + message "Function Var's argument not a bound variable" relates to this
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    22
  * its proof strategy is more general but can actually be slower
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
    23
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
    24
Known problems:
2952
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
    25
  With overloading:
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
    26
    1.  Overloading can't follow all chains of type dependencies.  Cannot
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
    27
        prove "In1 x ~: Part A In0" because PartE introducees the polymorphic
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
    28
	equality In1 x = In0 y, when the corresponding rule uses the (distinct)
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
    29
	set equality.  Workaround: supply a type instance of the rule that
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
    30
	creates new equalities (e.g. PartE in HOL/ex/Simult)
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
    31
	==> affects freeness reasoning about Sexp constants (since they have
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
    32
		type ... set)
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
    33
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    34
  With substition for equalities (hyp_subst_tac):
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
    35
    1.  Sometimes hyp_subst_tac will fail due to occurrence of the parameter
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
    36
        as the argument of a function variable
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    37
    2.  When substitution affects a haz formula or literal, it is moved
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    38
        back to the list of safe formulae.
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    39
        But there's no way of putting it in the right place.  A "moved" or
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    40
        "no DETERM" flag would prevent proofs failing here.
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    41
*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    42
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    43
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    44
(*Should be a type abbreviation?*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    45
type netpair = (int*(bool*thm)) Net.net * (int*(bool*thm)) Net.net;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    46
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    47
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    48
(*Assumptions about constants:
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    49
  --The negation symbol is "Not"
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    50
  --The equality symbol is "op ="
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    51
  --The is-true judgement symbol is "Trueprop"
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    52
  --There are no constants named "*Goal* or "*False*"
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    53
*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    54
signature BLAST_DATA =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    55
  sig
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    56
  type claset
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    57
  val notE		: thm		(* [| ~P;  P |] ==> R *)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    58
  val ccontr		: thm		
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    59
  val contr_tac 	: int -> tactic
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    60
  val dup_intr		: thm -> thm
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    61
  val vars_gen_hyp_subst_tac : bool -> int -> tactic
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    62
  val claset		: claset ref
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    63
  val rep_claset	: 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    64
      claset -> {safeIs: thm list, safeEs: thm list, 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    65
		 hazIs: thm list, hazEs: thm list,
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    66
		 uwrapper: (int -> tactic) -> (int -> tactic),
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    67
		 swrapper: (int -> tactic) -> (int -> tactic),
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    68
		 safe0_netpair: netpair, safep_netpair: netpair,
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    69
		 haz_netpair: netpair, dup_netpair: netpair}
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    70
  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    71
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    72
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    73
signature BLAST =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    74
  sig
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    75
  type claset 
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    76
  datatype term = 
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    77
      Const of string
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    78
    | OConst of string * int
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    79
    | Skolem of string * term option ref list
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    80
    | Free  of string
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    81
    | Var   of term option ref
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    82
    | Bound of int
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    83
    | Abs   of string*term
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    84
    | op $  of term*term;
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    85
  type branch
2883
fd1c0b8e9b61 Now exports declConsts!
paulson
parents: 2854
diff changeset
    86
  val depth_tac 	: claset -> int -> int -> tactic
fd1c0b8e9b61 Now exports declConsts!
paulson
parents: 2854
diff changeset
    87
  val blast_tac 	: claset -> int -> tactic
fd1c0b8e9b61 Now exports declConsts!
paulson
parents: 2854
diff changeset
    88
  val Blast_tac 	: int -> tactic
fd1c0b8e9b61 Now exports declConsts!
paulson
parents: 2854
diff changeset
    89
  val declConsts 	: string list * thm list -> unit
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    90
  (*debugging tools*)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    91
  val trace	        : bool ref
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    92
  val fullTrace	        : branch list list ref
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    93
  val fromTerm	        : Type.type_sig -> Term.term -> term
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    94
  val fromSubgoal       : Type.type_sig -> Term.term -> term
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    95
  val toTerm	        : int -> term -> Term.term
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    96
  val readGoal          : Sign.sg -> string -> term
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    97
  val tryInThy		: theory -> int -> string ->
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    98
		branch list list * (int*int*exn) list * (int -> tactic) list
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    99
  val trygl		: claset -> int -> int ->
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   100
		branch list list * (int*int*exn) list * (int -> tactic) list
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   101
  val Trygl		: int -> int ->
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   102
		branch list list * (int*int*exn) list * (int -> tactic) list
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   103
  val normBr		: branch -> branch
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   104
  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   105
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   106
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   107
functor BlastFun(Data: BLAST_DATA): BLAST = 
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   108
struct
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   109
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   110
type claset = Data.claset;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   111
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   112
val trace = ref false;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   113
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   114
datatype term = 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   115
    Const of string
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   116
  | OConst of string * int
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   117
  | Skolem of string * term option ref list
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   118
  | Free  of string
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   119
  | Var   of term option ref
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   120
  | Bound of int
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   121
  | Abs   of string*term
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   122
  | op $  of term*term;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   123
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   124
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   125
exception DEST_EQ;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   126
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   127
  (*Take apart an equality (plain or overloaded).  NO constant Trueprop*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   128
  fun dest_eq (Const  "op ="     $ t $ u) = (t,u)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   129
    | dest_eq (OConst("op =",_)  $ t $ u) = (t,u)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   130
    | dest_eq _                      = raise DEST_EQ;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   131
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   132
(** Basic syntactic operations **)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   133
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   134
fun is_Var (Var _) = true
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   135
  | is_Var _ = false;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   136
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   137
fun dest_Var (Var x) =  x;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   138
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   139
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   140
fun rand (f$x) = x;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   141
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   142
(* maps   (f, [t1,...,tn])  to  f(t1,...,tn) *)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   143
val list_comb : term * term list -> term = foldl (op $);
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   144
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   145
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   146
(* maps   f(t1,...,tn)  to  (f, [t1,...,tn]) ; naturally tail-recursive*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   147
fun strip_comb u : term * term list = 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   148
    let fun stripc (f$t, ts) = stripc (f, t::ts)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   149
        |   stripc  x =  x 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   150
    in  stripc(u,[])  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   151
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   152
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   153
(* maps   f(t1,...,tn)  to  f , which is never a combination *)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   154
fun head_of (f$t) = head_of f
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   155
  | head_of u = u;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   156
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   157
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   158
(** Particular constants **)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   159
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   160
fun negate P = Const"Not" $ P;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   161
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   162
fun mkGoal P = Const"*Goal*" $ P;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   163
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   164
fun isGoal (Const"*Goal*" $ _) = true
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   165
  | isGoal _                   = false;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   166
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   167
val Trueprop = Term.Const("Trueprop", Type("o",[])-->propT);
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   168
fun mk_tprop P = Term.$ (Trueprop, P);
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   169
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   170
fun isTrueprop (Term.Const("Trueprop",_)) = true
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   171
  | isTrueprop _                          = false;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   172
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   173
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   174
(** Dealing with overloaded constants **)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   175
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   176
(*Result is a symbol table, indexed by names of overloaded constants.
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   177
  Each constant maps to a list of (pattern,Blast.Const) pairs.
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   178
  Any Term.Const that matches a pattern gets replaced by the Blast.Const.
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   179
*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   180
fun addConsts (t as Term.Const(a,_), tab) =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   181
     (case Symtab.lookup (tab,a) of
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   182
	  None    => tab  (*ignore: not a constant that we are looking for*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   183
	| Some patList => 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   184
	      (case gen_assoc (op aconv) (patList, t) of
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   185
		  None => Symtab.update
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   186
		           ((a, (t, OConst (a, length patList)) :: patList), 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   187
			    tab)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   188
		 | _    => tab))
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   189
  | addConsts (Term.Abs(_,_,body), tab) = addConsts (body, tab)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   190
  | addConsts (Term.$ (t,u), tab) = addConsts (t, addConsts (u, tab))
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   191
  | addConsts (_,            tab) = tab (*ignore others*);
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   192
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   193
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   194
fun addRules (rls,tab) = foldr addConsts (map (#prop o rep_thm) rls, tab);
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   195
2883
fd1c0b8e9b61 Now exports declConsts!
paulson
parents: 2854
diff changeset
   196
fun declConst (a,tab) = 
fd1c0b8e9b61 Now exports declConsts!
paulson
parents: 2854
diff changeset
   197
    case Symtab.lookup (tab,a) of
fd1c0b8e9b61 Now exports declConsts!
paulson
parents: 2854
diff changeset
   198
	None   => Symtab.update((a,[]), tab)	(*create a brand new entry*)
fd1c0b8e9b61 Now exports declConsts!
paulson
parents: 2854
diff changeset
   199
      | Some _ => tab				(*preserve old entry*);
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   200
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   201
(*maps the name of each overloaded constant to a list of archetypal constants,
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   202
  which may be polymorphic.*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   203
local
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   204
val overLoadTab = ref (Symtab.null : (Term.term * term) list Symtab.table)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   205
    (*The alists in this table should only be increased*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   206
in
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   207
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   208
fun declConsts (names, rls) =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   209
    overLoadTab := addRules (rls, foldr declConst (names, !overLoadTab));
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   210
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   211
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   212
(*Convert a possibly overloaded Term.Const to a Blast.Const*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   213
fun fromConst tsig (t as Term.Const (a,_)) =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   214
  let fun find []                  = Const a
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   215
	| find ((pat,t')::patList) =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   216
		if Pattern.matches tsig (pat,t) then t' 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   217
		else find patList
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   218
  in  case Symtab.lookup(!overLoadTab, a) of
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   219
	   None         => Const a
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   220
	 | Some patList => find patList
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   221
  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   222
end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   223
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   224
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   225
(*Tests whether 2 terms are alpha-convertible; chases instantiations*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   226
fun (Const a)      aconv (Const b)      = a=b
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   227
  | (OConst ai)    aconv (OConst bj)    = ai=bj
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   228
  | (Skolem (a,_)) aconv (Skolem (b,_)) = a=b  (*arglists must then be equal*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   229
  | (Free a)       aconv (Free b)       = a=b
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   230
  | (Var(ref(Some t))) aconv u          = t aconv u
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   231
  | t aconv (Var(ref(Some u)))          = t aconv u
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   232
  | (Var v)        aconv (Var w)        = v=w	(*both Vars are un-assigned*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   233
  | (Bound i)      aconv (Bound j)      = i=j
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   234
  | (Abs(_,t))     aconv (Abs(_,u))     = t aconv u
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   235
  | (f$t)          aconv (g$u)          = (f aconv g) andalso (t aconv u)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   236
  | _ aconv _  =  false;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   237
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   238
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   239
fun mem_term (_, [])     = false
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   240
  | mem_term (t, t'::ts) = t aconv t' orelse mem_term(t,ts);
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   241
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   242
fun ins_term(t,ts) = if mem_term(t,ts) then ts else t :: ts;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   243
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   244
fun mem_var (v: term option ref, []) = false
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   245
  | mem_var (v, v'::vs)              = v=v' orelse mem_var(v,vs);
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   246
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   247
fun ins_var(v,vs) = if mem_var(v,vs) then vs else v :: vs;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   248
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   249
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   250
(** Vars **)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   251
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   252
(*Accumulates the Vars in the term, suppressing duplicates*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   253
fun add_term_vars (Skolem(a,args),	vars) = add_vars_vars(args,vars)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   254
  | add_term_vars (Var (v as ref None),	vars) = ins_var (v, vars)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   255
  | add_term_vars (Var (ref (Some u)), vars)  = add_term_vars(u,vars)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   256
  | add_term_vars (Abs (_,body),	vars) = add_term_vars(body,vars)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   257
  | add_term_vars (f$t,	vars) =  add_term_vars (f, add_term_vars(t, vars))
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   258
  | add_term_vars (_,	vars) = vars
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   259
(*Term list version.  [The fold functionals are slow]*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   260
and add_terms_vars ([],    vars) = vars
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   261
  | add_terms_vars (t::ts, vars) = add_terms_vars (ts, add_term_vars(t,vars))
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   262
(*Var list version.*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   263
and add_vars_vars ([],    vars) = vars
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   264
  | add_vars_vars (ref (Some u) :: vs, vars) = 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   265
	add_vars_vars (vs, add_term_vars(u,vars))
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   266
  | add_vars_vars (v::vs, vars) =   (*v must be a ref None*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   267
	add_vars_vars (vs, ins_var (v, vars));
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   268
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   269
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   270
(*Chase assignments in "vars"; return a list of unassigned variables*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   271
fun vars_in_vars vars = add_vars_vars(vars,[]);
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   272
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   273
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   274
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   275
(*increment a term's non-local bound variables
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   276
     inc is  increment for bound variables
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   277
     lev is  level at which a bound variable is considered 'loose'*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   278
fun incr_bv (inc, lev, u as Bound i) = if i>=lev then Bound(i+inc) else u 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   279
  | incr_bv (inc, lev, Abs(a,body)) = Abs(a, incr_bv(inc,lev+1,body))
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   280
  | incr_bv (inc, lev, f$t) = incr_bv(inc,lev,f) $ incr_bv(inc,lev,t)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   281
  | incr_bv (inc, lev, u) = u;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   282
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   283
fun incr_boundvars  0  t = t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   284
  | incr_boundvars inc t = incr_bv(inc,0,t);
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   285
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   286
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   287
(*Accumulate all 'loose' bound vars referring to level 'lev' or beyond.
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   288
   (Bound 0) is loose at level 0 *)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   289
fun add_loose_bnos (Bound i, lev, js)   = if i<lev then js  
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   290
					  else  (i-lev) ins_int js
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   291
  | add_loose_bnos (Abs (_,t), lev, js) = add_loose_bnos (t, lev+1, js)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   292
  | add_loose_bnos (f$t, lev, js)       =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   293
	        add_loose_bnos (f, lev, add_loose_bnos (t, lev, js)) 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   294
  | add_loose_bnos (_, _, js)           = js;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   295
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   296
fun loose_bnos t = add_loose_bnos (t, 0, []);
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   297
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   298
fun subst_bound (arg, t) : term = 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   299
  let fun subst (t as Bound i, lev) =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   300
 	    if i<lev then  t    (*var is locally bound*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   301
	    else  if i=lev then incr_boundvars lev arg
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   302
		           else Bound(i-1)  (*loose: change it*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   303
	| subst (Abs(a,body), lev) = Abs(a, subst(body,lev+1))
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   304
	| subst (f$t, lev) =  subst(f,lev)  $  subst(t,lev)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   305
	| subst (t,lev)    = t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   306
  in  subst (t,0)  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   307
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   308
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   309
(*Normalize...but not the bodies of ABSTRACTIONS*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   310
fun norm t = case t of
2952
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
   311
    Skolem (a,args)      => Skolem(a, vars_in_vars args)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   312
  | (Var (ref None))     => t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   313
  | (Var (ref (Some u))) => norm u
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   314
  | (f $ u) => (case norm f of
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   315
		    Abs(_,body) => norm (subst_bound (u, body))
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   316
		  | nf => nf $ norm u)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   317
  | _ => t;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   318
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   319
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   320
(*Weak (one-level) normalize for use in unification*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   321
fun wkNormAux t = case t of
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   322
    (Var v) => (case !v of
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   323
		    Some u => wkNorm u
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   324
		  | None   => t)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   325
  | (f $ u) => (case wkNormAux f of
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   326
		    Abs(_,body) => wkNorm (subst_bound (u, body))
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   327
		  | nf          => nf $ u)
2952
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
   328
  | Abs (a,body) =>	(*eta-contract if possible*)
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
   329
	(case wkNormAux body of
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
   330
	     nb as (f $ t) => 
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
   331
		 if (0 mem_int loose_bnos f) orelse wkNorm t <> Bound 0
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
   332
		 then Abs(a,nb)
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
   333
		 else wkNorm (incr_boundvars ~1 f)
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
   334
	   | nb          => Abs (a,nb))
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   335
  | _ => t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   336
and wkNorm t = case head_of t of
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   337
    Const _        => t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   338
  | OConst _       => t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   339
  | Skolem(a,args) => t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   340
  | Free _         => t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   341
  | _              => wkNormAux t;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   342
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   343
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   344
(*Does variable v occur in u?  For unification.*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   345
fun varOccur v = 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   346
  let fun occL [] = false	(*same as (exists occ), but faster*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   347
	| occL (u::us) = occ u orelse occL us
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   348
      and occ (Var w) = 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   349
	      v=w orelse
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   350
              (case !w of None   => false
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   351
	                | Some u => occ u)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   352
        | occ (Skolem(_,args)) = occL (map Var args)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   353
        | occ (Abs(_,u)) = occ u
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   354
        | occ (f$u)      = occ u  orelse  occ f
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   355
        | occ (_)        = false;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   356
  in  occ  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   357
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   358
exception UNIFY;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   359
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   360
val trail = ref [] : term option ref list ref;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   361
val ntrail = ref 0;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   362
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   363
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   364
(*Restore the trail to some previous state: for backtracking*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   365
fun clearTo n =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   366
    while !ntrail>n do
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   367
	(hd(!trail) := None;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   368
	 trail := tl (!trail);
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   369
	 ntrail := !ntrail - 1);
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   370
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   371
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   372
(*First-order unification with bound variables.  
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   373
  "vars" is a list of variables local to the rule and NOT to be put
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   374
	on the trail (no point in doing so)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   375
*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   376
fun unify(vars,t,u) =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   377
    let val n = !ntrail 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   378
	fun update (t as Var v, u) =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   379
	    if t aconv u then ()
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   380
	    else if varOccur v u then raise UNIFY 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   381
	    else if mem_var(v, vars) then v := Some u
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   382
		 else (*avoid updating Vars in the branch if possible!*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   383
		      if is_Var u andalso mem_var(dest_Var u, vars)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   384
		      then dest_Var u := Some t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   385
		      else (v := Some u;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   386
			    trail := v :: !trail;  ntrail := !ntrail + 1)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   387
	fun unifyAux (t,u) = 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   388
	    case (wkNorm t,  wkNorm u) of
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   389
		(nt as Var v,  nu) => update(nt,nu)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   390
	      | (nu,  nt as Var v) => update(nt,nu)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   391
	      | (Abs(_,t'),  Abs(_,u')) => unifyAux(t',u')
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   392
		    (*NB: can yield unifiers having dangling Bound vars!*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   393
	      | (f$t',  g$u') => (unifyAux(f,g); unifyAux(t',u'))
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   394
	      | (nt,  nu)    => if nt aconv nu then () else raise UNIFY
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   395
    in  unifyAux(t,u) handle UNIFY => (clearTo n; raise UNIFY)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   396
    end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   397
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   398
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   399
(*Convert from "real" terms to prototerms; eta-contract*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   400
fun fromTerm tsig t =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   401
  let val alist = ref []
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   402
      fun from (t as Term.Const _) = fromConst tsig t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   403
	| from (Term.Free  (a,_)) = Free a
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   404
	| from (Term.Bound i)     = Bound i
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   405
	| from (Term.Var (ixn,T)) = 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   406
	      (case (assoc_string_int(!alist,ixn)) of
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   407
		   None => let val t' = Var(ref None)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   408
		           in  alist := (ixn, (t', T)) :: !alist;  t'
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   409
			   end
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   410
		 | Some (v,_) => v)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   411
	| from (Term.Abs (a,_,u)) = 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   412
	      (case  from u  of
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   413
		u' as (f $ Bound 0) => 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   414
		  if (0 mem_int loose_bnos f) then Abs(a,u')
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   415
		  else incr_boundvars ~1 f 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   416
	      | u' => Abs(a,u'))
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   417
	| from (Term.$ (f,u)) = from f $ from u
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   418
  in  from t  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   419
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   420
(* A1==>...An==>B  goes to  [A1,...,An], where B is not an implication *)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   421
fun strip_imp_prems (Const"==>" $ (Const"Trueprop" $ A) $ B) = 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   422
           A :: strip_imp_prems B
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   423
  | strip_imp_prems (Const"==>" $ A $ B) = A :: strip_imp_prems B
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   424
  | strip_imp_prems _ = [];
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   425
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   426
(* A1==>...An==>B  goes to B, where B is not an implication *)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   427
fun strip_imp_concl (Const"==>" $ A $ B) = strip_imp_concl B
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   428
  | strip_imp_concl (Const"Trueprop" $ A) = A
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   429
  | strip_imp_concl A = A : term;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   430
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   431
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   432
(*** Conversion of Elimination Rules to Tableau Operations ***)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   433
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   434
(*The conclusion becomes the goal/negated assumption *False*: delete it!*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   435
fun squash_nots [] = []
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   436
  | squash_nots (Const "*Goal*" $ (Var (ref (Some (Const"*False*")))) :: Ps) =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   437
	squash_nots Ps
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   438
  | squash_nots (Const "Not" $ (Var (ref (Some (Const"*False*")))) :: Ps) =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   439
	squash_nots Ps
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   440
  | squash_nots (P::Ps) = P :: squash_nots Ps;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   441
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   442
fun skoPrem vars (Const "all" $ Abs (_, P)) =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   443
        skoPrem vars (subst_bound (Skolem (gensym "S_", vars), P))
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   444
  | skoPrem vars P = P;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   445
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   446
fun convertPrem t = 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   447
    squash_nots (mkGoal (strip_imp_concl t) :: strip_imp_prems t);
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   448
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   449
(*Expects elimination rules to have a formula variable as conclusion*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   450
fun convertRule vars t =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   451
  let val (P::Ps) = strip_imp_prems t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   452
      val Var v   = strip_imp_concl t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   453
  in  v := Some (Const"*False*");
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   454
      (P, map (convertPrem o skoPrem vars) Ps) 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   455
  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   456
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   457
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   458
(*Like dup_elim, but puts the duplicated major premise FIRST*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   459
fun rev_dup_elim th = th RSN (2, revcut_rl) |> assumption 2 |> Sequence.hd;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   460
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   461
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   462
(*Count new hyps so that they can be rotated*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   463
fun nNewHyps []                         = 0
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   464
  | nNewHyps (Const "*Goal*" $ _ :: Ps) = nNewHyps Ps
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   465
  | nNewHyps (P::Ps)                    = 1 + nNewHyps Ps;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   466
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   467
fun rot_subgoals_tac [] i st      = Sequence.single st
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   468
  | rot_subgoals_tac (k::ks) i st =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   469
      rot_subgoals_tac ks (i+1) (Sequence.hd (rotate_tac (~k) i st))
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   470
      handle OPTION _ => Sequence.null;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   471
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   472
fun TRACE rl tac st = if !trace then (prth rl; tac st) else tac st;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   473
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   474
(*Tableau rule from elimination rule.  Flag "dup" requests duplication of the
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   475
  affected formula.*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   476
fun fromRule vars rl = 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   477
  let val {tsig,...} = Sign.rep_sg (#sign (rep_thm rl))
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   478
      val trl = rl |> rep_thm |> #prop |> fromTerm tsig |> convertRule vars
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   479
      fun tac dup i = 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   480
	  TRACE rl
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   481
	  (etac (if dup then rev_dup_elim rl else rl) i)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   482
	  THEN rot_subgoals_tac (map nNewHyps (#2 trl)) i
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   483
	  
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   484
  in General.SOME (trl, tac) end
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   485
  handle Bind => (*reject: conclusion is not just a variable*)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   486
   (if !trace then (writeln"Warning: ignoring ill-formed elimination rule";
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   487
		    print_thm rl)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   488
    else ();
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   489
    General.NONE);
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   490
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   491
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   492
(*** Conversion of Introduction Rules (needed for efficiency in 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   493
               proof reconstruction) ***)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   494
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   495
fun convertIntrPrem t = mkGoal (strip_imp_concl t) :: strip_imp_prems t;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   496
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   497
fun convertIntrRule vars t =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   498
  let val Ps = strip_imp_prems t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   499
      val P  = strip_imp_concl t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   500
  in  (mkGoal P, map (convertIntrPrem o skoPrem vars) Ps) 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   501
  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   502
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   503
(*Tableau rule from introduction rule.  Since haz rules are now delayed, 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   504
  "dup" is always FALSE for introduction rules.*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   505
fun fromIntrRule vars rl = 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   506
  let val {tsig,...} = Sign.rep_sg (#sign (rep_thm rl))
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   507
      val trl = rl |> rep_thm |> #prop |> fromTerm tsig |> convertIntrRule vars
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   508
      fun tac dup i = 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   509
	  TRACE rl (DETERM (rtac (if dup then Data.dup_intr rl else rl) i))
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   510
	  THEN rot_subgoals_tac (map nNewHyps (#2 trl)) i
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   511
  in (trl, tac) end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   512
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   513
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   514
val dummyVar = Term.Var (("Doom",666), dummyT);
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   515
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   516
(*Convert from prototerms to ordinary terms with dummy types
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   517
  Ignore abstractions; identify all Vars; STOP at given depth*)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   518
fun toTerm 0 _             = dummyVar
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   519
  | toTerm d (Const a)     = Term.Const (a,dummyT)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   520
  | toTerm d (OConst(a,_)) = Term.Const (a,dummyT)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   521
  | toTerm d (Skolem(a,_)) = Term.Const (a,dummyT)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   522
  | toTerm d (Free a)      = Term.Free  (a,dummyT)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   523
  | toTerm d (Bound i)     = Term.Bound i
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   524
  | toTerm d (Var _)       = dummyVar
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   525
  | toTerm d (Abs(a,_))    = dummyVar
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   526
  | toTerm d (f $ u)       = Term.$ (toTerm d f, toTerm (d-1) u);
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   527
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   528
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   529
fun netMkRules P vars (nps: netpair list) =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   530
  case P of
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   531
      (Const "*Goal*" $ G) =>
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   532
	let val pG = mk_tprop (toTerm 2 G)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   533
	    val intrs = List.concat 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   534
		             (map (fn (inet,_) => Net.unify_term inet pG) 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   535
			      nps)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   536
	in  map (fromIntrRule vars o #2) (orderlist intrs)  end
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   537
    | _ =>
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   538
	let val pP = mk_tprop (toTerm 3 P)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   539
	    val elims = List.concat 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   540
		             (map (fn (_,enet) => Net.unify_term enet pP) 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   541
			      nps)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   542
	in  List.mapPartial (fromRule vars o #2) (orderlist elims)  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   543
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   544
(**
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   545
end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   546
**)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   547
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   548
(*** Code for handling equality: naive substitution, like hyp_subst_tac ***)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   549
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   550
(*Replace the ATOMIC term "old" by "new" in t*)  
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   551
fun subst_atomic (old,new) t =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   552
    let fun subst (Var(ref(Some u))) = subst u
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   553
	  | subst (Abs(a,body))      = Abs(a, subst body)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   554
	  | subst (f$t)              = subst f $ subst t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   555
	  | subst t                  = if t aconv old then new else t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   556
    in  subst t  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   557
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   558
(*Eta-contract a term from outside: just enough to reduce it to an atom*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   559
fun eta_contract_atom (t0 as Abs(a, body)) = 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   560
      (case  eta_contract2 body  of
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   561
        f $ Bound 0 => if (0 mem_int loose_bnos f) then t0
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   562
		       else eta_contract_atom (incr_boundvars ~1 f)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   563
      | _ => t0)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   564
  | eta_contract_atom t = t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   565
and eta_contract2 (f$t) = f $ eta_contract_atom t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   566
  | eta_contract2 t     = eta_contract_atom t;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   567
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   568
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   569
(*When can we safely delete the equality?
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   570
    Not if it equates two constants; consider 0=1.
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   571
    Not if it resembles x=t[x], since substitution does not eliminate x.
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   572
    Not if it resembles ?x=0; another goal could instantiate ?x to Suc(i)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   573
  Prefer to eliminate Bound variables if possible.
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   574
  Result:  true = use as is,  false = reorient first *)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   575
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   576
(*Does t occur in u?  For substitution.  
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   577
  Does NOT check args of Skolem terms: substitution does not affect them.
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   578
  NOT reflexive since hyp_subst_tac fails on x=x.*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   579
fun substOccur t = 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   580
  let fun occEq u = (t aconv u) orelse occ u
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   581
      and occ (Var(ref None))    = false
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   582
	| occ (Var(ref(Some u))) = occEq u
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   583
        | occ (Abs(_,u))         = occEq u
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   584
        | occ (f$u)              = occEq u  orelse  occEq f
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   585
        | occ (_)                = false;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   586
  in  occEq  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   587
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   588
fun check (t,u,v) = if substOccur t u then raise DEST_EQ else v;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   589
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   590
(*IF the goal is an equality with a substitutable variable 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   591
  THEN orient that equality ELSE raise exception DEST_EQ*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   592
fun orientGoal (t,u) =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   593
  case (eta_contract_atom t, eta_contract_atom u) of
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   594
       (Skolem _, _) => check(t,u,(t,u))	(*eliminates t*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   595
     | (_, Skolem _) => check(u,t,(u,t))	(*eliminates u*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   596
     | (Free _, _)   => check(t,u,(t,u))	(*eliminates t*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   597
     | (_, Free _)   => check(u,t,(u,t))	(*eliminates u*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   598
     | _             => raise DEST_EQ;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   599
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   600
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   601
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   602
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   603
(*Substitute through the branch if an equality goal (else raise DEST_EQ).
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   604
  Moves affected literals back into the branch, but it is not clear where
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   605
  they should go: this could make proofs fail.  ??? *)
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   606
fun equalSubst (G, pairs, lits, vars, lim) = 
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   607
  let val subst = subst_atomic (orientGoal(dest_eq G))
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   608
      fun subst2(G,md) = (subst G, md)
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   609
      (*substitute throughout Haz list; move affected ones to Safe part*)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   610
      fun subHazs ([], Gs, nHs)         = (Gs,nHs)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   611
	| subHazs ((H,md)::Hs, Gs, nHs) =
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   612
	    let val nH = subst H
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   613
	    in  if nH aconv H then subHazs (Hs, Gs, (H,md)::nHs)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   614
		              else subHazs (Hs, (nH,md)::Gs, nHs)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   615
            end
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   616
      val pairs' = map (fn(Gs,Hs) => subHazs(rev Hs, map subst2 Gs, [])) pairs
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   617
      (*substitute throughout literals; move affected ones to Safe part*)
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   618
      fun subLits ([], [], nlits) =          (pairs', nlits, vars, lim)
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   619
	| subLits ([], Gs, nlits) = ((Gs,[])::pairs', nlits, vars, lim)
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   620
	| subLits (lit::lits, Gs, nlits) =
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   621
	    let val nlit = subst lit
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   622
	    in  if nlit aconv lit then subLits (lits, Gs, nlit::nlits)
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   623
		                  else subLits (lits, (nlit,true)::Gs, nlits)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   624
            end
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   625
  in  subLits (rev lits, [], [])  
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   626
  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   627
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   628
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   629
exception NEWBRANCHES and CLOSEF;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   630
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   631
(*Pending formulae carry md (may duplicate) flags*)
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   632
type branch = ((term*bool) list *	(*safe formulae on this level*)
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   633
               (term*bool) list) list * (*haz formulae  on this level*)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   634
	      term list *               (*literals: irreducible formulae*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   635
	      term option ref list *    (*variables occurring in branch*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   636
	      int;                      (*resource limit*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   637
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   638
val fullTrace = ref[] : branch list list ref;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   639
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   640
(*Normalize a branch--for tracing*)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   641
local
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   642
    fun norm2 (G,md) = (norm G, md);
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   643
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   644
    fun normLev (Gs,Hs) = (map norm2 Gs, map norm2 Hs);
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   645
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   646
in
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   647
fun normBr (br, lits, vars, lim) =
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   648
     (map normLev br, map norm lits, vars, lim);
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   649
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   650
fun tracing brs = if !trace then fullTrace := map normBr brs :: !fullTrace 
2952
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
   651
	 	  else ()
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   652
end;
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   653
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   654
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   655
exception PROVE;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   656
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   657
val eq_contr_tac = eresolve_tac [Data.notE]  THEN'  eq_assume_tac;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   658
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   659
val eContr_tac  = TRACE Data.notE (eq_contr_tac ORELSE' Data.contr_tac);
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   660
val eAssume_tac = TRACE asm_rl   (eq_assume_tac ORELSE' assume_tac);
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   661
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   662
(*Try to unify complementary literals and return the corresponding tactic. *) 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   663
fun tryClose (Const"*Goal*" $ G,  L) = (unify([],G,L); eAssume_tac)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   664
  | tryClose (G,  Const"*Goal*" $ L) = (unify([],G,L); eAssume_tac)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   665
  | tryClose (Const"Not" $ G,  L)    = (unify([],G,L); eContr_tac)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   666
  | tryClose (G,  Const"Not" $ L)    = (unify([],G,L); eContr_tac)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   667
  | tryClose _                       = raise UNIFY;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   668
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   669
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   670
(*Were there Skolem terms in the premise?  Must NOT chase Vars*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   671
fun hasSkolem (Skolem _)     = true
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   672
  | hasSkolem (Abs (_,body)) = hasSkolem body 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   673
  | hasSkolem (f$t)          =  hasSkolem f orelse hasSkolem t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   674
  | hasSkolem _              = false;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   675
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   676
(*Attach the right "may duplicate" flag to new formulae: if they contain
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   677
  Skolem terms then allow duplication.*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   678
fun joinMd md [] = []
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   679
  | joinMd md (G::Gs) = (G, hasSkolem G orelse md) :: joinMd md Gs;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   680
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   681
(*Convert a Goal to an ordinary Not.  Used also in dup_intr, where a goal like
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   682
  Ex(P) is duplicated as the assumption ~Ex(P). *)
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   683
fun negOfGoal (Const"*Goal*" $ G) = negate G
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   684
  | negOfGoal G                   = G;
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   685
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   686
fun negOfGoal2 (G,md) = (negOfGoal G, md);
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   687
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   688
(*Converts all Goals to Nots in the safe parts of a branch.  They could
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   689
  have been moved there from the literals list after substitution (equalSubst).
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   690
  There can be at most one--this function could be made more efficient.*)
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   691
fun negOfGoals pairs = map (fn (Gs,haz) => (map negOfGoal2 Gs, haz)) pairs;
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   692
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   693
(*Tactic.  Convert *Goal* to negated assumption in FIRST position*)
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   694
val negOfGoal_tac = rtac Data.ccontr THEN' rotate_tac ~1;
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   695
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   696
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   697
(** Backtracking and Pruning **)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   698
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   699
(*clashVar vars (n,trail) determines whether any of the last n elements
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   700
  of "trail" occur in "vars" OR in their instantiations*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   701
fun clashVar [] = (fn _ => false)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   702
  | clashVar vars =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   703
      let fun clash (0, _)     = false
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   704
	    | clash (_, [])    = false
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   705
	    | clash (n, v::vs) = exists (varOccur v) vars orelse clash(n-1,vs)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   706
      in  clash  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   707
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   708
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   709
(*nbrs = # of branches just prior to closing this one.  Delete choice points
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   710
  for goals proved by the latest inference, provided NO variables in the
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   711
  next branch have been updated.*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   712
fun prune (1, nxtVars, choices) = choices  (*DON'T prune at very end: allow 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   713
					     backtracking over bad proofs*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   714
  | prune (nbrs, nxtVars, choices) =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   715
      let fun traceIt last =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   716
		let val ll = length last
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   717
		    and lc = length choices
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   718
		in if !trace andalso ll<lc then
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   719
		    (writeln("PRUNING " ^ Int.toString(lc-ll) ^ " LEVELS"); 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   720
		     last)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   721
		   else last
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   722
		end
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   723
	  fun pruneAux (last, _, _, []) = last
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   724
	    | pruneAux (last, ntrl, trl, ch' as (ntrl',nbrs',exn) :: choices) =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   725
		if nbrs' < nbrs 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   726
		then last  (*don't backtrack beyond first solution of goal*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   727
		else if nbrs' > nbrs then pruneAux (last, ntrl, trl, choices)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   728
		else (* nbrs'=nbrs *)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   729
		     if clashVar nxtVars (ntrl-ntrl', trl) then last
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   730
		     else (*no clashes: can go back at least this far!*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   731
			  pruneAux(choices, ntrl', List.drop(trl, ntrl-ntrl'), 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   732
				   choices)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   733
  in  traceIt (pruneAux (choices, !ntrail, !trail, choices))  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   734
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   735
fun nextVars ((br, lits, vars, lim) :: _) = map Var vars
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   736
  | nextVars []                                 = [];
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   737
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   738
fun backtrack ((_, _, exn)::_) = raise exn
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   739
  | backtrack _                = raise PROVE;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   740
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   741
(*Add the literal G, handling *Goal* and detecting duplicates.*)
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   742
fun addLit (Const "*Goal*" $ G, lits) = 
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   743
      (*New literal is a *Goal*, so change all other Goals to Nots*)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   744
      let fun bad (Const"*Goal*" $ _) = true
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   745
	    | bad (Const"Not" $ G')   = G aconv G'
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   746
	    | bad _                   = false;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   747
	  fun change [] = []
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   748
	    | change (Const"*Goal*" $ G' :: lits) = 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   749
		  if G aconv G' then change lits
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   750
		  else Const"Not" $ G' :: change lits
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   751
	    | change (Const"Not" $ G' :: lits)    = 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   752
		  if G aconv G' then change lits
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   753
		  else Const"Not" $ G' :: change lits
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   754
	    | change (lit::lits) = lit :: change lits
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   755
      in
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   756
	Const "*Goal*" $ G :: (if exists bad lits then change lits else lits)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   757
      end
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   758
  | addLit (G,lits) = ins_term(G, lits)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   759
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   760
2952
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
   761
(*For calculating the "penalty" to assess on a branching factor of n
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
   762
  log2 seems a little too severe*)
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
   763
fun log3 n = if n<3 then 0 else 1 + log3(n div 3);
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   764
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   765
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   766
(*Tableau prover based on leanTaP.  Argument is a list of branches.  Each 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   767
  branch contains a list of unexpanded formulae, a list of literals, and a 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   768
  bound on unsafe expansions.*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   769
fun prove (cs, brs, cont) =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   770
 let val {safe0_netpair, safep_netpair, haz_netpair, ...} = Data.rep_claset cs
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   771
     val safeList = [safe0_netpair, safep_netpair]
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   772
     and hazList  = [haz_netpair]
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   773
     fun prv (tacs, trs, choices, []) = (cont (trs,choices,tacs))
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   774
       | prv (tacs, trs, choices, 
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   775
	      brs0 as (((G,md)::br, haz)::pairs, lits, vars, lim) :: brs) =
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   776
	  let exception PRV (*backtrack to precisely this recursion!*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   777
	      val ntrl = !ntrail 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   778
	      val nbrs = length brs0
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   779
              val nxtVars = nextVars brs
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   780
	      val G = norm G
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   781
	      val rules = netMkRules G vars safeList
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   782
	      (*Make a new branch, decrementing "lim" if instantiations occur*)
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   783
	      fun newBr (vars',lim') prems =
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   784
		  map (fn prem => 
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   785
		       if (exists isGoal prem) 
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   786
		       then (((joinMd md prem, []) :: 
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   787
			      negOfGoals ((br, haz)::pairs)),
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   788
			     map negOfGoal lits, 
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   789
			     vars', lim') 
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   790
		       else (((joinMd md prem, []) :: (br, haz) :: pairs),
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   791
			     lits, vars', lim'))
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   792
		  prems @
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   793
		  brs		  
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   794
	      (*Seek a matching rule.  If unifiable then add new premises
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   795
                to branch.*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   796
	      fun deeper [] = raise NEWBRANCHES
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   797
		| deeper (((P,prems),tac)::grls) =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   798
		    let val dummy = unify(add_term_vars(P,[]), P, G)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   799
			    (*P comes from the rule; G comes from the branch.*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   800
                        val ntrl' = !ntrail
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   801
			val lim' = if ntrl < !ntrail 
2952
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
   802
				   then lim - (1+log3(length rules))
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   803
				   else lim   (*discourage branching updates*)
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   804
                        val vars  = vars_in_vars vars
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   805
                        val vars' = foldr add_terms_vars (prems, vars)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   806
			val choices' = (ntrl, nbrs, PRV) :: choices
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   807
                        val tacs' = (DETERM o (tac false)) :: tacs 
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   808
		                        (*no duplication*)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   809
                    in
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   810
			if null prems then (*closed the branch: prune!*)
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   811
			  prv(tacs',  brs0::trs, 
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   812
			      prune (nbrs, nxtVars, choices'),
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   813
			      brs)
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   814
			  handle PRV => (*reset Vars and try another rule*)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   815
			      (clearTo ntrl;  deeper grls)
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   816
		        else (*can we kill all the alternatives??*)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   817
			if lim'<0 then raise NEWBRANCHES
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   818
			else
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   819
			  prv(tacs',  brs0::trs, choices',
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   820
			      newBr (vars',lim') prems)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   821
			  handle PRV => 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   822
			      if ntrl < ntrl' then
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   823
				   (*Vars have been updated: must backtrack
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   824
				     even if not mentioned in other goals!
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   825
				     Reset Vars and try another rule*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   826
				   (clearTo ntrl;  deeper grls)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   827
			      else (*backtrack to previous level*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   828
				   backtrack choices
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   829
		    end
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   830
		    handle UNIFY => deeper grls
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   831
	      (*Try to close branch by unifying with head goal*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   832
	      fun closeF [] = raise CLOSEF
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   833
		| closeF (L::Ls) = 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   834
		    let val tacs' = tryClose(G,L)::tacs
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   835
			val choices' = prune (nbrs, nxtVars, 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   836
					      (ntrl, nbrs, PRV) :: choices)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   837
		    in  prv (tacs', brs0::trs, choices', brs)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   838
			handle PRV => 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   839
			    (*reset Vars and try another literal
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   840
			      [this handler is pruned if possible!]*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   841
			 (clearTo ntrl;  closeF Ls)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   842
                    end
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   843
		    handle UNIFY => closeF Ls
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   844
	      fun closeFl [] = raise CLOSEF
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   845
		| closeFl ((br, haz)::pairs) =
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   846
		    closeF (map fst br)
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   847
		      handle CLOSEF => closeF (map fst haz)
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   848
			handle CLOSEF => closeFl pairs
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   849
	  in tracing brs0;
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   850
	     if lim<0 then backtrack choices
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   851
	     else
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   852
	     prv (Data.vars_gen_hyp_subst_tac false :: tacs, 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   853
		  brs0::trs,  choices,
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   854
		  equalSubst (G, (br,haz)::pairs, lits, vars, lim) :: brs)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   855
	     handle DEST_EQ => closeF lits
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   856
	      handle CLOSEF => closeFl ((br,haz)::pairs)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   857
	        handle CLOSEF => 
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   858
		 deeper rules
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   859
		  handle NEWBRANCHES => 
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   860
		   (case netMkRules G vars hazList of
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   861
		       [] => (*no plausible rules: move G to literals*)
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   862
			   prv (tacs, brs0::trs, choices,
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   863
				((br,haz)::pairs, addLit(G,lits), vars, lim)
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   864
				::brs)
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   865
		    | _ => (*G admits some haz rules: try later*)
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   866
			   prv (if isGoal G then negOfGoal_tac :: tacs
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   867
				else tacs, 
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   868
				brs0::trs,  choices,
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   869
				((br, haz@[(negOfGoal G, md)])::pairs,
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   870
				 lits, vars, lim)  ::  brs))
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   871
	  end
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   872
       | prv (tacs, trs, choices, 
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   873
	      (([],haz)::(Gs,haz')::pairs, lits, vars, lim) :: brs) =
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   874
	     (*no more "safe" formulae: transfer haz down a level*)
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   875
	   prv (tacs, trs, choices, 
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   876
		((Gs,haz@haz')::pairs, lits, vars, lim) :: brs)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   877
       | prv (tacs, trs, choices, 
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   878
	      brs0 as ([([], (H,md)::Hs)], lits, vars, lim) :: brs) =
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   879
   	     (*no safe steps possible at any level: apply a haz rule*)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   880
	  let exception PRV (*backtrack to precisely this recursion!*)
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   881
	      val H = norm H
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   882
	      val ntrl = !ntrail
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   883
	      val rules = netMkRules H vars hazList
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   884
	      fun newPrem (vars,dup,lim') prem = 
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   885
		  ([(map (fn P => (P,false)) prem, []), (*may NOT duplicate*)
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   886
		    ([], if dup then Hs @ [(negOfGoal H, md)] else Hs)],  
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   887
		   lits, vars, lim')
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   888
	      fun newBr x prems = map (newPrem x) prems  @  brs
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   889
	      (*Seek a matching rule.  If unifiable then add new premises
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   890
                to branch.*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   891
	      fun deeper [] = raise NEWBRANCHES
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   892
		| deeper (((P,prems),tac)::grls) =
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   893
		    let val dummy = unify(add_term_vars(P,[]), P, H)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   894
			val ntrl' = !ntrail
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   895
                        val vars  = vars_in_vars vars
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   896
                        val vars' = foldr add_terms_vars (prems, vars)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   897
                        val dup = md andalso vars' <> vars
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   898
			(*duplicate H only if md and the premise has new vars*)
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   899
			val lim' = (*Decrement "lim" extra if updates occur*)
2952
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
   900
			    if ntrl < !ntrail then lim - (1+log3(length rules))
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   901
			    else lim-1
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   902
			    (*NB: if the formula is duplicated, 
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   903
			      then it seems plausible to leave lim alone.  
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   904
			      But then transitivity laws loop.*)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   905
                        val mayUndo = not (null grls)   (*other rules to try?*)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   906
				    orelse ntrl < ntrl'  (*variables updated?*)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   907
				    orelse vars=vars'    (*no new Vars?*)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   908
                        val tac' = if mayUndo then tac dup
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   909
                                   else DETERM o (tac dup) 
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   910
		    in
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   911
		      (*can we kill all the alternatives??*)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   912
		      if lim'<0 andalso not (null prems)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   913
		      then raise NEWBRANCHES
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   914
		      else 
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   915
			prv(tac dup :: tacs, 
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   916
			    brs0::trs, 
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   917
			    (ntrl, length brs0, PRV) :: choices, 
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   918
			    newBr (vars', dup, lim') prems)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   919
			 handle PRV => 
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   920
			     if mayUndo
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   921
			     then (*reset Vars and try another rule*)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   922
				  (clearTo ntrl;  deeper grls)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   923
			     else (*backtrack to previous level*)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   924
				  backtrack choices
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   925
		    end
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   926
		    handle UNIFY => deeper grls
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   927
	  in tracing brs0;
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   928
	     if lim<1 then backtrack choices
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   929
	     else deeper rules
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   930
	     handle NEWBRANCHES => 
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   931
		 (*cannot close branch: move H to literals*)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   932
		 prv (tacs,  brs0::trs,  choices,
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   933
		      ([([], Hs)], H::lits, vars, lim)::brs)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   934
	  end
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   935
       | prv (tacs, trs, choices, _ :: brs) = backtrack choices
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   936
 in prv ([], [], [(!ntrail, length brs, PROVE)], brs) end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   937
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   938
2883
fd1c0b8e9b61 Now exports declConsts!
paulson
parents: 2854
diff changeset
   939
(*Construct an initial branch.*)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   940
fun initBranch (ts,lim) = 
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   941
    ([(map (fn t => (t,true)) ts, [])],
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   942
     [], add_terms_vars (ts,[]), lim);
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   943
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   944
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   945
(*** Conversion & Skolemization of the Isabelle proof state ***)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   946
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   947
(*Make a list of all the parameters in a subgoal, even if nested*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   948
local open Term 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   949
in
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   950
fun discard_foralls (Const("all",_)$Abs(a,T,t)) = discard_foralls t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   951
  | discard_foralls t = t;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   952
end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   953
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   954
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   955
(*List of variables not appearing as arguments to the given parameter*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   956
fun getVars []                  i = []
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   957
  | getVars ((_,(v,is))::alist) i =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   958
	if i mem is then getVars alist i
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   959
	else v :: getVars alist i;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   960
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   961
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   962
(*Conversion of a subgoal: Skolemize all parameters*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   963
fun fromSubgoal tsig t =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   964
  let val alist = ref []
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   965
      fun hdvar ((ix,(v,is))::_) = v
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   966
      fun from lev t =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   967
	let val (ht,ts) = Term.strip_comb t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   968
	    fun apply u = list_comb (u, map (from lev) ts)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   969
	    fun bounds [] = []
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   970
	      | bounds (Term.Bound i::ts) = 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   971
		  if i<lev then error"Function Var's argument not a parameter"
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   972
		  else i-lev :: bounds ts
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   973
	      | bounds ts = error"Function Var's argument not a bound variable"
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   974
        in
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   975
	  case ht of 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   976
	      t as Term.Const _ => apply (fromConst tsig t)	    
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   977
	    | Term.Free  (a,_) => apply (Free a)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   978
	    | Term.Bound i     => apply (Bound i)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   979
	    | Term.Var (ix,_) => 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   980
		  (case (assoc_string_int(!alist,ix)) of
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   981
		       None => (alist := (ix, (ref None, bounds ts))
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   982
					  :: !alist;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   983
				Var (hdvar(!alist)))
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   984
		     | Some(v,is) => if is=bounds ts then Var v
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   985
			    else error("Discrepancy among occurrences of ?"
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   986
				       ^ Syntax.string_of_vname ix))
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   987
	    | Term.Abs (a,_,body) => 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   988
		  if null ts then Abs(a, from (lev+1) body)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   989
		  else error "fromSubgoal: argument not in normal form"
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   990
        end
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   991
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   992
      val npars = length (Logic.strip_params t)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   993
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   994
      (*Skolemize a subgoal from a proof state*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   995
      fun skoSubgoal i t =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   996
	  if i<npars then 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   997
	      skoSubgoal (i+1)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   998
		(subst_bound (Skolem (gensym "SG_", getVars (!alist) i), 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   999
			      t))
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1000
	  else t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1001
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1002
  in  skoSubgoal 0 (from 0 (discard_foralls t))  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1003
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1004
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1005
(*Tactic using tableau engine and proof reconstruction.  
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1006
 "lim" is depth limit.*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1007
fun depth_tac cs lim i st = 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1008
    (fullTrace:=[];  trail := [];  ntrail := 0;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1009
     let val {tsig,...} = Sign.rep_sg (#sign (rep_thm st))
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1010
	 val skoprem = fromSubgoal tsig (List.nth(prems_of st, i-1))
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1011
         val hyps  = strip_imp_prems skoprem
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1012
         and concl = strip_imp_concl skoprem
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1013
         fun cont (_,choices,tacs) = 
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1014
	     (case Sequence.pull(EVERY' (rev tacs) i st) of
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1015
		  None => (writeln ("PROOF FAILED for depth " ^
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1016
				    Int.toString lim);
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1017
			   backtrack choices)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1018
		| cell => Sequence.seqof(fn()=> cell))
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1019
     in prove (cs, [initBranch (mkGoal concl :: hyps, lim)], cont)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1020
     end
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1021
     handle Subscript => Sequence.null
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1022
	  | PROVE     => Sequence.null);
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1023
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1024
fun blast_tac cs = (DEEPEN (1,20) (depth_tac cs) 0);
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1025
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1026
fun Blast_tac i = blast_tac (!Data.claset) i;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1027
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1028
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1029
(*** For debugging: these apply the prover to a subgoal and return 
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1030
     the resulting tactics, trace, etc.                            ***)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1031
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1032
(*Translate subgoal i from a proof state*)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1033
fun trygl cs lim i = 
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1034
    (fullTrace:=[];  trail := [];  ntrail := 0;
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1035
     let val st = topthm()
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1036
         val {tsig,...} = Sign.rep_sg (#sign (rep_thm st))
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1037
	 val skoprem = fromSubgoal tsig (List.nth(prems_of st, i-1))
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1038
         val hyps  = strip_imp_prems skoprem
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1039
         and concl = strip_imp_concl skoprem
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1040
     in timeap prove
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1041
	 (cs, [initBranch (mkGoal concl :: hyps, lim)], I)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1042
     end
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1043
     handle Subscript => error("There is no subgoal " ^ Int.toString i));
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1044
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1045
fun Trygl lim i = trygl (!Data.claset) lim i;
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1046
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1047
(*Read a string to make an initial, singleton branch*)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1048
fun readGoal sign s = read_cterm sign (s,propT) |>
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1049
                      term_of |> fromTerm (#tsig(Sign.rep_sg sign)) |> 
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1050
		      rand |> mkGoal;
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1051
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1052
fun tryInThy thy lim s = 
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1053
    (fullTrace:=[];  trail := [];  ntrail := 0;
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1054
     timeap prove (!Data.claset, 
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1055
		   [initBranch ([readGoal (sign_of thy) s], lim)], 
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1056
		   I));
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1057
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1058
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1059
end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1060