summaryrefslogtreecommitdiff
path: root/src/Grasp/Monad.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Grasp/Monad.hs')
-rw-r--r--src/Grasp/Monad.hs7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/Grasp/Monad.hs b/src/Grasp/Monad.hs
index 3a3bd4f..bea8cd8 100644
--- a/src/Grasp/Monad.hs
+++ b/src/Grasp/Monad.hs
@@ -295,11 +295,8 @@ peekIP = do
nextIP :: GraspM ()
nextIP = do
(gr, ips, fh) <- State.get
- let ips' = if (length ips == 0)
- then []
- else if (IP.isEmpty (head ips))
- then tail ips
- else (tail ips) ++ [head ips]
+ let nonEmpties = filter (not . IP.isEmpty) ips
+ ips' = if (length nonEmpties == 0) then [] else (tail ips) ++ [head ips]
gr' = garbageCollect gr ips'
State.put (gr', ips', fh)