File tree Expand file tree Collapse file tree 1 file changed +0
-11
lines changed Expand file tree Collapse file tree 1 file changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -12,9 +12,6 @@ module Kore.Repl (
12
12
) where
13
13
14
14
import Control.Concurrent.MVar
15
- import Control.Exception
16
- ( AsyncException (UserInterrupt )
17
- )
18
15
import qualified Control.Lens as Lens
19
16
import Control.Monad
20
17
( forever
@@ -263,18 +260,10 @@ runRepl
263
260
if Graph. outdeg (Strategy. graph graph) node == 0
264
261
then
265
262
proveClaimStep claims axioms graph node
266
- & Exception. handle (userInterruptHandler graph)
267
263
& Exception. handle (withConfigurationHandler graph)
268
264
& Exception. handle (someExceptionHandler graph)
269
265
else pure graph
270
266
271
- userInterruptHandler :: a -> AsyncException -> m a
272
- userInterruptHandler a UserInterrupt = do
273
- liftIO $ hPutStrLn stderr " Step evaluation interrupted."
274
- pure a
275
- userInterruptHandler _ asyncException =
276
- Exception. throwM asyncException
277
-
278
267
withConfigurationHandler :: a -> Claim. WithConfiguration -> m a
279
268
withConfigurationHandler
280
269
_
You can’t perform that action at this time.
0 commit comments