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 f1d156f commit 8ac8cb4Copy full SHA for 8ac8cb4
booster/library/Booster/SMT/Interface.hs
@@ -183,7 +183,7 @@ finaliseSolver ctxt = do
183
pattern IsUnknown :: unknown -> Either unknown b
184
pattern IsUnknown u = Left u
185
186
-newtype IsSat' a = IsSat' (Maybe a) deriving (Functor)
+newtype IsSat' a = IsSat' (Maybe a) deriving (Functor, Show)
187
188
type IsSatResult a = Either Text (IsSat' a)
189
@@ -337,7 +337,7 @@ getModelFor ctxt ps subst
337
mkComment :: Pretty (PrettyWithModifiers '[Decoded] a) => a -> BS.ByteString
338
mkComment = BS.pack . Pretty.renderDefault . pretty' @'[Decoded]
339
340
-newtype IsValid' = IsValid' Bool
+newtype IsValid' = IsValid' Bool deriving (Show)
341
342
type IsValidResult = Either (Maybe Text) IsValid'
343
0 commit comments