src/Provers/blast.ML
author wenzelm
Fri, 06 Mar 2009 22:50:30 +0100
changeset 30320 5f859035331f
parent 30242 aea5d7fa7ef5
child 30513 1796b8ea88aa
permissions -rw-r--r--
eliminated Output.immediate_output -- violates the official message channel protocol;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
     1
(*  Title:      Provers/blast.ML
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
     2
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
3083
1a7edbd7f55a More tracing; less exception handling
paulson
parents: 3049
diff changeset
     3
    Copyright   1997  University of Cambridge
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
     4
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
     5
Generic tableau prover with proof reconstruction
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
     6
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
     7
  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
     8
  Needs explicit instantiation of assumptions?
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
     9
18171
c4f873d65603 removal of is_hol
paulson
parents: 18146
diff changeset
    10
Given the typeargs system, constructor Const could be eliminated, with
c4f873d65603 removal of is_hol
paulson
parents: 18146
diff changeset
    11
TConst replaced by a constructor that takes the typargs list as an argument.
c4f873d65603 removal of is_hol
paulson
parents: 18146
diff changeset
    12
However, Const is heavily used for logical connectives.
2894
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...
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    16
  * ignores wrappers (addss, addbefore, addafter, addWrapper, ...);
4651
70dd492a1698 changed wrapper mechanism of classical reasoner
oheimb
parents: 4511
diff changeset
    17
    this restriction is intrinsic
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
    18
  * ignores elimination rules that don't have the correct format
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    19
        (conclusion must be a formula variable)
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:
3092
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
    25
  "Recursive" chains of rules can sometimes exclude other unsafe formulae
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    26
        from expansion.  This happens because newly-created formulae always
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    27
        have priority over existing ones.  But obviously recursive rules
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    28
        such as transitivity are treated specially to prevent this.  Sometimes
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    29
        the formulae get into the wrong order (see WRONG below).
3021
39806db47be9 Loop detection: before expanding a haz formula, see whether it is a duplicate
paulson
parents: 2999
diff changeset
    30
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    31
  With substition for equalities (hyp_subst_tac):
3092
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
    32
        When substitution affects a haz formula or literal, it is moved
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    33
        back to the list of safe formulae.
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    34
        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
    35
        "no DETERM" flag would prevent proofs failing here.
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    36
*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    37
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    38
(*Should be a type abbreviation?*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    39
type netpair = (int*(bool*thm)) Net.net * (int*(bool*thm)) Net.net;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    40
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    41
signature BLAST_DATA =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    42
  sig
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    43
  type claset
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    44
  val equality_name: string
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    45
  val not_name: string
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    46
  val notE              : thm           (* [| ~P;  P |] ==> R *)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    47
  val ccontr            : thm
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    48
  val contr_tac         : int -> tactic
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    49
  val dup_intr          : thm -> thm
23908
edca7f581c09 blast_hyp_subst_tac: plain bool argument;
wenzelm
parents: 23591
diff changeset
    50
  val hyp_subst_tac     : bool -> int -> tactic
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    51
  val claset            : unit -> claset
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    52
  val rep_cs    : (* dependent on classical.ML *)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    53
      claset -> {safeIs: thm list, safeEs: thm list,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    54
                 hazIs: thm list, hazEs: thm list,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    55
                 swrappers: (string * wrapper) list,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    56
                 uwrappers: (string * wrapper) list,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    57
                 safe0_netpair: netpair, safep_netpair: netpair,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    58
                 haz_netpair: netpair, dup_netpair: netpair, xtra_netpair: ContextRules.netpair}
7272
d20f51e43909 Method.modifier;
wenzelm
parents: 7155
diff changeset
    59
  val cla_modifiers: (Args.T list -> (Method.modifier * Args.T list)) list
7559
1d2c099e98f7 setup for refined facts handling;
wenzelm
parents: 7272
diff changeset
    60
  val cla_meth': (claset -> int -> tactic) -> thm list -> Proof.context -> Proof.method
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    61
  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    62
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    63
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    64
signature BLAST =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    65
  sig
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    66
  type claset
4233
85d004a96b98 Rationalized error handling: if low-level tactic (depth_tac) cannot accept the
paulson
parents: 4196
diff changeset
    67
  exception TRANS of string    (*reports translation errors*)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    68
  datatype term =
18177
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
    69
      Const of string * term list
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    70
    | Skolem of string * term option ref list
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    71
    | Free  of string
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    72
    | Var   of term option ref
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    73
    | Bound of int
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    74
    | Abs   of string*term
17795
5b18c3343028 minor tweaks for Poplog/PML;
wenzelm
parents: 17271
diff changeset
    75
    | $  of term*term;
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    76
  type branch
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    77
  val depth_tac         : claset -> int -> int -> tactic
24112
6c4e7d17f9b0 simplified internal Config interface;
wenzelm
parents: 24099
diff changeset
    78
  val depth_limit       : int Config.T
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    79
  val blast_tac         : claset -> int -> tactic
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    80
  val Blast_tac         : int -> tactic
18708
4b3dadb4fe33 setup: theory -> theory;
wenzelm
parents: 18533
diff changeset
    81
  val setup             : theory -> theory
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
    82
  (*debugging tools*)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    83
  val stats             : bool ref
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    84
  val trace             : bool ref
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    85
  val fullTrace         : branch list list ref
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    86
  val fromType          : (indexname * term) list ref -> Term.typ -> term
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
    87
  val fromTerm          : theory -> Term.term -> term
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
    88
  val fromSubgoal       : theory -> Term.term -> term
4065
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
    89
  val instVars          : term -> (unit -> unit)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    90
  val toTerm            : int -> term -> Term.term
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    91
  val readGoal          : theory -> string -> term
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    92
  val tryInThy          : theory -> int -> string ->
3083
1a7edbd7f55a More tracing; less exception handling
paulson
parents: 3049
diff changeset
    93
                  (int->tactic) list * branch list list * (int*int*exn) list
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    94
  val normBr            : branch -> branch
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    95
  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    96
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    97
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
    98
functor BlastFun(Data: BLAST_DATA) : BLAST =
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
    99
struct
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   100
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   101
type claset = Data.claset;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   102
4323
561242f8606b Printing of statistics including time for search & reconstruction
paulson
parents: 4300
diff changeset
   103
val trace = ref false
561242f8606b Printing of statistics including time for search & reconstruction
paulson
parents: 4300
diff changeset
   104
and stats = ref false;   (*for runtime and search statistics*)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   105
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   106
datatype term =
18177
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   107
    Const  of string * term list  (*typargs constant--as a terms!*)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   108
  | Skolem of string * term option ref list
5343
871b77df79a0 new version, more resistant to PROOF FAILED. Now it distinguishes between
paulson
parents: 4653
diff changeset
   109
  | Free   of string
871b77df79a0 new version, more resistant to PROOF FAILED. Now it distinguishes between
paulson
parents: 4653
diff changeset
   110
  | Var    of term option ref
871b77df79a0 new version, more resistant to PROOF FAILED. Now it distinguishes between
paulson
parents: 4653
diff changeset
   111
  | Bound  of int
871b77df79a0 new version, more resistant to PROOF FAILED. Now it distinguishes between
paulson
parents: 4653
diff changeset
   112
  | Abs    of string*term
5613
5cb6129566e7 MLWorks demands the "op" before $
paulson
parents: 5481
diff changeset
   113
  | op $   of term*term;
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   114
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   115
(*Pending formulae carry md (may duplicate) flags*)
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   116
type branch =
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   117
    {pairs: ((term*bool) list * (*safe formulae on this level*)
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   118
               (term*bool) list) list,  (*haz formulae  on this level*)
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   119
     lits:   term list,                 (*literals: irreducible formulae*)
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   120
     vars:   term option ref list,      (*variables occurring in branch*)
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   121
     lim:    int};                      (*resource limit*)
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   122
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   123
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   124
(* global state information *)
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   125
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   126
datatype state = State of
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   127
 {thy: theory,
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   128
  fullTrace: branch list list ref,
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   129
  trail: term option ref list ref,
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   130
  ntrail: int ref,
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   131
  nclosed: int ref,
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   132
  ntried: int ref}
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   133
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   134
fun reject_const thy c =
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   135
  is_some (Sign.const_type thy c) andalso
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   136
    error ("blast: theory contains illegal constant " ^ quote c);
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   137
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   138
fun initialize thy =
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   139
 (reject_const thy "*Goal*";
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   140
  reject_const thy "*False*";
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   141
  State
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   142
   {thy = thy,
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   143
    fullTrace = ref [],
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   144
    trail = ref [],
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   145
    ntrail = ref 0,
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   146
    nclosed = ref 0,  (*branches closed: number of branches closed during the search*)
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   147
    ntried = ref 1}); (*branches tried: number of branches created by splitting (counting from 1)*)
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   148
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   149
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   150
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   151
(** Basic syntactic operations **)
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
fun is_Var (Var _) = true
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   154
  | is_Var _ = false;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   155
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   156
fun dest_Var (Var x) =  x;
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
fun rand (f$x) = x;
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
(* maps   (f, [t1,...,tn])  to  f(t1,...,tn) *)
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   161
val list_comb : term * term list -> term = Library.foldl (op $);
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   162
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   163
(* maps   f(t1,...,tn)  to  (f, [t1,...,tn]) ; naturally tail-recursive*)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   164
fun strip_comb u : term * term list =
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   165
    let fun stripc (f$t, ts) = stripc (f, t::ts)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   166
        |   stripc  x =  x
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   167
    in  stripc(u,[])  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   168
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   169
(* maps   f(t1,...,tn)  to  f , which is never a combination *)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   170
fun head_of (f$t) = head_of f
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   171
  | head_of u = u;
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
(** Particular constants **)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   175
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   176
fun negate P = Const (Data.not_name, []) $ P;
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   177
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   178
fun isNot (Const (c, _) $ _) = c = Data.not_name
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   179
  | isNot _ = false;
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   180
18177
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   181
fun mkGoal P = Const ("*Goal*", []) $ P;
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   182
18177
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   183
fun isGoal (Const ("*Goal*", _) $ _) = true
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   184
  | isGoal _ = false;
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   185
18177
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   186
val TruepropC = ObjectLogic.judgment_name (the_context ());
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   187
val TruepropT = Sign.the_const_type (the_context ()) TruepropC;
18171
c4f873d65603 removal of is_hol
paulson
parents: 18146
diff changeset
   188
18177
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   189
fun mk_Trueprop t = Term.$ (Term.Const (TruepropC, TruepropT), t);
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   190
18177
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   191
fun strip_Trueprop (tm as Const (c, _) $ t) = if c = TruepropC then t else tm
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   192
  | strip_Trueprop tm = tm;
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   193
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   194
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   195
4065
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   196
(*** Dealing with overloaded constants ***)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   197
4065
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   198
(*alist is a map from TVar names to Vars.  We need to unify the TVars
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   199
  faithfully in order to track overloading*)
18177
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   200
fun fromType alist (Term.Type(a,Ts)) = list_comb (Const (a, []), map (fromType alist) Ts)
4065
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   201
  | fromType alist (Term.TFree(a,_)) = Free a
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   202
  | fromType alist (Term.TVar (ixn,_)) =
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   203
              (case (AList.lookup (op =) (!alist) ixn) of
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   204
                   NONE => let val t' = Var(ref NONE)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   205
                           in  alist := (ixn, t') :: !alist;  t'
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   206
                           end
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   207
                 | SOME v => v)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   208
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   209
fun fromConst thy alist (a, T) =
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   210
  Const (a, map (fromType alist) (Sign.const_typargs thy (a, T)));
2854
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
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   213
(*Tests whether 2 terms are alpha-convertible; chases instantiations*)
18177
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   214
fun (Const (a, ts)) aconv (Const (b, us)) = a=b andalso aconvs (ts, us)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   215
  | (Skolem (a,_)) aconv (Skolem (b,_)) = a=b  (*arglists must then be equal*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   216
  | (Free a)       aconv (Free b)       = a=b
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15162
diff changeset
   217
  | (Var(ref(SOME t))) aconv u          = t aconv u
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15162
diff changeset
   218
  | t          aconv (Var(ref(SOME u))) = t aconv u
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   219
  | (Var v)        aconv (Var w)        = v=w   (*both Vars are un-assigned*)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   220
  | (Bound i)      aconv (Bound j)      = i=j
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   221
  | (Abs(_,t))     aconv (Abs(_,u))     = t aconv u
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   222
  | (f$t)          aconv (g$u)          = (f aconv g) andalso (t aconv u)
18177
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   223
  | _ aconv _  =  false
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   224
and aconvs ([], []) = true
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   225
  | aconvs (t :: ts, u :: us) = t aconv u andalso aconvs (ts, us)
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   226
  | aconvs _ = false;
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   227
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   228
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   229
fun mem_term (_, [])     = false
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   230
  | 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
   231
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   232
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
   233
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   234
fun mem_var (v: term option ref, []) = false
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   235
  | mem_var (v, v'::vs)              = v=v' orelse mem_var(v,vs);
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   236
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   237
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
   238
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   239
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   240
(** Vars **)
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
(*Accumulates the Vars in the term, suppressing duplicates*)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   243
fun add_term_vars (Skolem(a,args),      vars) = add_vars_vars(args,vars)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   244
  | add_term_vars (Var (v as ref NONE), vars) = ins_var (v, vars)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15162
diff changeset
   245
  | add_term_vars (Var (ref (SOME u)), vars)  = add_term_vars(u,vars)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   246
  | add_term_vars (Const (_,ts),        vars) = add_terms_vars(ts,vars)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   247
  | add_term_vars (Abs (_,body),        vars) = add_term_vars(body,vars)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   248
  | add_term_vars (f$t, vars) =  add_term_vars (f, add_term_vars(t, vars))
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   249
  | add_term_vars (_,   vars) = vars
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   250
(*Term list version.  [The fold functionals are slow]*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   251
and add_terms_vars ([],    vars) = vars
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   252
  | 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
   253
(*Var list version.*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   254
and add_vars_vars ([],    vars) = vars
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   255
  | add_vars_vars (ref (SOME u) :: vs, vars) =
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   256
        add_vars_vars (vs, add_term_vars(u,vars))
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15162
diff changeset
   257
  | add_vars_vars (v::vs, vars) =   (*v must be a ref NONE*)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   258
        add_vars_vars (vs, ins_var (v, vars));
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   259
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   260
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   261
(*Chase assignments in "vars"; return a list of unassigned variables*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   262
fun vars_in_vars vars = add_vars_vars(vars,[]);
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   263
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   264
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   265
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   266
(*increment a term's non-local bound variables
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   267
     inc is  increment for bound variables
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   268
     lev is  level at which a bound variable is considered 'loose'*)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   269
fun incr_bv (inc, lev, u as Bound i) = if i>=lev then Bound(i+inc) else u
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   270
  | 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
   271
  | 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
   272
  | incr_bv (inc, lev, u) = u;
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
fun incr_boundvars  0  t = t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   275
  | incr_boundvars inc t = incr_bv(inc,0,t);
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   276
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   277
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   278
(*Accumulate all 'loose' bound vars referring to level 'lev' or beyond.
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   279
   (Bound 0) is loose at level 0 *)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   280
fun add_loose_bnos (Bound i, lev, js)   = if i<lev then js
20854
f9cf9e62d11c insert replacing ins ins_int ins_string
haftmann
parents: 20664
diff changeset
   281
                                          else insert (op =) (i - lev) js
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   282
  | 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
   283
  | add_loose_bnos (f$t, lev, js)       =
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   284
                add_loose_bnos (f, lev, add_loose_bnos (t, lev, js))
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   285
  | add_loose_bnos (_, _, js)           = js;
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
fun loose_bnos t = add_loose_bnos (t, 0, []);
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   288
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   289
fun subst_bound (arg, t) : term =
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   290
  let fun subst (t as Bound i, lev) =
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   291
            if i<lev then  t    (*var is locally bound*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   292
            else  if i=lev then incr_boundvars lev arg
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   293
                           else Bound(i-1)  (*loose: change it*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   294
        | subst (Abs(a,body), lev) = Abs(a, subst(body,lev+1))
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   295
        | subst (f$t, lev) =  subst(f,lev)  $  subst(t,lev)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   296
        | subst (t,lev)    = t
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   297
  in  subst (t,0)  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   298
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   299
3101
e8a92f497295 Again "norm" DOES NOT normalize bodies of abstractions
paulson
parents: 3092
diff changeset
   300
(*Normalize...but not the bodies of ABSTRACTIONS*)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   301
fun norm t = case t of
2952
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
   302
    Skolem (a,args)      => Skolem(a, vars_in_vars args)
18177
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   303
  | Const(a,ts)          => Const(a, map norm ts)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15162
diff changeset
   304
  | (Var (ref NONE))     => t
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15162
diff changeset
   305
  | (Var (ref (SOME u))) => norm u
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   306
  | (f $ u) => (case norm f of
3101
e8a92f497295 Again "norm" DOES NOT normalize bodies of abstractions
paulson
parents: 3092
diff changeset
   307
                    Abs(_,body) => norm (subst_bound (u, body))
e8a92f497295 Again "norm" DOES NOT normalize bodies of abstractions
paulson
parents: 3092
diff changeset
   308
                  | nf => nf $ norm u)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   309
  | _ => t;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   310
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   311
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   312
(*Weak (one-level) normalize for use in unification*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   313
fun wkNormAux t = case t of
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   314
    (Var v) => (case !v of
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   315
                    SOME u => wkNorm u
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   316
                  | NONE   => t)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   317
  | (f $ u) => (case wkNormAux f of
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   318
                    Abs(_,body) => wkNorm (subst_bound (u, body))
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   319
                  | nf          => nf $ u)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   320
  | Abs (a,body) =>     (*eta-contract if possible*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   321
        (case wkNormAux body of
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   322
             nb as (f $ t) =>
20664
ffbc5a57191a member (op =);
wenzelm
parents: 19502
diff changeset
   323
                 if member (op =) (loose_bnos f) 0 orelse wkNorm t <> Bound 0
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   324
                 then Abs(a,nb)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   325
                 else wkNorm (incr_boundvars ~1 f)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   326
           | nb => Abs (a,nb))
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   327
  | _ => t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   328
and wkNorm t = case head_of t of
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   329
    Const _        => t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   330
  | Skolem(a,args) => t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   331
  | Free _         => t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   332
  | _              => wkNormAux t;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   333
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   334
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   335
(*Does variable v occur in u?  For unification.
5734
bebd10cb7a8d occurs check now handles Bound variables (for soundness)
paulson
parents: 5613
diff changeset
   336
  Dangling bound vars are also forbidden.*)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   337
fun varOccur v =
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   338
  let fun occL lev [] = false   (*same as (exists occ), but faster*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   339
        | occL lev (u::us) = occ lev u orelse occL lev us
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   340
      and occ lev (Var w) =
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   341
              v=w orelse
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15162
diff changeset
   342
              (case !w of NONE   => false
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   343
                        | SOME u => occ lev u)
5734
bebd10cb7a8d occurs check now handles Bound variables (for soundness)
paulson
parents: 5613
diff changeset
   344
        | occ lev (Skolem(_,args)) = occL lev (map Var args)
18177
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   345
            (*ignore Const, since term variables can't occur in types (?) *)
5734
bebd10cb7a8d occurs check now handles Bound variables (for soundness)
paulson
parents: 5613
diff changeset
   346
        | occ lev (Bound i)  = lev <= i
bebd10cb7a8d occurs check now handles Bound variables (for soundness)
paulson
parents: 5613
diff changeset
   347
        | occ lev (Abs(_,u)) = occ (lev+1) u
bebd10cb7a8d occurs check now handles Bound variables (for soundness)
paulson
parents: 5613
diff changeset
   348
        | occ lev (f$u)      = occ lev u  orelse  occ lev f
bebd10cb7a8d occurs check now handles Bound variables (for soundness)
paulson
parents: 5613
diff changeset
   349
        | occ lev _          = false;
bebd10cb7a8d occurs check now handles Bound variables (for soundness)
paulson
parents: 5613
diff changeset
   350
  in  occ 0  end;
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   351
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   352
exception UNIFY;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   353
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   354
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   355
(*Restore the trail to some previous state: for backtracking*)
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   356
fun clearTo (State {ntrail, trail, ...}) n =
3083
1a7edbd7f55a More tracing; less exception handling
paulson
parents: 3049
diff changeset
   357
    while !ntrail<>n do
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   358
        (hd(!trail) := NONE;
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   359
         trail := tl (!trail);
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   360
         ntrail := !ntrail - 1);
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   361
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   362
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   363
(*First-order unification with bound variables.
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   364
  "vars" is a list of variables local to the rule and NOT to be put
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   365
        on the trail (no point in doing so)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   366
*)
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   367
fun unify state (vars,t,u) =
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   368
    let val State {ntrail, trail, ...} = state
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   369
        val n = !ntrail
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   370
        fun update (t as Var v, u) =
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   371
            if t aconv u then ()
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   372
            else if varOccur v u then raise UNIFY
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   373
            else if mem_var(v, vars) then v := SOME u
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   374
                 else (*avoid updating Vars in the branch if possible!*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   375
                      if is_Var u andalso mem_var(dest_Var u, vars)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   376
                      then dest_Var u := SOME t
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   377
                      else (v := SOME u;
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   378
                            trail := v :: !trail;  ntrail := !ntrail + 1)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   379
        fun unifyAux (t,u) =
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   380
            case (wkNorm t,  wkNorm u) of
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   381
                (nt as Var v,  nu) => update(nt,nu)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   382
              | (nu,  nt as Var v) => update(nt,nu)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   383
              | (Const(a,ats), Const(b,bts)) => if a=b then unifysAux(ats,bts)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   384
                                                else raise UNIFY
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   385
              | (Abs(_,t'),  Abs(_,u')) => unifyAux(t',u')
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   386
                    (*NB: can yield unifiers having dangling Bound vars!*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   387
              | (f$t',  g$u') => (unifyAux(f,g); unifyAux(t',u'))
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   388
              | (nt,  nu)    => if nt aconv nu then () else raise UNIFY
18177
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   389
        and unifysAux ([], []) = ()
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   390
          | unifysAux (t :: ts, u :: us) = (unifyAux (t, u); unifysAux (ts, us))
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   391
          | unifysAux _ = raise UNIFY;
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   392
    in  (unifyAux(t,u); true) handle UNIFY => (clearTo state n; false)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   393
    end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   394
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   395
16774
515b6020cf5d experimental code to reduce the amount of type information in blast
paulson
parents: 15786
diff changeset
   396
(*Convert from "real" terms to prototerms; eta-contract.
515b6020cf5d experimental code to reduce the amount of type information in blast
paulson
parents: 15786
diff changeset
   397
  Code is similar to fromSubgoal.*)
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   398
fun fromTerm thy t =
4065
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   399
  let val alistVar = ref []
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   400
      and alistTVar = ref []
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   401
      fun from (Term.Const aT) = fromConst thy alistTVar aT
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   402
        | from (Term.Free  (a,_)) = Free a
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   403
        | from (Term.Bound i)     = Bound i
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   404
        | from (Term.Var (ixn,T)) =
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   405
              (case (AList.lookup (op =) (!alistVar) ixn) of
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   406
                   NONE => let val t' = Var(ref NONE)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   407
                           in  alistVar := (ixn, t') :: !alistVar;  t'
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   408
                           end
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   409
                 | SOME v => v)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   410
        | from (Term.Abs (a,_,u)) =
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   411
              (case  from u  of
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   412
                u' as (f $ Bound 0) =>
20664
ffbc5a57191a member (op =);
wenzelm
parents: 19502
diff changeset
   413
                  if member (op =) (loose_bnos f) 0 then Abs(a,u')
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   414
                  else incr_boundvars ~1 f
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   415
              | u' => Abs(a,u'))
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   416
        | from (Term.$ (f,u)) = from f $ from u
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   417
  in  from t  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   418
4065
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   419
(*A debugging function: replaces all Vars by dummy Frees for visual inspection
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   420
  of whether they are distinct.  Function revert undoes the assignments.*)
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   421
fun instVars t =
12902
a23dc0b7566f Symbol.bump_string;
wenzelm
parents: 12403
diff changeset
   422
  let val name = ref "a"
4065
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   423
      val updated = ref []
18177
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   424
      fun inst (Const(a,ts)) = List.app inst ts
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   425
        | inst (Var(v as ref NONE)) = (updated := v :: (!updated);
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   426
                                       v       := SOME (Free ("?" ^ !name));
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   427
                                       name    := Symbol.bump_string (!name))
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   428
        | inst (Abs(a,t))    = inst t
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   429
        | inst (f $ u)       = (inst f; inst u)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   430
        | inst _             = ()
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   431
      fun revert() = List.app (fn v => v:=NONE) (!updated)
4065
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   432
  in  inst t; revert  end;
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   433
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   434
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   435
(* A1==>...An==>B  goes to  [A1,...,An], where B is not an implication *)
18177
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   436
fun strip_imp_prems (Const ("==>", _) $ A $ B) = strip_Trueprop A :: strip_imp_prems B
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   437
  | strip_imp_prems _ = [];
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   438
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   439
(* A1==>...An==>B  goes to B, where B is not an implication *)
18177
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   440
fun strip_imp_concl (Const ("==>", _) $ A $ B) = strip_imp_concl B
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   441
  | strip_imp_concl A = strip_Trueprop A;
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   442
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   443
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   444
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   445
(*** Conversion of Elimination Rules to Tableau Operations ***)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   446
9170
0bfe5354d5e7 warns of weak elim rules and ignores them
paulson
parents: 7607
diff changeset
   447
exception ElimBadConcl and ElimBadPrem;
0bfe5354d5e7 warns of weak elim rules and ignores them
paulson
parents: 7607
diff changeset
   448
0bfe5354d5e7 warns of weak elim rules and ignores them
paulson
parents: 7607
diff changeset
   449
(*The conclusion becomes the goal/negated assumption *False*: delete it!
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   450
  If we don't find it then the premise is ill-formed and could cause
9170
0bfe5354d5e7 warns of weak elim rules and ignores them
paulson
parents: 7607
diff changeset
   451
  PROOF FAILED*)
0bfe5354d5e7 warns of weak elim rules and ignores them
paulson
parents: 7607
diff changeset
   452
fun delete_concl [] = raise ElimBadPrem
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   453
  | delete_concl (P :: Ps) =
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   454
      (case P of
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   455
        Const (c, _) $ Var (ref (SOME (Const ("*False*", _)))) =>
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   456
          if c = "*Goal*" orelse c = Data.not_name then Ps
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   457
          else P :: delete_concl Ps
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   458
      | _ => P :: delete_concl Ps);
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   459
18177
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   460
fun skoPrem vars (Const ("all", _) $ Abs (_, P)) =
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   461
        skoPrem vars (subst_bound (Skolem (gensym "S_", vars), P))
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   462
  | skoPrem vars P = P;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   463
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   464
fun convertPrem t =
9170
0bfe5354d5e7 warns of weak elim rules and ignores them
paulson
parents: 7607
diff changeset
   465
    delete_concl (mkGoal (strip_imp_concl t) :: strip_imp_prems t);
2854
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
(*Expects elimination rules to have a formula variable as conclusion*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   468
fun convertRule vars t =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   469
  let val (P::Ps) = strip_imp_prems t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   470
      val Var v   = strip_imp_concl t
18177
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   471
  in  v := SOME (Const ("*False*", []));
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   472
      (P, map (convertPrem o skoPrem vars) Ps)
9170
0bfe5354d5e7 warns of weak elim rules and ignores them
paulson
parents: 7607
diff changeset
   473
  end
0bfe5354d5e7 warns of weak elim rules and ignores them
paulson
parents: 7607
diff changeset
   474
  handle Bind => raise ElimBadConcl;
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   475
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   476
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   477
(*Like dup_elim, but puts the duplicated major premise FIRST*)
17257
0ab67cb765da introduced binding priority 1 for linear combinators etc.
haftmann
parents: 16976
diff changeset
   478
fun rev_dup_elim th = (th RSN (2, revcut_rl)) |> assumption 2 |> Seq.hd;
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   479
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   480
4391
cc3e8453d7f0 More deterministic and therefore faster (sometimes) proof reconstruction
paulson
parents: 4354
diff changeset
   481
(*Rotate the assumptions in all new subgoals for the LIFO discipline*)
cc3e8453d7f0 More deterministic and therefore faster (sometimes) proof reconstruction
paulson
parents: 4354
diff changeset
   482
local
cc3e8453d7f0 More deterministic and therefore faster (sometimes) proof reconstruction
paulson
parents: 4354
diff changeset
   483
  (*Count new hyps so that they can be rotated*)
cc3e8453d7f0 More deterministic and therefore faster (sometimes) proof reconstruction
paulson
parents: 4354
diff changeset
   484
  fun nNewHyps []                         = 0
18177
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   485
    | nNewHyps (Const ("*Goal*", _) $ _ :: Ps) = nNewHyps Ps
4391
cc3e8453d7f0 More deterministic and therefore faster (sometimes) proof reconstruction
paulson
parents: 4354
diff changeset
   486
    | nNewHyps (P::Ps)                    = 1 + nNewHyps Ps;
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   487
5463
a5479f5cd482 Allows more backtracking in proof reconstruction, making it slower but more
paulson
parents: 5411
diff changeset
   488
  fun rot_tac [] i st      = Seq.single st
4391
cc3e8453d7f0 More deterministic and therefore faster (sometimes) proof reconstruction
paulson
parents: 4354
diff changeset
   489
    | rot_tac (0::ks) i st = rot_tac ks (i+1) st
cc3e8453d7f0 More deterministic and therefore faster (sometimes) proof reconstruction
paulson
parents: 4354
diff changeset
   490
    | rot_tac (k::ks) i st = rot_tac ks (i+1) (rotate_rule (~k) i st);
cc3e8453d7f0 More deterministic and therefore faster (sometimes) proof reconstruction
paulson
parents: 4354
diff changeset
   491
in
cc3e8453d7f0 More deterministic and therefore faster (sometimes) proof reconstruction
paulson
parents: 4354
diff changeset
   492
fun rot_subgoals_tac (rot, rl) =
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   493
     rot_tac (if rot then map nNewHyps rl else [])
4391
cc3e8453d7f0 More deterministic and therefore faster (sometimes) proof reconstruction
paulson
parents: 4354
diff changeset
   494
end;
cc3e8453d7f0 More deterministic and therefore faster (sometimes) proof reconstruction
paulson
parents: 4354
diff changeset
   495
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   496
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 25365
diff changeset
   497
fun TRACE rl tac st i = if !trace then (Display.prth rl; tac st i) else tac st i;
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   498
5343
871b77df79a0 new version, more resistant to PROOF FAILED. Now it distinguishes between
paulson
parents: 4653
diff changeset
   499
(*Resolution/matching tactics: if upd then the proof state may be updated.
871b77df79a0 new version, more resistant to PROOF FAILED. Now it distinguishes between
paulson
parents: 4653
diff changeset
   500
  Matching makes the tactics more deterministic in the presence of Vars.*)
871b77df79a0 new version, more resistant to PROOF FAILED. Now it distinguishes between
paulson
parents: 4653
diff changeset
   501
fun emtac upd rl = TRACE rl (if upd then etac rl else ematch_tac [rl]);
871b77df79a0 new version, more resistant to PROOF FAILED. Now it distinguishes between
paulson
parents: 4653
diff changeset
   502
fun rmtac upd rl = TRACE rl (if upd then rtac rl else match_tac [rl]);
871b77df79a0 new version, more resistant to PROOF FAILED. Now it distinguishes between
paulson
parents: 4653
diff changeset
   503
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   504
(*Tableau rule from elimination rule.
5343
871b77df79a0 new version, more resistant to PROOF FAILED. Now it distinguishes between
paulson
parents: 4653
diff changeset
   505
  Flag "upd" says that the inference updated the branch.
871b77df79a0 new version, more resistant to PROOF FAILED. Now it distinguishes between
paulson
parents: 4653
diff changeset
   506
  Flag "dup" requests duplication of the affected formula.*)
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   507
fun fromRule thy vars rl =
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   508
  let val trl = rl |> Thm.prop_of |> fromTerm thy |> convertRule vars
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   509
      fun tac (upd, dup,rot) i =
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   510
        emtac upd (if dup then rev_dup_elim rl else rl) i
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   511
        THEN
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   512
        rot_subgoals_tac (rot, #2 trl) i
3244
71b760618f30 Basis library version of type "option" now resides in its own structure Option
paulson
parents: 3101
diff changeset
   513
  in Option.SOME (trl, tac) end
9170
0bfe5354d5e7 warns of weak elim rules and ignores them
paulson
parents: 7607
diff changeset
   514
  handle ElimBadPrem => (*reject: prems don't preserve conclusion*)
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 25365
diff changeset
   515
            (warning("Ignoring weak elimination rule\n" ^ Display.string_of_thm rl);
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   516
             Option.NONE)
9170
0bfe5354d5e7 warns of weak elim rules and ignores them
paulson
parents: 7607
diff changeset
   517
       | ElimBadConcl => (*ignore: conclusion is not just a variable*)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   518
           (if !trace then (warning("Ignoring ill-formed elimination rule:\n" ^
26928
ca87aff1ad2d structure Display: less pervasive operations;
wenzelm
parents: 25365
diff changeset
   519
                       "conclusion should be a variable\n" ^ Display.string_of_thm rl))
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   520
            else ();
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   521
            Option.NONE);
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   522
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   523
3101
e8a92f497295 Again "norm" DOES NOT normalize bodies of abstractions
paulson
parents: 3092
diff changeset
   524
(*** Conversion of Introduction Rules ***)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   525
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   526
fun convertIntrPrem t = mkGoal (strip_imp_concl t) :: strip_imp_prems t;
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
fun convertIntrRule vars t =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   529
  let val Ps = strip_imp_prems t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   530
      val P  = strip_imp_concl t
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   531
  in  (mkGoal P, map (convertIntrPrem o skoPrem vars) Ps)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   532
  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   533
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   534
(*Tableau rule from introduction rule.
5343
871b77df79a0 new version, more resistant to PROOF FAILED. Now it distinguishes between
paulson
parents: 4653
diff changeset
   535
  Flag "upd" says that the inference updated the branch.
871b77df79a0 new version, more resistant to PROOF FAILED. Now it distinguishes between
paulson
parents: 4653
diff changeset
   536
  Flag "dup" requests duplication of the affected formula.
871b77df79a0 new version, more resistant to PROOF FAILED. Now it distinguishes between
paulson
parents: 4653
diff changeset
   537
  Since haz rules are now delayed, "dup" is always FALSE for
871b77df79a0 new version, more resistant to PROOF FAILED. Now it distinguishes between
paulson
parents: 4653
diff changeset
   538
  introduction rules.*)
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   539
fun fromIntrRule thy vars rl =
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   540
  let val trl = rl |> Thm.prop_of |> fromTerm thy |> convertIntrRule vars
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   541
      fun tac (upd,dup,rot) i =
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   542
         rmtac upd (if dup then Data.dup_intr rl else rl) i
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   543
         THEN
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   544
         rot_subgoals_tac (rot, #2 trl) i
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   545
  in (trl, tac) 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
3030
04e3359921a8 Addition of printed tracing. Also some tidying
paulson
parents: 3021
diff changeset
   548
val dummyVar = Term.Var (("etc",0), dummyT);
2854
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
(*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
   551
  Ignore abstractions; identify all Vars; STOP at given depth*)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   552
fun toTerm 0 _             = dummyVar
18177
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   553
  | toTerm d (Const(a,_))  = Term.Const (a,dummyT)  (*no need to convert typargs*)
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   554
  | toTerm d (Skolem(a,_)) = Term.Const (a,dummyT)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   555
  | toTerm d (Free a)      = Term.Free  (a,dummyT)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   556
  | toTerm d (Bound i)     = Term.Bound i
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   557
  | toTerm d (Var _)       = dummyVar
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   558
  | toTerm d (Abs(a,_))    = dummyVar
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   559
  | 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
   560
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   561
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   562
fun netMkRules thy P vars (nps: netpair list) =
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   563
  case P of
18177
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   564
      (Const ("*Goal*", _) $ G) =>
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   565
        let val pG = mk_Trueprop (toTerm 2 G)
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19037
diff changeset
   566
            val intrs = maps (fn (inet,_) => Net.unify_term inet pG) nps
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   567
        in  map (fromIntrRule thy vars o #2) (Tactic.orderlist intrs)  end
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   568
    | _ =>
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   569
        let val pP = mk_Trueprop (toTerm 3 P)
19482
9f11af8f7ef9 tuned basic list operators (flat, maps, map_filter);
wenzelm
parents: 19037
diff changeset
   570
            val elims = maps (fn (_,enet) => Net.unify_term enet pP) nps
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   571
        in  map_filter (fromRule thy vars o #2) (Tactic.orderlist elims)  end;
3092
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   572
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   573
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   574
(*Normalize a branch--for tracing*)
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   575
fun norm2 (G,md) = (norm G, md);
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   576
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   577
fun normLev (Gs,Hs) = (map norm2 Gs, map norm2 Hs);
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   578
5463
a5479f5cd482 Allows more backtracking in proof reconstruction, making it slower but more
paulson
parents: 5411
diff changeset
   579
fun normBr {pairs, lits, vars, lim} =
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   580
     {pairs = map normLev pairs,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   581
      lits  = map norm lits,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   582
      vars  = vars,
5463
a5479f5cd482 Allows more backtracking in proof reconstruction, making it slower but more
paulson
parents: 5411
diff changeset
   583
      lim   = lim};
3092
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   584
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   585
4065
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   586
val dummyTVar = Term.TVar(("a",0), []);
3092
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   587
val dummyVar2 = Term.Var(("var",0), dummyT);
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   588
26938
64e850c3da9e tuned comments;
wenzelm
parents: 26928
diff changeset
   589
(*convert blast_tac's type representation to real types for tracing*)
4065
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   590
fun showType (Free a)  = Term.TFree (a,[])
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   591
  | showType (Var _)   = dummyTVar
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   592
  | showType t         =
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   593
      (case strip_comb t of
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   594
           (Const (a, _), us) => Term.Type(a, map showType us)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   595
         | _ => dummyT);
4065
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   596
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   597
(*Display top-level overloading if any*)
18177
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   598
fun topType thy (Const (c, ts)) = SOME (Sign.const_instance thy (c, map showType ts))
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   599
  | topType thy (Abs(a,t)) = topType thy t
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   600
  | topType thy (f $ u) = (case topType thy f of NONE => topType thy u | some => some)
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   601
  | topType _ _ = NONE;
4065
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   602
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   603
3092
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   604
(*Convert from prototerms to ordinary terms with dummy types for tracing*)
18177
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   605
fun showTerm d (Const (a,_)) = Term.Const (a,dummyT)
3092
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   606
  | showTerm d (Skolem(a,_)) = Term.Const (a,dummyT)
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   607
  | showTerm d (Free a)      = Term.Free  (a,dummyT)
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   608
  | showTerm d (Bound i)     = Term.Bound i
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15162
diff changeset
   609
  | showTerm d (Var(ref(SOME u))) = showTerm d u
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15162
diff changeset
   610
  | showTerm d (Var(ref NONE))    = dummyVar2
3092
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   611
  | showTerm d (Abs(a,t))    = if d=0 then dummyVar
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   612
                               else Term.Abs(a, dummyT, showTerm (d-1) t)
3092
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   613
  | showTerm d (f $ u)       = if d=0 then dummyVar
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   614
                               else Term.$ (showTerm d f, showTerm (d-1) u);
3092
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   615
26939
1035c89b4c02 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26938
diff changeset
   616
fun string_of thy d t = Syntax.string_of_term_global thy (showTerm d t);
3092
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   617
19037
3be721728a6c fixed tracing
paulson
parents: 18708
diff changeset
   618
(*Convert a Goal to an ordinary Not.  Used also in dup_intr, where a goal like
3be721728a6c fixed tracing
paulson
parents: 18708
diff changeset
   619
  Ex(P) is duplicated as the assumption ~Ex(P). *)
3be721728a6c fixed tracing
paulson
parents: 18708
diff changeset
   620
fun negOfGoal (Const ("*Goal*", _) $ G) = negate G
3be721728a6c fixed tracing
paulson
parents: 18708
diff changeset
   621
  | negOfGoal G = G;
3be721728a6c fixed tracing
paulson
parents: 18708
diff changeset
   622
3be721728a6c fixed tracing
paulson
parents: 18708
diff changeset
   623
fun negOfGoal2 (G,md) = (negOfGoal G, md);
3be721728a6c fixed tracing
paulson
parents: 18708
diff changeset
   624
3be721728a6c fixed tracing
paulson
parents: 18708
diff changeset
   625
(*Converts all Goals to Nots in the safe parts of a branch.  They could
3be721728a6c fixed tracing
paulson
parents: 18708
diff changeset
   626
  have been moved there from the literals list after substitution (equalSubst).
3be721728a6c fixed tracing
paulson
parents: 18708
diff changeset
   627
  There can be at most one--this function could be made more efficient.*)
3be721728a6c fixed tracing
paulson
parents: 18708
diff changeset
   628
fun negOfGoals pairs = map (fn (Gs,haz) => (map negOfGoal2 Gs, haz)) pairs;
3be721728a6c fixed tracing
paulson
parents: 18708
diff changeset
   629
3be721728a6c fixed tracing
paulson
parents: 18708
diff changeset
   630
(*Tactic.  Convert *Goal* to negated assumption in FIRST position*)
3be721728a6c fixed tracing
paulson
parents: 18708
diff changeset
   631
fun negOfGoal_tac i = TRACE Data.ccontr (rtac Data.ccontr) i THEN
3be721728a6c fixed tracing
paulson
parents: 18708
diff changeset
   632
                      rotate_tac ~1 i;
3be721728a6c fixed tracing
paulson
parents: 18708
diff changeset
   633
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   634
fun traceTerm thy t =
19037
3be721728a6c fixed tracing
paulson
parents: 18708
diff changeset
   635
  let val t' = norm (negOfGoal t)
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   636
      val stm = string_of thy 8 t'
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   637
  in
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   638
      case topType thy t' of
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   639
          NONE   => stm   (*no type to attach*)
26939
1035c89b4c02 moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents: 26938
diff changeset
   640
        | SOME T => stm ^ "\t:: " ^ Syntax.string_of_typ_global thy T
4065
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   641
  end;
3092
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   642
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   643
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   644
(*Print tracing information at each iteration of prover*)
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   645
fun tracing (State {thy, fullTrace, ...}) brs =
30320
5f859035331f eliminated Output.immediate_output -- violates the official message channel protocol;
wenzelm
parents: 30242
diff changeset
   646
  let fun printPairs (((G,_)::_,_)::_)  = Output.tracing (traceTerm thy G)
5f859035331f eliminated Output.immediate_output -- violates the official message channel protocol;
wenzelm
parents: 30242
diff changeset
   647
        | printPairs (([],(H,_)::_)::_) = Output.tracing (traceTerm thy H ^ "\t (Unsafe)")
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   648
        | printPairs _                 = ()
5463
a5479f5cd482 Allows more backtracking in proof reconstruction, making it slower but more
paulson
parents: 5411
diff changeset
   649
      fun printBrs (brs0 as {pairs, lits, lim, ...} :: brs) =
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   650
            (fullTrace := brs0 :: !fullTrace;
30320
5f859035331f eliminated Output.immediate_output -- violates the official message channel protocol;
wenzelm
parents: 30242
diff changeset
   651
             List.app (fn _ => Output.tracing "+") brs;
5f859035331f eliminated Output.immediate_output -- violates the official message channel protocol;
wenzelm
parents: 30242
diff changeset
   652
             Output.tracing (" [" ^ Int.toString lim ^ "] ");
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   653
             printPairs pairs;
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   654
             writeln"")
3092
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   655
  in if !trace then printBrs (map normBr brs) else ()
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   656
  end;
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   657
5343
871b77df79a0 new version, more resistant to PROOF FAILED. Now it distinguishes between
paulson
parents: 4653
diff changeset
   658
fun traceMsg s = if !trace then writeln s else ();
4065
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   659
3092
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   660
(*Tracing: variables updated in the last branch operation?*)
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   661
fun traceVars (State {thy, ntrail, trail, ...}) ntrl =
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   662
  if !trace then
4065
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   663
      (case !ntrail-ntrl of
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   664
            0 => ()
30320
5f859035331f eliminated Output.immediate_output -- violates the official message channel protocol;
wenzelm
parents: 30242
diff changeset
   665
          | 1 => Output.tracing "\t1 variable UPDATED:"
5f859035331f eliminated Output.immediate_output -- violates the official message channel protocol;
wenzelm
parents: 30242
diff changeset
   666
          | n => Output.tracing ("\t" ^ Int.toString n ^ " variables UPDATED:");
4065
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   667
       (*display the instantiations themselves, though no variable names*)
30320
5f859035331f eliminated Output.immediate_output -- violates the official message channel protocol;
wenzelm
parents: 30242
diff changeset
   668
       List.app (fn v => Output.tracing ("   " ^ string_of thy 4 (the (!v))))
4065
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   669
           (List.take(!trail, !ntrail-ntrl));
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   670
       writeln"")
3092
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   671
    else ();
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   672
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   673
(*Tracing: how many new branches are created?*)
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   674
fun traceNew prems =
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   675
    if !trace then
3092
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   676
        case length prems of
30320
5f859035331f eliminated Output.immediate_output -- violates the official message channel protocol;
wenzelm
parents: 30242
diff changeset
   677
            0 => Output.tracing "branch closed by rule"
5f859035331f eliminated Output.immediate_output -- violates the official message channel protocol;
wenzelm
parents: 30242
diff changeset
   678
          | 1 => Output.tracing "branch extended (1 new subgoal)"
5f859035331f eliminated Output.immediate_output -- violates the official message channel protocol;
wenzelm
parents: 30242
diff changeset
   679
          | n => Output.tracing ("branch split: "^ Int.toString n ^ " new subgoals")
3092
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   680
    else ();
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   681
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   682
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   683
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   684
(*** Code for handling equality: naive substitution, like hyp_subst_tac ***)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   685
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   686
(*Replace the ATOMIC term "old" by "new" in t*)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   687
fun subst_atomic (old,new) t =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15162
diff changeset
   688
    let fun subst (Var(ref(SOME u))) = subst u
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   689
          | subst (Abs(a,body))      = Abs(a, subst body)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   690
          | subst (f$t)              = subst f $ subst t
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   691
          | subst t                  = if t aconv old then new else t
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   692
    in  subst t  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   693
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   694
(*Eta-contract a term from outside: just enough to reduce it to an atom*)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   695
fun eta_contract_atom (t0 as Abs(a, body)) =
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   696
      (case  eta_contract2 body  of
20664
ffbc5a57191a member (op =);
wenzelm
parents: 19502
diff changeset
   697
        f $ Bound 0 => if member (op =) (loose_bnos f) 0 then t0
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   698
                       else eta_contract_atom (incr_boundvars ~1 f)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   699
      | _ => t0)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   700
  | eta_contract_atom t = t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   701
and eta_contract2 (f$t) = f $ eta_contract_atom t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   702
  | eta_contract2 t     = eta_contract_atom t;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   703
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   704
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   705
(*When can we safely delete the equality?
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   706
    Not if it equates two constants; consider 0=1.
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   707
    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
   708
    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
   709
  Prefer to eliminate Bound variables if possible.
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   710
  Result:  true = use as is,  false = reorient first *)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   711
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   712
(*Can t occur in u?  For substitution.
4354
7f4da01bdf0e Fixed the treatment of substitution for equations, restricting occurrences of
paulson
parents: 4323
diff changeset
   713
  Does NOT examine the args of Skolem terms: substitution does not affect them.
4196
9953c0995b79 Now applies "map negOfGoal" to lits when expanding haz rules.
paulson
parents: 4149
diff changeset
   714
  REFLEXIVE because hyp_subst_tac fails on x=x.*)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   715
fun substOccur t =
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   716
  let (*NO vars are permitted in u except the arguments of t, if it is
4354
7f4da01bdf0e Fixed the treatment of substitution for equations, restricting occurrences of
paulson
parents: 4323
diff changeset
   717
        a Skolem term.  This ensures that no equations are deleted that could
7f4da01bdf0e Fixed the treatment of substitution for equations, restricting occurrences of
paulson
parents: 4323
diff changeset
   718
        be instantiated to a cycle.  For example, x=?a is rejected because ?a
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   719
        could be instantiated to Suc(x).*)
4354
7f4da01bdf0e Fixed the treatment of substitution for equations, restricting occurrences of
paulson
parents: 4323
diff changeset
   720
      val vars = case t of
7f4da01bdf0e Fixed the treatment of substitution for equations, restricting occurrences of
paulson
parents: 4323
diff changeset
   721
                     Skolem(_,vars) => vars
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   722
                   | _ => []
4354
7f4da01bdf0e Fixed the treatment of substitution for equations, restricting occurrences of
paulson
parents: 4323
diff changeset
   723
      fun occEq u = (t aconv u) orelse occ u
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15162
diff changeset
   724
      and occ (Var(ref(SOME u))) = occEq u
4354
7f4da01bdf0e Fixed the treatment of substitution for equations, restricting occurrences of
paulson
parents: 4323
diff changeset
   725
        | occ (Var v)            = not (mem_var (v, vars))
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   726
        | occ (Abs(_,u))         = occEq u
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   727
        | occ (f$u)              = occEq u  orelse  occEq f
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   728
        | occ (_)                = false;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   729
  in  occEq  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   730
3092
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   731
exception DEST_EQ;
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   732
18177
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   733
(*Take apart an equality.  NO constant Trueprop*)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   734
fun dest_eq (Const (c, _) $ t $ u) =
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   735
      if c = Data.equality_name then (eta_contract_atom t, eta_contract_atom u)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   736
      else raise DEST_EQ
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   737
  | dest_eq _ = raise DEST_EQ;
3092
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   738
4196
9953c0995b79 Now applies "map negOfGoal" to lits when expanding haz rules.
paulson
parents: 4149
diff changeset
   739
(*Reject the equality if u occurs in (or equals!) t*)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   740
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
   741
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   742
(*IF the goal is an equality with a substitutable variable
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   743
  THEN orient that equality ELSE raise exception DEST_EQ*)
3092
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   744
fun orientGoal (t,u) = case (t,u) of
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   745
       (Skolem _, _) => check(t,u,(t,u))        (*eliminates t*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   746
     | (_, Skolem _) => check(u,t,(u,t))        (*eliminates u*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   747
     | (Free _, _)   => check(t,u,(t,u))        (*eliminates t*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   748
     | (_, Free _)   => check(u,t,(u,t))        (*eliminates u*)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   749
     | _             => raise DEST_EQ;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   750
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   751
(*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
   752
  Moves affected literals back into the branch, but it is not clear where
4391
cc3e8453d7f0 More deterministic and therefore faster (sometimes) proof reconstruction
paulson
parents: 4354
diff changeset
   753
  they should go: this could make proofs fail.*)
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   754
fun equalSubst thy (G, {pairs, lits, vars, lim}) =
3092
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   755
  let val (t,u) = orientGoal(dest_eq G)
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   756
      val subst = subst_atomic (t,u)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   757
      fun subst2(G,md) = (subst G, md)
4466
305390f23734 Better equality handling in Blast_tac, usingd a new variant of hyp_subst_tac
paulson
parents: 4391
diff changeset
   758
      (*substitute throughout list; extract affected formulae*)
305390f23734 Better equality handling in Blast_tac, usingd a new variant of hyp_subst_tac
paulson
parents: 4391
diff changeset
   759
      fun subForm ((G,md), (changed, pairs)) =
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   760
            let val nG = subst G
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   761
            in  if nG aconv G then (changed, (G,md)::pairs)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   762
                              else ((nG,md)::changed, pairs)
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   763
            end
4466
305390f23734 Better equality handling in Blast_tac, usingd a new variant of hyp_subst_tac
paulson
parents: 4391
diff changeset
   764
      (*substitute throughout "stack frame"; extract affected formulae*)
305390f23734 Better equality handling in Blast_tac, usingd a new variant of hyp_subst_tac
paulson
parents: 4391
diff changeset
   765
      fun subFrame ((Gs,Hs), (changed, frames)) =
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 30187
diff changeset
   766
            let val (changed', Gs') = List.foldr subForm (changed, []) Gs
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 30187
diff changeset
   767
                val (changed'', Hs') = List.foldr subForm (changed', []) Hs
4466
305390f23734 Better equality handling in Blast_tac, usingd a new variant of hyp_subst_tac
paulson
parents: 4391
diff changeset
   768
            in  (changed'', (Gs',Hs')::frames)  end
305390f23734 Better equality handling in Blast_tac, usingd a new variant of hyp_subst_tac
paulson
parents: 4391
diff changeset
   769
      (*substitute throughout literals; extract affected ones*)
305390f23734 Better equality handling in Blast_tac, usingd a new variant of hyp_subst_tac
paulson
parents: 4391
diff changeset
   770
      fun subLit (lit, (changed, nlits)) =
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   771
            let val nlit = subst lit
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   772
            in  if nlit aconv lit then (changed, nlit::nlits)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   773
                                  else ((nlit,true)::changed, nlits)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   774
            end
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 30187
diff changeset
   775
      val (changed, lits') = List.foldr subLit ([], []) lits
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 30187
diff changeset
   776
      val (changed', pairs') = List.foldr subFrame (changed, []) pairs
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   777
  in  if !trace then writeln ("Substituting " ^ traceTerm thy u ^
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   778
                              " for " ^ traceTerm thy t ^ " in branch" )
3092
b92a1b50b16b More tracing. hyp_subst_tac allowed to fail
paulson
parents: 3083
diff changeset
   779
      else ();
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   780
      {pairs = (changed',[])::pairs',   (*affected formulas, and others*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   781
       lits  = lits',                   (*unaffected literals*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   782
       vars  = vars,
5463
a5479f5cd482 Allows more backtracking in proof reconstruction, making it slower but more
paulson
parents: 5411
diff changeset
   783
       lim   = lim}
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   784
  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   785
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   786
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   787
exception NEWBRANCHES and CLOSEF;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   788
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   789
exception PROVE;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   790
4391
cc3e8453d7f0 More deterministic and therefore faster (sometimes) proof reconstruction
paulson
parents: 4354
diff changeset
   791
(*Trying eq_contr_tac first INCREASES the effort, slowing reconstruction*)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   792
val contr_tac = ematch_tac [Data.notE] THEN'
4391
cc3e8453d7f0 More deterministic and therefore faster (sometimes) proof reconstruction
paulson
parents: 4354
diff changeset
   793
                (eq_assume_tac ORELSE' assume_tac);
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   794
4391
cc3e8453d7f0 More deterministic and therefore faster (sometimes) proof reconstruction
paulson
parents: 4354
diff changeset
   795
val eContr_tac  = TRACE Data.notE contr_tac;
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   796
val eAssume_tac = TRACE asm_rl   (eq_assume_tac ORELSE' assume_tac);
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   797
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   798
(*Try to unify complementary literals and return the corresponding tactic. *)
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   799
fun tryClose state (G, L) =
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   800
  let
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   801
    fun close t u tac = if unify state ([], t, u) then SOME tac else NONE;
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   802
    fun arg (_ $ t) = t;
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   803
  in
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   804
    if isGoal G then close (arg G) L eAssume_tac
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   805
    else if isGoal L then close G (arg L) eAssume_tac
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   806
    else if isNot G then close (arg G) L eContr_tac
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   807
    else if isNot L then close G (arg L) eContr_tac
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   808
    else NONE
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   809
  end;
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   810
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   811
(*Were there Skolem terms in the premise?  Must NOT chase Vars*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   812
fun hasSkolem (Skolem _)     = true
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   813
  | hasSkolem (Abs (_,body)) = hasSkolem body
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   814
  | hasSkolem (f$t)          =  hasSkolem f orelse hasSkolem t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   815
  | hasSkolem _              = false;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   816
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   817
(*Attach the right "may duplicate" flag to new formulae: if they contain
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   818
  Skolem terms then allow duplication.*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   819
fun joinMd md [] = []
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   820
  | joinMd md (G::Gs) = (G, hasSkolem G orelse md) :: joinMd md Gs;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   821
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   822
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   823
(** Backtracking and Pruning **)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   824
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   825
(*clashVar vars (n,trail) determines whether any of the last n elements
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   826
  of "trail" occur in "vars" OR in their instantiations*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   827
fun clashVar [] = (fn _ => false)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   828
  | clashVar vars =
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   829
      let fun clash (0, _)     = false
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   830
            | clash (_, [])    = false
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   831
            | clash (n, v::vs) = exists (varOccur v) vars orelse clash(n-1,vs)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   832
      in  clash  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   833
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   834
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   835
(*nbrs = # of branches just prior to closing this one.  Delete choice points
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   836
  for goals proved by the latest inference, provided NO variables in the
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   837
  next branch have been updated.*)
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   838
fun prune _ (1, nxtVars, choices) = choices  (*DON'T prune at very end: allow
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   839
                                             backtracking over bad proofs*)
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   840
  | prune (State {ntrail, trail, ...}) (nbrs: int, nxtVars, choices) =
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   841
      let fun traceIt last =
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   842
                let val ll = length last
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   843
                    and lc = length choices
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   844
                in if !trace andalso ll<lc then
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   845
                    (writeln("Pruning " ^ Int.toString(lc-ll) ^ " levels");
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   846
                     last)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   847
                   else last
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   848
                end
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   849
          fun pruneAux (last, _, _, []) = last
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   850
            | pruneAux (last, ntrl, trl, (ntrl',nbrs',exn) :: choices) =
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   851
                if nbrs' < nbrs
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   852
                then last  (*don't backtrack beyond first solution of goal*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   853
                else if nbrs' > nbrs then pruneAux (last, ntrl, trl, choices)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   854
                else (* nbrs'=nbrs *)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   855
                     if clashVar nxtVars (ntrl-ntrl', trl) then last
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   856
                     else (*no clashes: can go back at least this far!*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   857
                          pruneAux(choices, ntrl', List.drop(trl, ntrl-ntrl'),
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   858
                                   choices)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   859
  in  traceIt (pruneAux (choices, !ntrail, !trail, choices))  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   860
5463
a5479f5cd482 Allows more backtracking in proof reconstruction, making it slower but more
paulson
parents: 5411
diff changeset
   861
fun nextVars ({pairs, lits, vars, lim} :: _) = map Var vars
a5479f5cd482 Allows more backtracking in proof reconstruction, making it slower but more
paulson
parents: 5411
diff changeset
   862
  | nextVars []                              = [];
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   863
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   864
fun backtrack (choices as (ntrl, nbrs, exn)::_) =
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   865
      (if !trace then (writeln ("Backtracking; now there are " ^
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   866
                                Int.toString nbrs ^ " branches"))
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   867
                 else ();
3083
1a7edbd7f55a More tracing; less exception handling
paulson
parents: 3049
diff changeset
   868
       raise exn)
1a7edbd7f55a More tracing; less exception handling
paulson
parents: 3049
diff changeset
   869
  | backtrack _ = raise PROVE;
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   870
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   871
(*Add the literal G, handling *Goal* and detecting duplicates.*)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   872
fun addLit (Const ("*Goal*", _) $ G, lits) =
2894
d2ffee4f811b Re-organization of the order of haz rules
paulson
parents: 2883
diff changeset
   873
      (*New literal is a *Goal*, so change all other Goals to Nots*)
18177
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   874
      let fun bad (Const ("*Goal*", _) $ _) = true
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   875
            | bad (Const (c, _) $ G')   = c = Data.not_name andalso G aconv G'
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   876
            | bad _                   = false;
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   877
          fun change [] = []
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   878
            | change (lit :: lits) =
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   879
                (case lit of
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   880
                  Const (c, _) $ G' =>
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   881
                    if c = "*Goal*" orelse c = Data.not_name then
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   882
                      if G aconv G' then change lits
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   883
                      else negate G' :: change lits
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   884
                    else lit :: change lits
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   885
                | _ => lit :: change lits)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   886
      in
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   887
        Const ("*Goal*", []) $ G :: (if exists bad lits then change lits else lits)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   888
      end
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   889
  | addLit (G,lits) = ins_term(G, lits)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   890
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   891
2952
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
   892
(*For calculating the "penalty" to assess on a branching factor of n
ea834e8fac1b Changed penalty from log2 to log3
paulson
parents: 2924
diff changeset
   893
  log2 seems a little too severe*)
3083
1a7edbd7f55a More tracing; less exception handling
paulson
parents: 3049
diff changeset
   894
fun log n = if n<4 then 0 else 1 + log(n div 4);
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   895
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
   896
3021
39806db47be9 Loop detection: before expanding a haz formula, see whether it is a duplicate
paulson
parents: 2999
diff changeset
   897
(*match(t,u) says whether the term u might be an instance of the pattern t
39806db47be9 Loop detection: before expanding a haz formula, see whether it is a duplicate
paulson
parents: 2999
diff changeset
   898
  Used to detect "recursive" rules such as transitivity*)
39806db47be9 Loop detection: before expanding a haz formula, see whether it is a duplicate
paulson
parents: 2999
diff changeset
   899
fun match (Var _) u   = true
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   900
  | match (Const (a,tas)) (Const (b,tbs)) =
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   901
      a = "*Goal*" andalso b = Data.not_name orelse
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   902
      a = Data.not_name andalso b = "*Goal*" orelse
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   903
      a = b andalso matchs tas tbs
4065
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   904
  | match (Free a)        (Free b)        = (a=b)
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   905
  | match (Bound i)       (Bound j)       = (i=j)
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   906
  | match (Abs(_,t))      (Abs(_,u))      = match t u
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
   907
  | match (f$t)           (g$u)           = match f g andalso match t u
18177
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   908
  | match t               u   = false
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   909
and matchs [] [] = true
7041d038acb0 Trueprop: use ObjectLogic.judgment etc.;
wenzelm
parents: 18171
diff changeset
   910
  | matchs (t :: ts) (u :: us) = match t u andalso matchs ts us;
3021
39806db47be9 Loop detection: before expanding a haz formula, see whether it is a duplicate
paulson
parents: 2999
diff changeset
   911
39806db47be9 Loop detection: before expanding a haz formula, see whether it is a duplicate
paulson
parents: 2999
diff changeset
   912
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   913
fun printStats (State {ntried, nclosed, ...}) (b, start, tacs) =
4323
561242f8606b Printing of statistics including time for search & reconstruction
paulson
parents: 4300
diff changeset
   914
  if b then
30187
b92b3375e919 end_timing: generalized result -- message plus with explicit time values;
wenzelm
parents: 27809
diff changeset
   915
    writeln (#message (end_timing start) ^ " for search.  Closed: "
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   916
             ^ Int.toString (!nclosed) ^
4391
cc3e8453d7f0 More deterministic and therefore faster (sometimes) proof reconstruction
paulson
parents: 4354
diff changeset
   917
             " tried: " ^ Int.toString (!ntried) ^
cc3e8453d7f0 More deterministic and therefore faster (sometimes) proof reconstruction
paulson
parents: 4354
diff changeset
   918
             " tactics: " ^ Int.toString (length tacs))
4323
561242f8606b Printing of statistics including time for search & reconstruction
paulson
parents: 4300
diff changeset
   919
  else ();
561242f8606b Printing of statistics including time for search & reconstruction
paulson
parents: 4300
diff changeset
   920
561242f8606b Printing of statistics including time for search & reconstruction
paulson
parents: 4300
diff changeset
   921
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   922
(*Tableau prover based on leanTaP.  Argument is a list of branches.  Each
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   923
  branch contains a list of unexpanded formulae, a list of literals, and a
4391
cc3e8453d7f0 More deterministic and therefore faster (sometimes) proof reconstruction
paulson
parents: 4354
diff changeset
   924
  bound on unsafe expansions.
cc3e8453d7f0 More deterministic and therefore faster (sometimes) proof reconstruction
paulson
parents: 4354
diff changeset
   925
 "start" is CPU time at start, for printing search time
cc3e8453d7f0 More deterministic and therefore faster (sometimes) proof reconstruction
paulson
parents: 4354
diff changeset
   926
*)
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   927
fun prove (state, start, cs, brs, cont) =
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   928
 let val State {thy, ntrail, nclosed, ntried, ...} = state;
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   929
     val {safe0_netpair, safep_netpair, haz_netpair, ...} = Data.rep_cs cs
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   930
     val safeList = [safe0_netpair, safep_netpair]
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   931
     and hazList  = [haz_netpair]
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   932
     fun prv (tacs, trs, choices, []) =
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   933
                (printStats state (!trace orelse !stats, start, tacs);
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   934
                 cont (tacs, trs, choices))   (*all branches closed!*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   935
       | prv (tacs, trs, choices,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   936
              brs0 as {pairs = ((G,md)::br, haz)::pairs,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   937
                       lits, vars, lim} :: brs) =
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   938
             (*apply a safe rule only (possibly allowing instantiation);
3917
6ea5f9101c3e A lot of new comments
paulson
parents: 3533
diff changeset
   939
               defer any haz formulae*)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   940
          let exception PRV (*backtrack to precisely this recursion!*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   941
              val ntrl = !ntrail
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   942
              val nbrs = length brs0
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   943
              val nxtVars = nextVars brs
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   944
              val G = norm G
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   945
              val rules = netMkRules thy G vars safeList
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   946
              (*Make a new branch, decrementing "lim" if instantiations occur*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   947
              fun newBr (vars',lim') prems =
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   948
                  map (fn prem =>
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   949
                       if (exists isGoal prem)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   950
                       then {pairs = ((joinMd md prem, []) ::
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   951
                                      negOfGoals ((br, haz)::pairs)),
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   952
                             lits  = map negOfGoal lits,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   953
                             vars  = vars',
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   954
                             lim   = lim'}
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   955
                       else {pairs = ((joinMd md prem, []) ::
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   956
                                      (br, haz) :: pairs),
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   957
                             lits = lits,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   958
                             vars = vars',
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   959
                             lim  = lim'})
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   960
                  prems @
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   961
                  brs
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   962
              (*Seek a matching rule.  If unifiable then add new premises
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
   963
                to branch.*)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   964
              fun deeper [] = raise NEWBRANCHES
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   965
                | deeper (((P,prems),tac)::grls) =
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   966
                    if unify state (add_term_vars(P,[]), P, G)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   967
                    then  (*P comes from the rule; G comes from the branch.*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   968
                     let val updated = ntrl < !ntrail (*branch updated*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   969
                         val lim' = if updated
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   970
                                    then lim - (1+log(length rules))
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   971
                                    else lim   (*discourage branching updates*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   972
                         val vars  = vars_in_vars vars
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 30187
diff changeset
   973
                         val vars' = List.foldr add_terms_vars vars prems
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   974
                         val choices' = (ntrl, nbrs, PRV) :: choices
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   975
                         val tacs' = (tac(updated,false,true))
5343
871b77df79a0 new version, more resistant to PROOF FAILED. Now it distinguishes between
paulson
parents: 4653
diff changeset
   976
                                     :: tacs  (*no duplication; rotate*)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   977
                     in
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   978
                         traceNew prems;  traceVars state ntrl;
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   979
                         (if null prems then (*closed the branch: prune!*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   980
                            (nclosed := !nclosed + 1;
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   981
                             prv(tacs',  brs0::trs,
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   982
                                 prune state (nbrs, nxtVars, choices'),
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   983
                                 brs))
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   984
                          else (*prems non-null*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   985
                          if lim'<0 (*faster to kill ALL the alternatives*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   986
                          then (traceMsg"Excessive branching: KILLED";
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   987
                                clearTo state ntrl;  raise NEWBRANCHES)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   988
                          else
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   989
                            (ntried := !ntried + length prems - 1;
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   990
                             prv(tacs',  brs0::trs, choices',
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   991
                                 newBr (vars',lim') prems)))
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   992
                         handle PRV =>
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   993
                           if updated then
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   994
                                (*Backtrack at this level.
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   995
                                  Reset Vars and try another rule*)
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
   996
                                (clearTo state ntrl;  deeper grls)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   997
                           else (*backtrack to previous level*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   998
                                backtrack choices
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
   999
                     end
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1000
                    else deeper grls
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1001
              (*Try to close branch by unifying with head goal*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1002
              fun closeF [] = raise CLOSEF
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1003
                | closeF (L::Ls) =
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1004
                    case tryClose state (G,L) of
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1005
                        NONE     => closeF Ls
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1006
                      | SOME tac =>
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1007
                            let val choices' =
30320
5f859035331f eliminated Output.immediate_output -- violates the official message channel protocol;
wenzelm
parents: 30242
diff changeset
  1008
                                    (if !trace then (Output.tracing "branch closed";
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1009
                                                     traceVars state ntrl)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1010
                                               else ();
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1011
                                     prune state (nbrs, nxtVars,
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1012
                                            (ntrl, nbrs, PRV) :: choices))
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1013
                            in  nclosed := !nclosed + 1;
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1014
                                prv (tac::tacs, brs0::trs, choices', brs)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1015
                                handle PRV =>
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1016
                                    (*reset Vars and try another literal
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1017
                                      [this handler is pruned if possible!]*)
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1018
                                 (clearTo state ntrl;  closeF Ls)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1019
                            end
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1020
              (*Try to unify a queued formula (safe or haz) with head goal*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1021
              fun closeFl [] = raise CLOSEF
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1022
                | closeFl ((br, haz)::pairs) =
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1023
                    closeF (map fst br)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1024
                      handle CLOSEF => closeF (map fst haz)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1025
                        handle CLOSEF => closeFl pairs
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1026
          in tracing state brs0;
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1027
             if lim<0 then (traceMsg "Limit reached.  "; backtrack choices)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1028
             else
23908
edca7f581c09 blast_hyp_subst_tac: plain bool argument;
wenzelm
parents: 23591
diff changeset
  1029
             prv (Data.hyp_subst_tac (!trace) :: tacs,
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1030
                  brs0::trs,  choices,
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1031
                  equalSubst thy
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1032
                    (G, {pairs = (br,haz)::pairs,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1033
                         lits  = lits, vars  = vars, lim   = lim})
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1034
                    :: brs)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1035
             handle DEST_EQ =>   closeF lits
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1036
              handle CLOSEF =>   closeFl ((br,haz)::pairs)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1037
                handle CLOSEF => deeper rules
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1038
                  handle NEWBRANCHES =>
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1039
                   (case netMkRules thy G vars hazList of
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1040
                       [] => (*there are no plausible haz rules*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1041
                             (traceMsg "moving formula to literals";
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1042
                              prv (tacs, brs0::trs, choices,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1043
                                   {pairs = (br,haz)::pairs,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1044
                                    lits  = addLit(G,lits),
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1045
                                    vars  = vars,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1046
                                    lim   = lim}  :: brs))
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1047
                    | _ => (*G admits some haz rules: try later*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1048
                           (traceMsg "moving formula to haz list";
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1049
                            prv (if isGoal G then negOfGoal_tac :: tacs
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1050
                                             else tacs,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1051
                                 brs0::trs,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1052
                                 choices,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1053
                                 {pairs = (br, haz@[(negOfGoal G, md)])::pairs,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1054
                                  lits  = lits,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1055
                                  vars  = vars,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1056
                                  lim   = lim}  :: brs)))
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1057
          end
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1058
       | prv (tacs, trs, choices,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1059
              {pairs = ([],haz)::(Gs,haz')::pairs, lits, vars, lim} :: brs) =
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1060
             (*no more "safe" formulae: transfer haz down a level*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1061
           prv (tacs, trs, choices,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1062
                {pairs = (Gs,haz@haz')::pairs,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1063
                 lits  = lits,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1064
                 vars  = vars,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1065
                 lim    = lim} :: brs)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1066
       | prv (tacs, trs, choices,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1067
              brs0 as {pairs = [([], (H,md)::Hs)],
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1068
                       lits, vars, lim} :: brs) =
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1069
             (*no safe steps possible at any level: apply a haz rule*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1070
          let exception PRV (*backtrack to precisely this recursion!*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1071
              val H = norm H
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1072
              val ntrl = !ntrail
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1073
              val rules = netMkRules thy H vars hazList
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1074
              (*new premises of haz rules may NOT be duplicated*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1075
              fun newPrem (vars,P,dup,lim') prem =
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1076
                  let val Gs' = map (fn Q => (Q,false)) prem
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1077
                      and Hs' = if dup then Hs @ [(negOfGoal H, md)] else Hs
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1078
                      and lits' = if (exists isGoal prem)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1079
                                  then map negOfGoal lits
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1080
                                  else lits
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1081
                  in  {pairs = if exists (match P) prem then [(Gs',Hs')]
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1082
                               (*Recursive in this premise.  Don't make new
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1083
                                 "stack frame".  New haz premises will end up
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1084
                                 at the BACK of the queue, preventing
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1085
                                 exclusion of others*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1086
                            else [(Gs',[]), ([],Hs')],
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1087
                       lits = lits',
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1088
                       vars = vars,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1089
                       lim  = lim'}
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1090
                  end
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1091
              fun newBr x prems = map (newPrem x) prems  @  brs
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1092
              (*Seek a matching rule.  If unifiable then add new premises
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1093
                to branch.*)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1094
              fun deeper [] = raise NEWBRANCHES
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1095
                | deeper (((P,prems),tac)::grls) =
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1096
                    if unify state (add_term_vars(P,[]), P, H)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1097
                    then
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1098
                     let val updated = ntrl < !ntrail (*branch updated*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1099
                         val vars  = vars_in_vars vars
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 30187
diff changeset
  1100
                         val vars' = List.foldr add_terms_vars vars prems
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1101
                            (*duplicate H if md permits*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1102
                         val dup = md (*earlier had "andalso vars' <> vars":
11152
32d002362005 Blast bug fix: now always duplicates when applying a haz rule,
paulson
parents: 11119
diff changeset
  1103
                                  duplicate only if the subgoal has new vars*)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1104
                             (*any instances of P in the subgoals?
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1105
                               NB: boolean "recur" affects tracing only!*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1106
                         and recur = exists (exists (match P)) prems
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1107
                         val lim' = (*Decrement "lim" extra if updates occur*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1108
                             if updated then lim - (1+log(length rules))
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1109
                             else lim-1
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1110
                                 (*It is tempting to leave "lim" UNCHANGED if
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1111
                                   both dup and recur are false.  Proofs are
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1112
                                   found at shallower depths, but looping
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1113
                                   occurs too often...*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1114
                         val mayUndo =
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1115
                             (*Allowing backtracking from a rule application
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1116
                               if other matching rules exist, if the rule
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1117
                               updated variables, or if the rule did not
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1118
                               introduce new variables.  This latter condition
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1119
                               means it is not a standard "gamma-rule" but
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1120
                               some other form of unsafe rule.  Aim is to
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1121
                               emulate Fast_tac, which allows all unsafe steps
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1122
                               to be undone.*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1123
                             not(null grls)   (*other rules to try?*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1124
                             orelse updated
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1125
                             orelse vars=vars'   (*no new Vars?*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1126
                         val tac' = tac(updated, dup, true)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1127
                       (*if recur then perhaps shouldn't call rotate_tac: new
5463
a5479f5cd482 Allows more backtracking in proof reconstruction, making it slower but more
paulson
parents: 5411
diff changeset
  1128
                         formulae should be last, but that's WRONG if the new
a5479f5cd482 Allows more backtracking in proof reconstruction, making it slower but more
paulson
parents: 5411
diff changeset
  1129
                         formulae are Goals, since they remain in the first
a5479f5cd482 Allows more backtracking in proof reconstruction, making it slower but more
paulson
parents: 5411
diff changeset
  1130
                         position*)
a5479f5cd482 Allows more backtracking in proof reconstruction, making it slower but more
paulson
parents: 5411
diff changeset
  1131
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1132
                     in
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1133
                       if lim'<0 andalso not (null prems)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1134
                       then (*it's faster to kill ALL the alternatives*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1135
                           (traceMsg"Excessive branching: KILLED";
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1136
                            clearTo state ntrl;  raise NEWBRANCHES)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1137
                       else
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1138
                         traceNew prems;
30320
5f859035331f eliminated Output.immediate_output -- violates the official message channel protocol;
wenzelm
parents: 30242
diff changeset
  1139
                         if !trace andalso dup then Output.tracing " (duplicating)"
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1140
                                                 else ();
30320
5f859035331f eliminated Output.immediate_output -- violates the official message channel protocol;
wenzelm
parents: 30242
diff changeset
  1141
                         if !trace andalso recur then Output.tracing " (recursive)"
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1142
                                                 else ();
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1143
                         traceVars state ntrl;
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1144
                         if null prems then nclosed := !nclosed + 1
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1145
                         else ntried := !ntried + length prems - 1;
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1146
                         prv(tac' :: tacs,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1147
                             brs0::trs,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1148
                             (ntrl, length brs0, PRV) :: choices,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1149
                             newBr (vars', P, dup, lim') prems)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1150
                          handle PRV =>
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1151
                              if mayUndo
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1152
                              then (*reset Vars and try another rule*)
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1153
                                   (clearTo state ntrl;  deeper grls)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1154
                              else (*backtrack to previous level*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1155
                                   backtrack choices
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1156
                     end
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1157
                    else deeper grls
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1158
          in tracing state brs0;
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1159
             if lim<1 then (traceMsg "Limit reached.  "; backtrack choices)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1160
             else deeper rules
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1161
             handle NEWBRANCHES =>
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1162
                 (*cannot close branch: move H to literals*)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1163
                 prv (tacs,  brs0::trs,  choices,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1164
                      {pairs = [([], Hs)],
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1165
                       lits  = H::lits,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1166
                       vars  = vars,
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1167
                       lim   = lim}  :: brs)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1168
          end
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1169
       | prv (tacs, trs, choices, _ :: brs) = backtrack choices
12346
e7b1956f4eae removed questionable init_gensym;
wenzelm
parents: 11783
diff changeset
  1170
 in prv ([], [], [(!ntrail, length brs, PROVE)], brs) end;
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1171
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1172
2883
fd1c0b8e9b61 Now exports declConsts!
paulson
parents: 2854
diff changeset
  1173
(*Construct an initial branch.*)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1174
fun initBranch (ts,lim) =
5463
a5479f5cd482 Allows more backtracking in proof reconstruction, making it slower but more
paulson
parents: 5411
diff changeset
  1175
    {pairs = [(map (fn t => (t,true)) ts, [])],
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1176
     lits  = [],
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1177
     vars  = add_terms_vars (ts,[]),
5463
a5479f5cd482 Allows more backtracking in proof reconstruction, making it slower but more
paulson
parents: 5411
diff changeset
  1178
     lim   = lim};
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1179
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1180
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1181
(*** Conversion & Skolemization of the Isabelle proof state ***)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1182
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1183
(*Make a list of all the parameters in a subgoal, even if nested*)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1184
local open Term
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1185
in
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1186
fun discard_foralls (Const("all",_)$Abs(a,T,t)) = discard_foralls t
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1187
  | discard_foralls t = t;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1188
end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1189
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1190
(*List of variables not appearing as arguments to the given parameter*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1191
fun getVars []                  i = []
20664
ffbc5a57191a member (op =);
wenzelm
parents: 19502
diff changeset
  1192
  | getVars ((_,(v,is))::alist) (i: int) =
ffbc5a57191a member (op =);
wenzelm
parents: 19502
diff changeset
  1193
        if member (op =) is i then getVars alist i
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1194
        else v :: getVars alist i;
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1195
4233
85d004a96b98 Rationalized error handling: if low-level tactic (depth_tac) cannot accept the
paulson
parents: 4196
diff changeset
  1196
exception TRANS of string;
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1197
4233
85d004a96b98 Rationalized error handling: if low-level tactic (depth_tac) cannot accept the
paulson
parents: 4196
diff changeset
  1198
(*Translation of a subgoal: Skolemize all parameters*)
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1199
fun fromSubgoal thy t =
4065
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
  1200
  let val alistVar = ref []
8862fcb5d44a New treatment of overloading\!
paulson
parents: 3917
diff changeset
  1201
      and alistTVar = ref []
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1202
      fun hdvar ((ix,(v,is))::_) = v
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1203
      fun from lev t =
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1204
        let val (ht,ts) = Term.strip_comb t
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1205
            fun apply u = list_comb (u, map (from lev) ts)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1206
            fun bounds [] = []
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1207
              | bounds (Term.Bound i::ts) =
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1208
                  if i<lev then raise TRANS
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1209
                      "Function unknown's argument not a parameter"
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1210
                  else i-lev :: bounds ts
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1211
              | bounds ts = raise TRANS
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1212
                      "Function unknown's argument not a bound variable"
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1213
        in
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1214
          case ht of
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1215
              Term.Const aT    => apply (fromConst thy alistTVar aT)
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1216
            | Term.Free  (a,_) => apply (Free a)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1217
            | Term.Bound i     => apply (Bound i)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1218
            | Term.Var (ix,_) =>
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1219
                  (case (AList.lookup (op =) (!alistVar) ix) of
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1220
                       NONE => (alistVar := (ix, (ref NONE, bounds ts))
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1221
                                          :: !alistVar;
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1222
                                Var (hdvar(!alistVar)))
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1223
                     | SOME(v,is) => if is=bounds ts then Var v
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1224
                            else raise TRANS
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1225
                                ("Discrepancy among occurrences of "
22678
23963361278c Term.string_of_vname;
wenzelm
parents: 22596
diff changeset
  1226
                                 ^ Term.string_of_vname ix))
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1227
            | Term.Abs (a,_,body) =>
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1228
                  if null ts then Abs(a, from (lev+1) body)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1229
                  else raise TRANS "argument not in normal form"
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1230
        end
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1231
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1232
      val npars = length (Logic.strip_params t)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1233
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1234
      (*Skolemize a subgoal from a proof state*)
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1235
      fun skoSubgoal i t =
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1236
          if i<npars then
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1237
              skoSubgoal (i+1)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1238
                (subst_bound (Skolem (gensym "T_", getVars (!alistVar) i),
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1239
                              t))
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1240
          else t
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1241
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1242
  in  skoSubgoal 0 (from 0 (discard_foralls t))  end;
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1243
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1244
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1245
(*Tactic using tableau engine and proof reconstruction.
4391
cc3e8453d7f0 More deterministic and therefore faster (sometimes) proof reconstruction
paulson
parents: 4354
diff changeset
  1246
 "start" is CPU time at start, for printing SEARCH time
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1247
        (also prints reconstruction time)
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1248
 "lim" is depth limit.*)
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1249
fun timing_depth_tac start cs lim i st0 =
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1250
  let val thy = Thm.theory_of_thm st0
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1251
      val state = initialize thy
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1252
      val st = Conv.gconv_rule ObjectLogic.atomize_prems i st0
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1253
      val skoprem = fromSubgoal thy (List.nth(prems_of st, i-1))
4323
561242f8606b Printing of statistics including time for search & reconstruction
paulson
parents: 4300
diff changeset
  1254
      val hyps  = strip_imp_prems skoprem
561242f8606b Printing of statistics including time for search & reconstruction
paulson
parents: 4300
diff changeset
  1255
      and concl = strip_imp_concl skoprem
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1256
      fun cont (tacs,_,choices) =
21295
63552bc99cfb tuned names of start_timing,/end_timing/check_timer;
wenzelm
parents: 20854
diff changeset
  1257
          let val start = start_timing ()
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1258
          in
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1259
          case Seq.pull(EVERY' (rev tacs) i st) of
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1260
              NONE => (writeln ("PROOF FAILED for depth " ^
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1261
                                Int.toString lim);
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1262
                       if !trace then error "************************\n"
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1263
                       else ();
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1264
                       backtrack choices)
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1265
            | cell => (if (!trace orelse !stats)
30187
b92b3375e919 end_timing: generalized result -- message plus with explicit time values;
wenzelm
parents: 27809
diff changeset
  1266
                       then writeln (#message (end_timing start) ^ " for reconstruction")
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1267
                       else ();
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1268
                       Seq.make(fn()=> cell))
4323
561242f8606b Printing of statistics including time for search & reconstruction
paulson
parents: 4300
diff changeset
  1269
          end
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1270
  in prove (state, start, cs, [initBranch (mkGoal concl :: hyps, lim)], cont) end
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1271
  handle PROVE     => Seq.empty
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1272
4391
cc3e8453d7f0 More deterministic and therefore faster (sometimes) proof reconstruction
paulson
parents: 4354
diff changeset
  1273
(*Public version with fixed depth*)
21295
63552bc99cfb tuned names of start_timing,/end_timing/check_timer;
wenzelm
parents: 20854
diff changeset
  1274
fun depth_tac cs lim i st = timing_depth_tac (start_timing ()) cs lim i st;
4391
cc3e8453d7f0 More deterministic and therefore faster (sometimes) proof reconstruction
paulson
parents: 4354
diff changeset
  1275
24112
6c4e7d17f9b0 simplified internal Config interface;
wenzelm
parents: 24099
diff changeset
  1276
val (depth_limit, setup_depth_limit) = Attrib.config_int_global "blast_depth_limit" 20;
15162
670ab8497818 depth limit (previously hard-coded with a value of 20) made a reference
webertj
parents: 14984
diff changeset
  1277
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1278
fun blast_tac cs i st =
24112
6c4e7d17f9b0 simplified internal Config interface;
wenzelm
parents: 24099
diff changeset
  1279
    ((DEEPEN (1, Config.get_thy (Thm.theory_of_thm st) depth_limit)
24099
6534fd4c5d46 replaced depth_limit ref by blast_depth_limit configuration option;
wenzelm
parents: 24062
diff changeset
  1280
        (timing_depth_tac (start_timing ()) cs) 0) i
5463
a5479f5cd482 Allows more backtracking in proof reconstruction, making it slower but more
paulson
parents: 5411
diff changeset
  1281
     THEN flexflex_tac) st
14466
b737e523fc6c more up-to-date error msg
paulson
parents: 13550
diff changeset
  1282
    handle TRANS s =>
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1283
      ((if !trace then warning ("blast: " ^ s) else ());
14466
b737e523fc6c more up-to-date error msg
paulson
parents: 13550
diff changeset
  1284
       Seq.empty);
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1285
4078
c107ab1c7626 adapted to new implicit claset mechanism;
wenzelm
parents: 4065
diff changeset
  1286
fun Blast_tac i = blast_tac (Data.claset()) i;
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1287
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1288
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1289
(*** For debugging: these apply the prover to a subgoal and return
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1290
     the resulting tactics, trace, etc.                            ***)
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1291
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1292
val fullTrace = ref ([]: branch list list);
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1293
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1294
(*Read a string to make an initial, singleton branch*)
25365
4e7a1dabd7ef avoid obsolete Sign.read_prop;
wenzelm
parents: 24112
diff changeset
  1295
fun readGoal thy s = Syntax.read_prop_global thy s |> fromTerm thy |> rand |> mkGoal;
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1296
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1297
fun tryInThy thy lim s =
24062
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1298
  let
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1299
    val state as State {fullTrace = ft, ...} = initialize thy;
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1300
    val res = timeap prove
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1301
      (state, start_timing(), Data.claset(), [initBranch ([readGoal thy s], lim)], I);
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1302
    val _ = fullTrace := !ft;
845c0d693328 explicit global state argument -- no longer CRITICAL;
wenzelm
parents: 23985
diff changeset
  1303
  in res end;
2924
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1304
af506c35b4ed Control over excessive branching by applying a log2 penalty
paulson
parents: 2894
diff changeset
  1305
5926
58f9ca06b76b method setup;
wenzelm
parents: 5734
diff changeset
  1306
(** method setup **)
58f9ca06b76b method setup;
wenzelm
parents: 5734
diff changeset
  1307
24099
6534fd4c5d46 replaced depth_limit ref by blast_depth_limit configuration option;
wenzelm
parents: 24062
diff changeset
  1308
val blast_method =
27809
a1e409db516b unified Args.T with OuterLex.token, renamed some operations;
wenzelm
parents: 26939
diff changeset
  1309
  Method.bang_sectioned_args' Data.cla_modifiers (Scan.lift (Scan.option OuterParse.nat))
24099
6534fd4c5d46 replaced depth_limit ref by blast_depth_limit configuration option;
wenzelm
parents: 24062
diff changeset
  1310
    (fn NONE => Data.cla_meth' blast_tac
6534fd4c5d46 replaced depth_limit ref by blast_depth_limit configuration option;
wenzelm
parents: 24062
diff changeset
  1311
      | SOME lim => Data.cla_meth' (fn cs => depth_tac cs lim));
7155
70ba7d640bfe blast method: optional depth argument;
wenzelm
parents: 7003
diff changeset
  1312
18525
ce1ae48c320f avoid implicit assumptions about consts Not, op =, *Goal*, *False*;
wenzelm
parents: 18177
diff changeset
  1313
val setup =
24099
6534fd4c5d46 replaced depth_limit ref by blast_depth_limit configuration option;
wenzelm
parents: 24062
diff changeset
  1314
  setup_depth_limit #>
6534fd4c5d46 replaced depth_limit ref by blast_depth_limit configuration option;
wenzelm
parents: 24062
diff changeset
  1315
  Method.add_methods [("blast", blast_method, "tableau prover")];
5926
58f9ca06b76b method setup;
wenzelm
parents: 5734
diff changeset
  1316
2854
f03b1652fc6a Implementation of blast_tac: fast tableau prover
paulson
parents:
diff changeset
  1317
end;