mirror of
https://github.com/Z3Prover/z3
synced 2025-06-20 21:03:39 +00:00
9 lines
191 B
Python
9 lines
191 B
Python
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)
|