mirror of
https://github.com/Z3Prover/z3
synced 2025-04-09 19:01:50 +00:00
10 lines
191 B
Python
10 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)
|