Skip to content

Commit 9aebbec

Browse files
committed
⚡ Remove killing if running
1 parent 2410f64 commit 9aebbec

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/Grisette/Lib/Synth/Reasoning/Parallel/Scheduler.hs

+2-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ module Grisette.Lib.Synth.Reasoning.Parallel.Scheduler
2323
)
2424
where
2525

26-
import Control.Applicative (Alternative ((<|>)))
2726
import Control.Concurrent (putMVar, takeMVar, threadDelay)
2827
import Control.Monad (unless, void, when)
2928
import Control.Monad.Extra (mapMaybeM, whileM)
@@ -111,8 +110,8 @@ step
111110
$ mapMaybeM
112111
( \(nid, _) -> do
113112
r <- killIfTimeout scheduler nid
114-
r2 <- killIfDividedChildrenAllStarted scheduler nid
115-
return $ fmap (nid,) $ r <|> r2
113+
-- r2 <- killIfDividedChildrenAllStarted scheduler nid
114+
return $ fmap (nid,) r
116115
)
117116
$ HM.toList curNodeToProcess
118117
otherNodes <-

0 commit comments

Comments
 (0)