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