We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d070611 commit ca79544Copy full SHA for ca79544
booster/library/Booster/SMT/Interface.hs
@@ -356,8 +356,8 @@ checkPredicates ctxt givenPs givenSubst psToCheck
356
Just (Unsat, Sat) -> pure . Just $ False
357
Just (Unknown, _) -> retry smtGiven sexprsToCheck transState
358
Just (_, Unknown) -> retry smtGiven sexprsToCheck transState
359
- other -> throwSMT' $ "Unexpected result while checking a condition: " <> show other
360
-
+ Just other -> throwSMT' $ "Unexpected result while checking a condition: " <> show other
+ Nothing -> pure Nothing
361
retry :: [DeclareCommand] -> [SExpr] -> TranslationState -> SMT io (Maybe Bool)
362
retry smtGiven sexprsToCheck transState = do
363
opts <- SMT $ gets (.options)
0 commit comments