mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 19:05:51 +00:00
Z3Py sources
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
commit
e9ff9ba9fc
7 changed files with 12928 additions and 0 deletions
9
python/z3test.py
Normal file
9
python/z3test.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
import z3, doctest
|
||||
import sys, re
|
||||
|
||||
if re.compile("64 bit").search(sys.version):
|
||||
z3.init("..\\x64\\external_64\\z3.dll")
|
||||
else:
|
||||
z3.init("..\\external\\z3.dll")
|
||||
|
||||
doctest.testmod(z3)
|
Loading…
Add table
Add a link
Reference in a new issue