Files
cvc5/examples/api/python/pythonic/transcendentals.py
2022-04-05 02:49:30 +00:00

8 lines
156 B
Python

from cvc5.pythonic import *
if __name__ == '__main__':
x, y = Reals("x y")
solve(x > Pi(),
x < 2 * Pi(),
y ** 2 < Sine(x))