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