tuned
authorhaftmann
Wed, 11 Nov 2009 09:02:20 +0100
changeset 33607 9b3c4e95380e
parent 33606 2b27020ffcb2
child 33608 5c0024338cef
tuned
src/HOL/Predicate.thy
--- a/src/HOL/Predicate.thy	Wed Nov 11 00:11:26 2009 +0100
+++ b/src/HOL/Predicate.thy	Wed Nov 11 09:02:20 2009 +0100
@@ -802,14 +802,14 @@
   | next (@{code Insert} (x, P)) = SOME (x, P)
   | next (@{code Join} (P, xq)) = (case yield P
      of NONE => next xq
-      | SOME (x, Q) => SOME (x, @{code Seq} (fn _ => @{code Join} (Q, xq))))
+      | SOME (x, Q) => SOME (x, @{code Seq} (fn _ => @{code Join} (Q, xq))));
 
 fun anamorph f k x = (if k = 0 then ([], x)
   else case f x
    of NONE => ([], x)
     | SOME (v, y) => let
         val (vs, z) = anamorph f (k - 1) y
-      in (v :: vs, z) end)
+      in (v :: vs, z) end);
 
 fun yieldn P = anamorph yield P;