Skip to content

Commit

Permalink
Merge pull request #120 from bruderj15/some
Browse files Browse the repository at this point in the history
example: update transcendental
  • Loading branch information
bruderj15 authored Nov 28, 2024
2 parents ba0ff75 + 22b7caa commit cc90863
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 cc90863

Please sign in to comment.