mirror of
https://github.com/Z3Prover/z3
synced 2025-07-18 18:36:41 +00:00
reorganizing the code
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
61bd5a69ec
commit
12a255e36b
195 changed files with 11 additions and 526 deletions
8
src/bindings/python/example.py
Normal file
8
src/bindings/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