Fix to exception THM 1 raised (line 212 of conv.ML), reported by Andreas Lochbihler
authorpaulson
Mon, 30 May 2011 12:15:17 +0100
changeset 43045 c46107e6714b
parent 43040 665623e695ea
child 43046 2a1b01680505
Fix to exception THM 1 raised (line 212 of conv.ML), reported by Andreas Lochbihler
src/Provers/blast.ML
--- a/src/Provers/blast.ML	Fri May 27 10:41:09 2011 +0200
+++ b/src/Provers/blast.ML	Mon May 30 12:15:17 2011 +0100
@@ -1267,7 +1267,7 @@
     prove (state, start, [initBranch (mkGoal concl :: hyps, lim)], cont)
     |> Seq.map (rotate_prems (1 - i))
   end
-  handle PROVE => Seq.empty;
+  handle PROVE => Seq.empty | THM _ => Seq.empty;
 
 (*Public version with fixed depth*)
 fun depth_tac ctxt lim i st = timing_depth_tac (Timing.start ()) ctxt lim i st;