mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
Added make install/uninstall
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
946a06cddb
commit
3cddd6977b
6 changed files with 130 additions and 39 deletions
8
examples/python/example.py
Normal file
8
examples/python/example.py
Normal file
|
@ -0,0 +1,8 @@
|
|||
from z3 import *
|
||||
|
||||
x = Real('x')
|
||||
y = Real('y')
|
||||
s = Solver()
|
||||
s.add(x + y > 5, x > 1, y > 1)
|
||||
print s.check()
|
||||
print s.model()
|
Loading…
Add table
Add a link
Reference in a new issue