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 4c10181 commit e80b569Copy full SHA for e80b569
booster/library/Booster/SMT/Interface.hs
@@ -191,7 +191,7 @@ finaliseSolver ctxt = do
191
pattern IsUnknown :: unknown -> Either unknown b
192
pattern IsUnknown u = Left u
193
194
-newtype IsSat' a = IsSat' (Maybe a) deriving (Functor)
+newtype IsSat' a = IsSat' (Maybe a) deriving (Functor, Show)
195
196
type IsSatResult a = Either Text (IsSat' a)
197
@@ -345,7 +345,7 @@ getModelFor ctxt ps subst
345
mkComment :: Pretty (PrettyWithModifiers '[Decoded] a) => a -> BS.ByteString
346
mkComment = BS.pack . Pretty.renderDefault . pretty' @'[Decoded]
347
348
-newtype IsValid' = IsValid' Bool
+newtype IsValid' = IsValid' Bool deriving (Show)
349
350
type IsValidResult = Either (Maybe Text) IsValid'
351
0 commit comments