We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2410f64 commit 9aebbecCopy full SHA for 9aebbec
src/Grisette/Lib/Synth/Reasoning/Parallel/Scheduler.hs
@@ -23,7 +23,6 @@ module Grisette.Lib.Synth.Reasoning.Parallel.Scheduler
23
)
24
where
25
26
-import Control.Applicative (Alternative ((<|>)))
27
import Control.Concurrent (putMVar, takeMVar, threadDelay)
28
import Control.Monad (unless, void, when)
29
import Control.Monad.Extra (mapMaybeM, whileM)
@@ -111,8 +110,8 @@ step
111
110
$ mapMaybeM
112
( \(nid, _) -> do
113
r <- killIfTimeout scheduler nid
114
- r2 <- killIfDividedChildrenAllStarted scheduler nid
115
- return $ fmap (nid,) $ r <|> r2
+ -- r2 <- killIfDividedChildrenAllStarted scheduler nid
+ return $ fmap (nid,) r
116
117
$ HM.toList curNodeToProcess
118
otherNodes <-
0 commit comments