Skip to content

Commit

Permalink
example: update transcendental
Browse files Browse the repository at this point in the history
  • Loading branch information
bruderj15 committed Nov 28, 2024
1 parent b39fd16 commit 22b7caa
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/Language/Hasmtlib/Example/Transcendental.hs
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@ import Language.Hasmtlib

main :: IO ()
main = do
res <- solveWith @SMT (solver cvc5) $ do
res <- solveWith @SMT (solver $ debugging verbosely cvc5) $ do
setLogic "ALL"

x <- var @RealSort

assert $ x >? sin 3
assert $ 0 === sin x
assert $ x >? 0

return x

print res

return ()

0 comments on commit 22b7caa

Please sign in to comment.