We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0ce5de commit 94c27adCopy full SHA for 94c27ad
booster/library/Booster/SMT/Interface.hs
@@ -168,12 +168,12 @@ checkPrelude = do
168
case check of
169
Sat -> pure ()
170
other -> do
171
+ Log.logMessage $ "Initial SMT definition check returned " <> pack (show other)
172
ctxt <- SMT get
173
if isNoSolver ctxt
174
then -- when running with a dummy solver, ignore the Unknown prelude check
175
pure ()
- else do
176
- Log.logMessage $ "Initial SMT definition check returned " <> pack (show other)
+ else
177
throwSMT' $
178
"Aborting due to potentially-inconsistent SMT setup: Initial check returned " <> show other
179
0 commit comments